blob: f2b99d5b69b1dab4e2954a7d5665b2afaeb602ba [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
117tr.center td
118{
119 text-align: center;
120}
121
122.border-left {
123 border-left: 1px solid #99CCB2;
124}
125
126.border-right {
127 border-right: 1px solid #99CCB2;
128}
129
130tfoot {
131 border-bottom: 2px solid #99CCB2;
132 background: #EAF4EF;
133}
134
135.item-list tfoot td {
136 padding: 0;
137}
138
139.odd {
140 background-color: #eeeeee;
141}
142
143.highlighted {
144 background-color: #cccccc;
145 cursor: pointer;
146}