style.css
1.16 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body {
position: fixed;
width: 100%;
height: 100%;
background: black;
color: white;
font-family: "GeosansLight";
padding: 30px;
overflow: hidden;
font-size: 17pt;
}
#stars {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}
#stars img {
position: absolute;
width: 100px;
image-rendering: -moz-crisp-edges;
}
#header {
margin-top: 15px;
}
#logo {
margin-top: 20px;
width: 100%;
image-rendering: -moz-crisp-edges;
}
#main {
font-family: Arcadepix;
}
#best {
position: relative;
}
#bestBlock {
position: absolute;
top: 50px;
width: 600px;
left: 50%;
margin-left: -300px;
text-align: center;
display: none;
}
#bestBlock .score {
color: cyan;
font-size: 500%;
}
#bestBlock .name {
font-size: 200%;
color: cyan;
text-transform: uppercase;
}
#scores h1 {
font-weight: bold;
}
#scores li {
text-transform: uppercase;
}
#footer {
position: absolute;
bottom: 20px;
height: 100px;
width: 100%;
}
#footer p {
margin-top: 50px;
text-align: center;
}
#footer div, #footer div img {
height: 100%;
}