blob: cd16f8ce974109109dbd94cde65a8236c18c44da [file] [log] [blame]
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -08001@import 'reset.css';
2@import 'text.css';
3
4@charset "utf-8";
5
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -08006body {
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -08007 background-color: #ffffff;
8 color: #000000;
9 font-family: sans-serif;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -080010}
11
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -080012header, nav, article, footer, address {
13 display: block;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -080014}
15
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -080016header {
17 margin: 20px auto 0;
18 width: 90%;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -080019}
20
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -080021header h1 {
22 height: 50px;
23 padding-left: 55px;
24 padding-top: 6px;
25 background-image: url("chronoshare.png");
26 background-repeat: no-repeat;
27 background-size: 50px 50px;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -080028}
29
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -080030article {
31 margin: 20px auto 0;
32 width: 90%;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -080033}
34
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -080035footer {
36 margin: 20px auto 0;
37 width: 90%;
38
39 padding-bottom: 2px;
40 text-align: right;
41
42 position: fixed;
43 font-height: 10px;
44 bottom: 0;
45 left: 5%;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -080046}
47
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -080048h1 {
49 font-family: sans-serif;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -080050}
51
52h3 {
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -080053 font-family: sans-serif;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -080054}
55
56h5 {
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -080057 font-family: sans-serif;
58 color: #727272;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -080059}
60
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -080061/* Navigation menu */
62nav {
63 margin: 20px 0;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -080064 min-width: 587px;
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -080065 width: 100%;
66 height: 40px;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -080067}
68
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -080069nav {
70 background-color: #EAF4EF;
71 -moz-border-radius: 6px;
72 border-radius: 6px;
73 border: 1px solid #99CCB2;
74}
75
76nav ul {
77 margin: 13px 0 0 0;
78 padding: 0px;
79}
80
81nav li {
82 list-style-type: none;
83 display: inline;
84 margin: 0px 30px;
85}
86
87nav li a {
88 color: #727272;
89 font-size: 14px;
90 line-height: 14px;
91 font-family: sans-serif;
92 text-decoration: none;
93}
94
95nav li a.active, nav a:hover { color: #2D9A65; }
96
97/* MISC */
98grey {
99 color: #727272;
100 font-weight: 200;
101}
102
103green {
104 color: #2D9A65;
105 font-weight: 200;
106}
107
108red {
109 color: red;
110 font-weight: 200;
111 font-size: 2.4em;
112}
113
114.hidden {
115 display: none;
116}
117
118/* */
Alexander Afanasyevf63a5142013-02-28 02:21:42 -0800119.item-list
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -0800120{
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -0800121 border-radius: 6px;
122
123 margin-top: 10px;
124 margin-bottom: 10px;
125 /*float: left;*/
126 font-family: sans-serif;
127 font-size: 12px;
128 width: 100%;
129 text-align: left;
130 /* border-collapse: collapse; */
131}
132
Alexander Afanasyevf63a5142013-02-28 02:21:42 -0800133.item-list th
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -0800134{
135 /* -moz-border-radius: 10px; */
136 /* border-radius: 10px; */
137 font-size: 14px;
138 font-weight: normal;
139 padding: 8px;
140 background: #EAF4EF;
141 border-top: 1px solid #99CCB2;
142 /* border-bottom: 1px solid #fff; */
143 color: #727272;
144 text-align: left;
145}
146
Alexander Afanasyevf63a5142013-02-28 02:21:42 -0800147.item-list th.border-left {
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -0800148 /* -moz-border-radius-topleft:10px; */
149 /* -webkit-border-top-left-radius:10px; */
150 /* border-top-left-radius:10px; */
151}
152
Alexander Afanasyevf63a5142013-02-28 02:21:42 -0800153.item-list td
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -0800154{
155 padding: 8px;
156 border-bottom: 1px solid #fff;
157 color: #000;
158 border-top: 1px solid transparent;
159 /* border-right: 1px solid #99CCB2; */
160 /* border-left: 1px solid #99CCB2; */
161}
162
163.border-left {
164 border-left: 1px solid #99CCB2;
165}
166
167.border-right {
168 border-right: 1px solid #99CCB2;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -0800169}
170
171tfoot {
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -0800172 border-bottom: 2px solid #99CCB2;
173 background: #EAF4EF;
174}
Alexander Afanasyevf63a5142013-02-28 02:21:42 -0800175.item-list tfoot td {
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -0800176 padding: 0;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -0800177}
178
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -0800179
180.odd {
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -0800181 background-color: #eeeeee;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -0800182}
183
Alexander Afanasyev46bd8062013-02-27 23:59:15 -0800184.highlighted {
185 background-color: #cccccc;
186 cursor: pointer;
187}
188
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -0800189.filename {
190 width: 50%;
191}
192.version {
193 width: 5%;
194}
195.modified {
196 width: 20%;
197}
198.modified-by {
199 width: 25%;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -0800200}
201
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -0800202pre {
203 font-size: 9px;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -0800204}
205
Alexander Afanasyevfd5e6272013-02-27 20:25:20 -0800206#loader {
207 position: absolute;
Alexander Afanasyevc15e0162013-02-28 23:38:52 -0800208 top: 0;
209 left: 0;
210 /* top: 50%; */
211 /* left: 50%; */
212 /* width: 128px; */
213 /* height: 128px; */
214 /* margin-top: -64px; /\* Half the height *\/ */
215 /* margin-left: -64px; /\* Half the width *\/ */
216}
217#loader img {
218 width: 64px;
219 height: 64px;
Zhenkai Zhu5c2475b2013-02-26 22:57:31 -0800220}
Alexander Afanasyev46bd8062013-02-27 23:59:15 -0800221
222userName {
223 display: inline-block;
224 /* ? how format user name? */
225}
226
227seqNo {
228 display: inline-block;
229 margin-left: 5px;
230}