forked from dli/vortexspheres
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vortexspheres.css
129 lines (92 loc) · 1.62 KB
/
vortexspheres.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
* {
font-family: 'PT Sans', Arial, sans-serif;
}
body {
margin: 0;
padding: 0;
overflow: hidden;
}
#ui {
display: none;
position: absolute;
top: 0;
left: 0;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
.slider {
width: 150px;
height: 15px;
background-color: rgba(0, 0, 0, 0.2);
position: relative;
cursor: ew-resize;
margin-bottom: 5px;
}
.slider-label {
color: white;
font-size: 12px;
margin-bottom: 2px;
}
#drop-button {
background-color: rgba(0, 200, 60, 1.0);
font-size: 12px;
display: inline-block;
color: white;
margin-top: 5px;
padding: 4px 8px;
cursor: pointer;
}
#drop-button:hover {
background-color: rgba(0, 220, 80, 1.0);
}
#drop-button:active {
background-color: rgba(0, 180, 40, 1.0);
}
#footer {
display: none;
position: absolute;
right: 20px;
bottom: 20px;
color: #333333;
font-size: 12px;
}
#footer a {
text-decoration: underline;
color: #333333;
}
#qualities {
display: none;
position: absolute;
top: 20px;
right: 20px;
z-index: 1;
font-size: 12px;
text-align: right;
}
#quality-label {
margin-right: 10px;
color: #777777;;
}
.quality {
color: white;
margin-right: 10px;
cursor: pointer;
}
#error {
font-weight: 300;
color: #333333;
font-size: 14px;
display: none;
margin-top: 20px;
margin-left: 20px;
}
#video {
display: none;
margin-top: 20px;
margin-left: 20px;
width: 854px;
color: #333333;
font-size: 14px;
}