blob: 176da83160e5d21d22ab03e06ac8b6532dbea638 [file] [log] [blame]
Alexander Afanasyev8a093762014-07-16 18:43:09 -07001@import 'reset.css';
2@import 'text.css';
3
4@charset "utf-8";
5
6body {
7 background-color: #ffffff;
8 color: #000000;
9 font-family: sans-serif;
10}
11
12li {
13 margin: 0;
14}
15
16header, nav, article, footer, address {
17 display: block;
18}
19
20header {
21 margin: 20px;
22 width: 90%;
23}
24
25header h1 {
26 height: 50px;
27 padding-left: 55px;
28 padding-top: 6px;
29}
30
31article {
32 margin: 20px auto 20px;
33 width: 90%;
34 padding-bottom: 20px;
35}
36
37footer {
38 margin: 20px auto 0;
39 width: 90%;
40
41 padding-bottom: 2px;
42 text-align: right;
43
44 position: fixed;
45 font-height: 10px;
46 bottom: 0;
47 left: 5%;
48}
49
50h1 {
51 font-family: sans-serif;
52}
53
54h3 {
55 font-family: sans-serif;
56}
57
58h5 {
59 font-family: sans-serif;
60 color: #727272;
61}
62
63/* MISC */
64.grey {
65 color: #727272;
66 font-weight: 200;
67}
68
69.green {
70 color: #2D9A65;
71 font-weight: 200;
72}
73
74.red {
75 color: red;
76 font-weight: 200;
77 font-size: 2.4em;
78}
79
80.hidden {
81 display: none;
82}
83
84/* */
85.item-list
86{
87 border-radius: 6px;
88
89 margin-top: 10px;
90 margin-bottom: 10px;
91 font-family: sans-serif;
92 width: 100%;
93 text-align: left;
94}
95
96.item-list th
97{
98 font-weight: normal;
99 padding: 8px;
100 background: #EAF4EF;
101 border-top: 1px solid #99CCB2;
102 color: #727272;
103 text-align: left;
104}
105
106.item-list th.border-left {
107}
108
109.item-list td
110{
111 padding: 2px;
112 border-bottom: 1px solid #fff;
113 color: #000;
114 border-top: 1px solid transparent;
115}
116
Chengyu Fan30aa2072014-07-20 13:52:32 -0600117.item-sublist
118{
119 border-collapse:collapse;
120 border:1px solid gray;
121
122 padding: 4px;
123 font-family: sans-serif;
124 text-align: center;
125 margin-bottom: 0;
126}
127
128.item-sublist th
129{
130 background-color: transparent;
131 font-weight: bold;
132 padding: 4px;
133 text-align: center;
134
135 border-collapse:collapse;
136 border:1px solid gray;
137}
138
139.item-sublist th.border-left {
140}
141
142.item-sublist td
143{
144 border-collapse:collapse;
145 border:1px solid gray;
146
147 padding: 2px;
148 color: #000;
149 text-align: center;
150 min-width: 20px;
151}
152
153
Alexander Afanasyev8a093762014-07-16 18:43:09 -0700154tr.center td
155{
156 text-align: center;
157}
158
159.border-left {
160 border-left: 1px solid #99CCB2;
161}
162
163.border-right {
164 border-right: 1px solid #99CCB2;
165}
166
167tfoot {
168 border-bottom: 2px solid #99CCB2;
169 background: #EAF4EF;
170}
171
172.item-list tfoot td {
173 padding: 0;
174}
175
176.odd {
177 background-color: #eeeeee;
178}
179
180.highlighted {
181 background-color: #cccccc;
182 cursor: pointer;
183}