blob: 8774ea7c7312bfe7a79f99ef90dc858ece8f34b2 (
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
57
|
.col1 {
float: left;
margin-right: 8px;
margin-left: 8px;
min-height: 300px;
}
.col2 {
min-height: 300px;
margin-right: 0px;
margin-left: 12px;
float: left;
width: 300px;
height: auto;
}
.col {
float: left;
margin-right: 20px;
min-height: 300px;
}
.hidden-stats {
height: 0;
display:none;
}
.shown-stats {
/* -webkit-transition: all .5s ease-in;
-o-transition: all .5s ease-in;
-moz-transition: all .5s ease-in;
transition: all .5s ease-in;
*/
height: 0;
}
table {
border-collapse: collapse;
}
td, th {
padding: 3px;
}
.lbrow {
/* Temporary adjust for font changes */
font-size:105%;
background: #000;
transition:background .5s;
-webkit-transition:background .5s;
-o-transition:color .5s;
-moz-transition:color .5s;
cursor: default;
}
.lbrow:hover {
background: #356;
transition:background 0s;
-webkit-transition:background 0s;
-o-transition:color 0s;
-moz-transition:color 0s;
}
|