Fixing attempt for timer position
[westcastle.git] / css / index.css
CommitLineData
7a00c409
BA
1/* General */
2
3@import '../vendor/Ubuntu_googlefont.css';
4
5body {
6 font-family: Ubuntu, Verdana, sans-serif;
7a00c409 7 margin: 0 auto;
2caa3889 8 width: 800px;
7a00c409
BA
9 font-size: 1.1rem;
10}
11
12.sidenav {
13 height: 100%;
14 width: 200px;
15 position: fixed;
16 z-index: 1;
17 top: 0;
18 left: 0;
19 background-color: #111;
20 overflow-x: hidden;
21 padding: 20px 0 0 0;
22 margin: 0;
23}
24
25@media screen and (max-height: 450px) {
26 .sidenav {padding-top: 15px;}
27}
28
29.sidenav li {
30 padding: 6px 8px 6px 16px;
31 font-size: 25px;
32 color: #818181;
33 display: block;
34 cursor: pointer;
35}
36
37.sidenav li:hover {
38 color: #f1f1f1;
39}
40
2caa3889
BA
41img.logo {
42 width: 200px;
43 position: fixed;
44 display: block;
45 left: 0;
46 overflow-x: hidden;
47 padding: 20px 0 0 0;
48 margin: 0;
49 top: 350px;
50 z-index: 10;
51}
52
7a00c409
BA
53.main {
54 margin-left: 200px; /* Same as the width of the sidenav */
55 padding: 0px 10px;
56}
57
58.btn {
59 background-color: #3498db;
60 background-image: linear-gradient(to bottom, #3498db, #2980b9);
61 box-shadow: 0px 2px 3px #666666;
62 font-family: Arial;
63 color: #ffffff;
64 font-size: 20px;
65 padding: 10px 20px 10px 20px;
66 text-decoration: none;
67}
68
69.btn:hover {
70 background-color: #3cb0fd;
71 background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
72 text-decoration: none;
73}
74
75table th {
76 font-weight: bold;
77}
78
1369a09d
BA
79.left, .right {
80 float: left;
81 width: 50%;
82}
83
84.button-container-horizontal, .button-container-vertical {
85 margin-top: 30px;
86 text-align: center;
87}
88.button-container-vertical {
89 float: left;
90}
91/* All children except first: margin: 30px */
92.button-container-horizontal .btn:not(:first-child) {
6d7bb9ad 93 margin-left: 30px;
1369a09d
BA
94}
95.button-container-vertical .btn {
96 display: block;
97 margin-left: 30px;
98}
99.button-container-vertical .btn:not(:first-child) {
6d7bb9ad 100 margin-top: 30px;
1369a09d
BA
101}
102
103button.validate {
104 background-image: linear-gradient(to bottom, #6fa162, #40992e);
105}
106button.validate:hover {
107 background-image: linear-gradient(to bottom, #37cc4e, #40c24f);
108}
109button.cancel {
110 background-image: linear-gradient(to bottom, #d93470, #b82b47);
111}
112button.cancel:hover {
113 background-image: linear-gradient(to bottom, #fc433c, #d93434);
114}
115
7a00c409
BA
116/* players div */
117
118#players {
119 overflow: auto;
fd4a69e4 120 margin-bottom: 15px;
7a00c409
BA
121}
122
123#players p {
124 font-weight: bold;
125 text-align: center;
126}
127
7a00c409
BA
128#inactive table {
129 opacity: 0.6;
130}
131
132table.list {
133 border-collapse: collapse;
134 width: 400px;
135 margin: 0 auto;
136 table-layout: fixed;
137 font-size: 1.1rem;
138 cursor: pointer;
139}
140
141table.list td
142{
143 border: 1px solid #ddd;
144 padding: 10px;
145}
146table.list th {
147 padding: 1em 10px;
148 text-align: left;
149}
150
151table.list tr:not(.title) {
152 background-color: #aaa;
153}
154table.list tr:not(.title):nth-child(even){
155 background-color: #ccc;
156}
157table.list tr:not(.title):hover, table.ranking tr:not(.title):nth-child(even):hover {
158 background-color: lightyellow;
159}
160
161/* ranking div */
162
fd4a69e4
BA
163#ranking {
164 margin-bottom: 15px;
1369a09d 165 overflow: auto;
fd4a69e4
BA
166}
167
7a00c409
BA
168table.ranking {
169 border-collapse: collapse;
170 width: 500px;
171 margin: 0 auto;
172 font-size: 1.1rem;
1369a09d
BA
173 display: block;
174 float: left;
7a00c409
BA
175}
176
177table.ranking td
178{
179 border: 1px solid #ddd;
180 padding: 10px;
181}
182table.ranking th {
183 padding: 1em 10px;
184 text-align: left;
185}
186
187table.ranking tr:not(.title) {
188 background-color: #aaa;
189}
190table.ranking tr:not(.title):nth-child(even){
191 background-color: #ccc;
192}
193table.ranking tr:not(.title):hover, table.ranking tr:not(.title):nth-child(even):hover {
194 background-color: lightyellow;
195}
196
7a00c409
BA
197/* pairings div */
198
1369a09d
BA
199.warning {
200 color: red;
201 margin-top: 25px;
7a00c409
BA
202}
203
1369a09d
BA
204span.link {
205 color: darkblue;
206 cursor: pointer;
7a00c409
BA
207}
208
1369a09d
BA
209button.block {
210 display: block;
211 margin: 25px auto;
7a00c409
BA
212}
213
fd4a69e4
BA
214.toto {
215 color: darkgrey;
216}
217
7a00c409
BA
218.scored {
219 background-color: lightgreen;
220}
221
222#pairings p {
223 font-weight: bold;
224}
225
226td.score {
227 padding-left: 30px;
228}
229
230.pairing {
231 float: left;
232 width: 47%;
233 padding-left: 3%;
234 padding-bottom: 10px;
235 cursor: pointer;
236}
237.unpaired {
238 cursor: default;
239}
7a00c409
BA
240
241.pairing > table {
242 font-size: 1.1rem;
243}
244
245.pairing:hover:not(.scored) {
246 background-color: yellow;
247}
248
249#scoreInput {
250 margin: 30px 0;
251}
252
253#scoreInput table {
254 width: 500px;
255 margin: 0 auto;
256 table-layout: fixed;
257 font-size: 1.1rem;
258}
259
260#scoreInput table td {overflow:hidden;}
261
262#scoreInput table td:nth-of-type(2) {padding:0 10px;}
263#scoreInput table td:nth-of-type(3) {padding: 0 10px;}
264
265#scoreInput table td > input {
266 padding: 0 3px;
267}
268
269#scoreInput table th {
270 padding-bottom: 10px;
271}
2caa3889 272
8d4d2300 273/* Timer (dimensions given in javascript) */
2caa3889
BA
274
275#timer {
276 position: absolute;
277 z-index: 100;
278 left: 0;
279 top: 0;
2caa3889
BA
280 background-color: white;
281 cursor: pointer;
48b3a536 282 text-align: center;
2caa3889
BA
283}
284
285.timeout {
286 color: red;
287}
288
289img.close-cross {
290 display: block;
291 position: absolute;
292 top: 0;
293 right: 0;
294 width: 30px;
295}