OLD | NEW |
---|---|
(Empty) | |
1 body { | |
2 padding: 0.75em; | |
3 margin: 0; | |
4 min-width: 45em; | |
5 } | |
6 | |
John Gregg
2011/02/17 20:49:38
nit: random blank lines between some selectors...
akalin
2011/02/18 00:36:22
Removed blank lines.
| |
7 h1 { | |
8 font-size: 110%; | |
9 font-weight: bold; | |
10 color: #4a8ee6; | |
11 letter-spacing: -1px; | |
12 padding: 0; | |
13 margin: 0; | |
14 } | |
15 h2 { | |
16 font-size: 110%; | |
17 letter-spacing: -1px; | |
18 font-weight: normal; | |
19 color: #4a8ee6; | |
20 padding: 0; | |
21 margin: 0; | |
22 padding: 0.5em 1em; | |
23 color: #3a75bd; | |
24 margin-left: -38px; | |
25 padding-left: 38px; | |
26 | |
27 border-top: 1px solid #3a75bd; | |
28 padding-top: 0.5em; | |
John Gregg
2011/02/17 20:49:38
consolidate various paddings and margins
akalin
2011/02/18 00:36:22
Done.
| |
29 | |
30 } | |
31 h2:first-child { | |
32 border-top: 0; | |
33 padding-top: 0; | |
34 } | |
35 | |
36 div#header { | |
37 padding: 0.75em 1em; | |
38 padding-top: 0.6em; | |
39 padding-left: 0; | |
John Gregg
2011/02/17 20:49:38
consolidate
akalin
2011/02/18 00:36:22
Done.
| |
40 margin-bottom: 0.75em; | |
41 position: relative; | |
42 overflow: hidden; | |
43 background: #5296de; | |
44 background-size: 100%; | |
45 border: 1px solid #3a75bd; | |
46 border-radius: 6px; | |
47 color: white; | |
48 text-shadow: 0 0 2px black; | |
49 } | |
50 div#header h1 { | |
51 padding-left: 37px; | |
52 margin: 0; | |
53 display: inline; | |
54 background: url('../../resources/shared/images/gear.png') 12px 60% no-repeat; | |
55 color: white; | |
56 } | |
57 | |
58 .err { | |
59 color: red; | |
60 } | |
61 | |
62 div#header p { | |
63 font-style: italic; | |
64 padding: 0; | |
65 margin: 0; | |
66 color: white; | |
67 padding-left: 0.4em; | |
68 display: inline; | |
69 } | |
70 | |
71 table.list { | |
72 line-height: 200%; | |
73 border-collapse: collapse; | |
74 table-layout: fixed; | |
75 } | |
76 table.list:not([class*='filtered']) tr:nth-child(odd) td { | |
77 background: #eff3ff; | |
78 } | |
79 table.list#details2 tr:nth-child(odd) td { | |
80 background: #ccffcc | |
81 } | |
82 | |
83 table.list td { | |
84 padding: 0 0.5em; | |
85 vertical-align: top; | |
86 line-height: 1.4em; | |
87 padding-top: 0.35em; | |
88 } | |
89 table.list tr td:nth-last-child(1), | |
90 table.list tr th:nth-last-child(1) { | |
91 padding-right: 1em; | |
92 } | |
93 table.list:not([class*='filtered']) .tab .name { | |
94 padding-left: 1.5em; | |
95 } | |
96 | |
97 table.list .name { | |
98 } | |
99 | |
100 table.list .name div { | |
101 height: 1.6em; | |
102 overflow: hidden; | |
103 white-space: nowrap; | |
104 text-overflow: ellipsis; | |
105 } | |
106 | |
107 table.list .number { | |
108 width: 7em; | |
109 text-align: right; | |
110 } | |
111 | |
112 table.list tr:not([class*='firstRow']) > *:nth-child(1), | |
113 table.list tr:not([class*='firstRow']) > *:nth-child(4), | |
114 table.list tr.firstRow th:nth-child(1), | |
115 table.list tr.firstRow th:nth-child(2) { | |
116 border-right: 1px solid #b5c6de; | |
117 } | |
118 table.list#details .name { | |
119 padding-left: 25px; | |
120 background-position: 5px center; | |
121 background-repeat: no-repeat; | |
122 } | |
OLD | NEW |