1 |
56cb34de
|
horkym
|
/* FORMULAR */
|
2 |
|
|
|
3 |
|
|
#dateSelector {
|
4 |
|
|
width: 300px;
|
5 |
|
|
margin: 20px auto;
|
6 |
|
|
}
|
7 |
|
|
|
8 |
|
|
#dateSelector fieldset {
|
9 |
|
|
padding-top: 10px;
|
10 |
|
|
}
|
11 |
|
|
|
12 |
|
|
#dateSelector div {
|
13 |
|
|
float: left;
|
14 |
|
|
}
|
15 |
|
|
|
16 |
|
|
#dateSelector input[type=date] {
|
17 |
|
|
float: right;
|
18 |
|
|
}
|
19 |
|
|
|
20 |
|
|
#dateSelector input[type=submit] {
|
21 |
|
|
clear: both;
|
22 |
|
|
float: right;
|
23 |
|
|
margin-top: 5px;
|
24 |
|
|
}
|
25 |
|
|
|
26 |
|
|
/* TABULKY */
|
27 |
|
|
|
28 |
|
|
table {
|
29 |
|
|
width: 100%;
|
30 |
|
|
border-collapse: collapse;
|
31 |
|
|
margin-bottom: 20px;
|
32 |
|
|
}
|
33 |
|
|
|
34 |
|
|
td, th {
|
35 |
|
|
border: 1px solid grey;
|
36 |
|
|
padding: 5px;
|
37 |
|
|
}
|
38 |
|
|
|
39 |
|
|
th {
|
40 |
|
|
color: white;
|
41 |
|
|
text-align: center;
|
42 |
|
|
background-color: #FF7007;
|
43 |
|
|
padding: 10px;
|
44 |
|
|
}
|
45 |
|
|
|
46 |
|
|
tr:nth-child(even) {
|
47 |
|
|
background-color: #FFBC33;
|
48 |
|
|
}
|
49 |
|
|
|
50 |
|
|
tr:hover {
|
51 |
|
|
background-color: #FFCE6A;
|
52 |
|
|
}
|