-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (85 loc) · 1.29 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
*
{
margin: 0px;
padding: 0px;
}
html, body
{
height: 100%;
}
canvas {
width: 100%;
height: 100%;
position: absolute;
top: 0px;
z-index: -1;
}
#stars {
display: none;
z-index: -1;
}
body {
background: black;
color: #ccc;
/* too much for CPU! */
transition: background 300ms;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#options {
float: right;
position: absolute;
right: 10px;
top: 10px;
}
#options p {
margin: 10px;
}
#options select {
float: right;
width: 250px;
text-transform: capitalize;
}
#options label {
margin-right: 20px;
}
#credit {
position: absolute;
left: 20px;
top: 20px;
}
header {
margin-bottom: 30px;
//background: rgba(0,0,0,0.5);
height: 85px;
}
#title {
text-align: center;
margin-top: 15px;
z-index: 3;
}
#title a {
}
a {
color: #ccc;
transition-property: color;
transition-duration: .2s;
}
a:hover {
color: #683996;
}
#title a:hover {
border-bottom-color: #683996;
}
::selection { background: transparent; }
::-moz-selection { background: transparent; }
table {
position: absolute;
top: 0;
z-index: 1;
}
#audio {
display: table;
position: relative;
margin: 0 auto;
z-index: 2;
}