blob: a845ef36dd60cf119272281daf4df1fe65777cf3 (
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
|
<html>
<head>
<style type="text/css">
body {
background-color: #201f20;
}
ul {
margin: 0px;
padding: 0px;
}
li {
list-style: none;
list-style-image: none;
width: 30px;
height: 24px;
margin-top: 15px;
margin-bottom: 10px;
text-align: center;
margin-left: auto;
margin-right: auto;
font-size: 1.4rem;
font-family: Lato;
font-weight: bold;
background-color: purple;
padding-top: 6px;
border-radius: 5px;
color: white;
cursor: pointer;
background-size:100%;
}
.inactive {
border-left: 0px;
}
.active {
width: 40px;
height: 34px;
}
.alert {
border-right: solid 3px #ff3822;
}
</style>
</head>
<body>
<ul id="teams">
</ul>
</body>
</html>
|