style.css
730 Bytes
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
body {
position: fixed;
width: 100%;
height: 100%;
background: black;
color: white;
font-family: "GeosansLight";
padding: 30px;
overflow: hidden;
font-size: 17pt;
}
#header {
margin-top: 30px;
}
#logo {
margin-top: 20px;
width: 100%;
image-rendering: -moz-crisp-edges;
}
#main {
margin-top: 20px;
font-family: Arcadepix;
}
#scores {
font-size: 110%;
}
#scores h1 {
font-weight: bold;
}
#scores li {
text-transform: uppercase;
}
#footer {
position: absolute;
bottom: 20px;
height: 100px;
width: 100%;
}
#footer p {
margin-top: 50px;
font-size: 75%;
text-align: center;
}
#footer div, #footer div img {
height: 100%;
}