-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
110 lines (98 loc) · 1.84 KB
/
stylesheet.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
body {
background-color: #000;
color: #fff;
font-family: 'Consolas', monospace;
animation: fadeInAnimation ease 3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#splashscreen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000000;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
a {
color: #00ffff;
background-color: transparent;
text-decoration: none;
}
a:hover,
a:active {
text-decoration: underline;
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0.3;
}
100% {
opacity: 1;
}
}
a.blink-animation {
animation: blink 2s infinite;
}
.mute-button {
position: fixed;
bottom: 20px;
left: 1px;
background: none;
border: none;
cursor: pointer;
font-size: 24px;
color: #fff;
}
.mute-button:hover {
color: #00ffff;
}
#volumeSlider {
position: fixed;
bottom: 27px;
left: 55px;
width: 100px;
height: 5px;
background-color: #999999;
-webkit-appearance: none;
appearance: none;
outline: none;
}
#volumeSlider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 12px;
height: 12px;
background-color: #fff;
border-radius: 50%;
cursor: pointer;
}
#volumeSlider::-moz-range-thumb {
width: 12px;
height: 12px;
background-color: #fff;
border-radius: 50%;
cursor: pointer;
}
#volumeSlider::-ms-thumb {
width: 12px;
height: 12px;
background-color: #fff;
border-radius: 50%;
cursor: pointer;
}