blob: c36c1d03a42ccee3f5e15e916c7a05f7fdc7b700 (
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
|
.col1 {
float: left;
margin-right: 30px;
}
.col2 {
float: left;
width: 450px;
}
table {
border-collapse: collapse;
}
td, th {
padding: 3px;
}
.lbrow {
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;
}
.hidden-stats {
display: none;
}
|