Newer
Older
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
.teams {
margin: 0 0 2em 0;
list-style-type: none;
padding: 0;
width: 15em;
}
.teams li {
cursor: pointer;
position: relative;
left: 0;
background-color: #EEE;
margin: .5em;
padding: .3em 0;
height: 1.6em;
border-radius: 4px;
}
.teams li:hover {
color: #2c3a41;
background-color: #e6e6e6;
left: .1em;
}
.teams li.selected {
background-color: black;
color: white;
}
.teams li.selected:hover {
background-color: #505050;
color: white;
}
.teams li.selected:active {
background-color: black;
color: white;
}
.teams .badge {
display: inline-block;
font-size: small;
color: white;
padding: 0.8em 0.7em 0 0.7em;
background-color:#405061;
line-height: 1em;
position: relative;
left: -1px;
top: -4px;
height: 1.8em;
margin-right: .8em;
border-radius: 4px 0 0 4px;
}
input {
padding: .5rem;
}