forked from ondras/fireworks-webgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (95 loc) · 1.69 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
@import url(http://fonts.googleapis.com/css?family=Codystar&subset=latin,latin-ext);
html, body {
margin: 0;
height: 100%;
overflow: hidden;
background-color: #000;
color: #fff;
font-family: sans-serif;
}
canvas {
display: block;
}
#info {
position: absolute;
left: 3px;
bottom: 3px;
font-size: 70%;
opacity: 0.5;
}
#info a {
color: #fff;
}
#banner {
position: absolute;
top: 0;
left: 0;
width: 100%;
font-size: 5vw;
font-family: codystar;
text-align: center;
animation: colors 5s infinite;
-webkit-animation: colors 5s infinite;
}
#jukebox {
position: absolute;
right: 0;
bottom: 0;
text-align: center;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 15px 0 0 0;
padding: 5px;
transform: translate(0, 100%) translate(0, -25px);
transition: all 300ms;
}
#jukebox:hover {
transform: none;
}
#jukebox:before {
content: "Jukebox";
display: block;
height: 25px;
text-transform: uppercase;
}
#jukebox label {
margin: 0 10px;
}
#jukebox form {
display: none;
margin-top: 8px;
font-size: 80%;
}
#jukebox [value=playlist]:checked ~ #playlist,
#jukebox [value=url]:checked ~ #url,
#jukebox [value=file]:checked ~ #file {
display: block;
}
#jukebox :checked + label {
font-weight: bold;
}
#jukebox [type=radio] {
display: none;
}
#jukebox label {
cursor: pointer;
}
@keyframes colors {
0% { color: #fff; }
15% { color: #ff3; }
30% { color: #f66; }
45% { color: #f3f; }
60% { color: #66f; }
75% { color: #3ff; }
90% { color: #6f6; }
100% { color: #fff; }
}
@-webkit-keyframes colors {
0% { color: #fff; }
15% { color: #ff3; }
30% { color: #f66; }
45% { color: #f3f; }
60% { color: #66f; }
75% { color: #3ff; }
90% { color: #6f6; }
100% { color: #fff; }
}