-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
56 lines (56 loc) · 1001 Bytes
/
style.css
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
@-webkit-keyframes blur {
0% { text-shadow: 0; padding-top: 0; opacity: 0; }
50% { text-shadow: 0 0 10px white; }
100% { text-shadow: 0; padding-top: 0.2em; opacity: 1; }
}
html, body {
padding: 0;
margin: 0;
height: 100%;
background: #2d2d2d;
color: white;
font-family: sans-serif;
}
#teams {
margin: 0;
padding: 0;
list-style: decimal;
list-style-position: inside;
}
#teams li {
text-align: center;
height: 1.3em;
padding-top: 0.2em;
font-size: 3.5em;
padding-left: 1em;
opacity: 0;
color: rgba(255,255,255,0.7);
-webkit-transform: translateZ(0);
-webkit-font-smoothing: antialiased;
}
#teams li span {
color: white;
}
#teams li.show {
opacity: 1;
-webkit-animation: blur 2s;
}
#overlay {
display: table;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: #2d2d2d;
z-index: 999;
-webkit-transition: 1s;
transition: 1s;
}
#overlay h1 {
display: table-cell;
text-align: center;
vertical-align: middle;
font-size: 5em;
cursor: pointer;
}