OLD | NEW |
---|---|
(Empty) | |
1 body { | |
2 margin: 20px; | |
3 } | |
4 | |
5 .hidden { | |
arv (Not doing code reviews)
2011/02/20 23:44:00
FYI, WebKit now supports the hidden boolean attrib
| |
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: #666; | |
44 } | |
45 | |
46 #crashList > div:not(:last-child) { | |
47 border-bottom: 1px solid #bbb; | |
48 } | |
49 | |
50 #disabledMode h2 { | |
51 color: #8d332a; | |
52 font-size: 125%; | |
53 } | |
OLD | NEW |