Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 body { | |
|
Mattias Nissler (ping if slow)
2011/08/09 13:20:40
Duplicate file?
| |
| 2 font-family: Arial, sans-serif; | |
| 3 font-size: 14px; | |
| 4 color: black; | |
| 5 cursor: default; | |
| 6 min-width: 47em; | |
| 7 margin-left:10px; | |
| 8 margin-right:10px; | |
| 9 } | |
| 10 | |
| 11 a:link { | |
| 12 color: rgb(63, 110, 194); | |
| 13 } | |
| 14 | |
| 15 a:active { | |
| 16 color: rgb(37, 64, 113); | |
| 17 } | |
| 18 | |
| 19 button { | |
| 20 font-size: 0.9em; | |
| 21 } | |
| 22 | |
| 23 #header { | |
| 24 padding-top: 20px; | |
| 25 border-bottom: 1px solid #000; | |
| 26 } | |
| 27 | |
| 28 #about-policy-title { | |
| 29 -webkit-padding-end: 24px; | |
| 30 -webkit-user-select: none; | |
| 31 color: #53637d; | |
| 32 cursor: pointer; | |
| 33 font-size: 200%; | |
| 34 font-weight: normal; | |
| 35 margin: 0; | |
| 36 border-bottom: 1px solid #c6c9ce; | |
| 37 padding-bottom: 14px; | |
| 38 padding-top: 13px; | |
| 39 text-shadow: white 0 1px 2px; | |
| 40 } | |
| 41 | |
| 42 #main-content { | |
| 43 min-height: 100%; | |
| 44 } | |
| 45 | |
| 46 #status-title, #policies-title { | |
| 47 font-size: 120%; | |
| 48 font-weight: bold; | |
| 49 width: 65%; | |
| 50 } | |
| 51 | |
| 52 table { | |
| 53 width: 100%; | |
| 54 } | |
| 55 | |
| 56 section { | |
| 57 border-bottom: 1px solid #EEE; | |
| 58 margin-top: 17px; | |
| 59 padding-bottom: 20px; | |
| 60 width: 100%; | |
| 61 } | |
| 62 | |
| 63 #fetch-policies-button, #unsent-policies-checkbox, #search-field { | |
| 64 text-align: end; | |
| 65 overflow: hidden; | |
| 66 } | |
| 67 | |
| 68 #status-pane { | |
| 69 display: -webkit-box; | |
| 70 -webkit-box-flex: 1; | |
| 71 -webkit-box-orient: horizontal; | |
| 72 margin: 0 300px; | |
| 73 } | |
| 74 | |
| 75 .status-box { | |
| 76 padding: 2px; | |
| 77 border: 1px solid #D9D9D9; | |
| 78 margin: 20px 100px; | |
| 79 width: 30%; | |
| 80 overflow: hidden; | |
| 81 } | |
| 82 | |
| 83 legend { | |
| 84 padding: 0.2em 0.5em; | |
| 85 } | |
| 86 | |
| 87 .status-box ul { | |
| 88 list-style-type: none; | |
| 89 padding-left: 10px; | |
| 90 } | |
| 91 | |
| 92 .status-box li { | |
| 93 padding: 3px; | |
| 94 } | |
| 95 | |
| 96 #show-unsent-policies { | |
| 97 overflow: ellipsis; | |
| 98 } | |
| 99 | |
| 100 | |
| OLD | NEW |