blob: 336186e32a4926d09eeaef73192f9ebc6b976d65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#filters div[role="group"] { margin: 10px; }
.table-hover > tbody > tr.gold > td { background-color: #FFEF96 }
.table-hover > tbody > tr.silver > td { background-color: #E5E5E5 }
.table-hover > tbody > tr.bronze > td { background-color: #E1CAB4 }
.table-hover > tbody > tr.gold:hover > td { background-color: #FFE34C }
.table-hover > tbody > tr.silver:hover > td { background-color: #CDCDCD }
.table-hover > tbody > tr.bronze:hover > td { background-color: #D7B99A }
.table {
border-top: solid 1px #ddd; border-bottom: solid 1px #ddd;
opacity: 0.1;
}
.table.history {
opacity: 1;
}
.table .label { display: inline-block; width: 40px }
.table, .table .club,
.table .region, .table .age,
.table .gender, .table .ranking {
border-left: solid 1px #ddd; border-right: solid 1px #ddd
}
.table .pid {
border-left: solid 1px #ddd
}
.table .pidlink {
border-right: solid 1px #ddd
}
.table > tbody > tr { cursor: pointer }
.table-bordered > tbody .place,
.table-bordered > tbody .age-place,
.table-bordered > tbody .gender-place,
.table-bordered > tbody .region-place {
border-right: none;
}
.table-bordered > tbody .place-change,
.table-bordered > tbody .age-place-change,
.table-bordered > tbody .gender-place-change,
.table-bordered > tbody .region-place-change {
border-left: none;
}
.table > thead th { text-align: center }
.table.history > tbody > tr { cursor: auto }
.table .hidden-filler {
text-align: center
}
.container { position: relative; }
.static-menu {
position: absolute;
display: inline-block;
width: auto;
top: 0;
right: 0;
margin: 0 15px;
}
.static-menu .btn { border-top-left-radius: 0; border-top-right-radius: 0 }
|