Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 body { | |
| 2 margin: 20px; | |
| 3 } | |
| 4 | |
| 5 .hidden { | |
| 6 display: none; | |
| 7 } | |
| 8 | |
| 9 h1 { | |
| 10 -webkit-padding-start: 75px; | |
| 11 /* TODO(stuartmorgan): Get real art for this image */ | |
| 12 background-image: url('../../app/theme/sadtab.png'); | |
| 13 background-position: left; | |
| 14 background-repeat: no-repeat; | |
| 15 font-size: 156%; | |
| 16 font-weight: bold; | |
| 17 margin: 0; | |
| 18 padding-bottom: 20px; | |
| 19 padding-top: 20px; | |
| 20 } | |
| 21 | |
| 22 html[dir=rtl] h1 { | |
| 23 background-position: right; | |
| 24 } | |
| 25 | |
| 26 #countBanner { | |
| 27 background-color: #EBEFFA; | |
| 28 border: 1px solid #BBB; | |
| 29 border-radius: 2px; | |
| 30 font-size: 100%; | |
| 31 padding: 4px; | |
| 32 } | |
| 33 | |
| 34 #crashList h3 { | |
| 35 font-size: 100%; | |
| 36 } | |
| 37 | |
| 38 #crashList > div > * { | |
| 39 margin: 0.75em 0; | |
| 40 } | |
| 41 | |
| 42 #crashList a:visited { | |
| 43 color: #666666; | |
|
Nico
2011/02/18 18:16:01
#666
stuartmorgan
2011/02/18 19:41:21
Done.
| |
| 44 } | |
| 45 | |
| 46 #crashList > div:not(:last-child) { | |
| 47 border-bottom: 1px solid #bbbbbb; | |
|
Nico
2011/02/18 18:16:01
#BBB
stuartmorgan
2011/02/18 19:41:21
Done.
| |
| 48 } | |
| 49 | |
| 50 #disabledMode h2 { | |
| 51 color: #8d332a; | |
| 52 font-size: 125%; | |
| 53 } | |
| OLD | NEW |