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