-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
97 lines (81 loc) · 1.45 KB
/
index.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
img {
max-width: 100%;
max-height: 100%;
}
.questionButton {
width: 30vh;
height: 30vh;
top: 30%;
position: absolute;
left: 50%;
margin-left: -15vh;
animation: buttonMoving 1s infinite linear;
}
@keyframes buttonMoving {
0% {
width: 30vh;
height: 30vh;
margin-left: -15vh;
}
50% {
width: 28vh;
height: 28vh;
margin-left: -14vh;
}
100% {
width: 30vh;
height: 30vh;
margin-left: -15vh;
}
}
.slidecontainer {
position: absolute;
width: 100%;
top: 80%;
}
.slider {
-webkit-appearance: none;
width: 80%;
margin-left: 10%;
height: 2.5vh;
background: #d3d3d3;
outline: none;
margin-bottom: 5vh;
}
.slider:hover {
opacity: 1;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 5vh;
height: 5vh;
cursor: pointer;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7), 0 6px 20px 0 rgba(0, 0, 0, 0.7);
}
.s-red::-webkit-slider-thumb {
background: #FF0000;
}
.s-green::-webkit-slider-thumb {
background: #00FF00;
}
.s-blue::-webkit-slider-thumb {
background: #0000FF;
}
.errorContainer {
width: 30vh;
height: 30vh;
top: 20%;
position: absolute;
left: 50%;
margin-left: -15vh;
text-align: center;
font-size: 8vh;
font-weight: bolder;
}
.errorContainer p {
margin-top: 0px;
}
.iconReversed {
transform: rotate(180deg);
}