-
Notifications
You must be signed in to change notification settings - Fork 13
/
style.css
134 lines (113 loc) · 1.47 KB
/
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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
body
{
margin: 0;
font-family: 'Open Sans', sans-serif;
font-weight: normal;
line-height: 1.5;
background-color: #000000;
overflow: hidden;
}
#container
{
position: relative;
}
#container canvas, #overlay
{
position: absolute;
}
h1
{
color: #ffffff;
font-family: 'Open Sans', sans-serif;
font-size: 50px;
padding-left: 0px;
padding-top: 20px;
font-weight: bold;
line-height: 1;
}
h2
{
color: #ffffff;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
padding-top: 20px;
padding-bottom: 20px;
font-weight: normal;
}
h3
{
color: #ffffff;
font-family: 'Open Sans', sans-serif;
padding-top: 5px;
padding-bottom: 5px;
font-weight: normal;
font-size: 15px;
}
br
{
clear: left;
}
a
{
color: #ffffff;
}
a:visited
{
color: #ffffff;
}
a:hover
{
color: #e2e2e2;
}
#container ul li a
{
color: #e2e2e2;
text-decoration: none;
margin-right: 10px;
}
#container ul li a:visited
{
color: #e2e2e2;
text-decoration: none;
}
#container ul li a:hover, #container ul li .current
{
color: #ffffff;
text-decoration: none;
}
#player
{
width: 400px;
height: 300px;
background-color: '#ff0000';
position: absolute;
top: 0;
left: -2000;
/*display: none;*/
}
#startButton
{
text-decoration: none;
color: #a0a0a0;
padding: 10.5px 11px;
background-color: white;
display: none;
}
#overlay
{
margin: 20px 20px 20px 20px;
}
#control
{
display: none;
}
ul
{
list-style-type: none;
margin: 0;
padding: 0;
}
ul h3
{
text-decoration: none;
}