-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
108 lines (108 loc) · 2.09 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
* {
margin: 0px;
}
body {
background-color: #000;
}
#container {
width: 100%;
height: 100vh;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
transition: 1s;
}
@keyframes moveDownAnimation {
100% {
background-position-y: 100%;
}
}
#rgb_screen {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("rgb.jpg");
z-index: 10;
background-size: 0.7vh auto;
mix-blend-mode: overlay;
pointer-events: none;
opacity: 0.6;
animation: moveDownAnimation 100s linear infinite;
}
#gray_screen {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("gray_screen.png");
z-index: 11;
background-size: 100% 100%;
mix-blend-mode: overlay;
pointer-events: none;
opacity: 0.5;
}
#dark {
position: absolute;
background: rgba(0, 0, 0, 0.3);
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
transition: 1s;
}
#controller {
position: absolute;
bottom: 15px;
left: 15px;
width: 55vh;
height: 10vh;
z-index: 20;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
@keyframes start_anim {
0% {color: #f8fff6;}
100% {color: #ff6e6e;}
}
#play {
animation: start_anim 1s alternate infinite;
}
.button {
margin: auto;
font-size: 4vh;
color: #f8fff6;
text-shadow: 0px 0px 5vh #ffebeb;
transition: 1s;
}
.button:hover {
text-shadow: 0px 0px 1vh #ffcbcb;
}
#volume {
margin: auto;
width: 20vh;
height: 3vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
transition: 1s;
}
.volume_level {
display: inline-block;
width: 1.9vh;
height: 3vh;
background-color: #ff6e6e;
transition: 0.5s;
}
.volume_level:nth-child(1){
border-radius: 1vh 0vh 0vh 1vh;
}
.volume_level:nth-child(10){
border-radius: 0vh 1vh 1vh 0vh;
}