-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (75 loc) · 1.34 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
body {
margin: 0;
overflow: hidden;
background-color: #272727;
}
.main {
opacity: 1;
}
.main.disabled {
opacity: 0.4;
}
.navbar {
opacity: 1;
}
.navbar.disabled {
opacity: 0.4;
}
#c {
margin: 0;
overflow: hidden
}
input[type="range"] {
--webkit-appearance: none;
background-color: #bdc3c7;
height: 5px;
border-radius: 5px;
}
input[type="range"]::-webkit-slider-thumb {
--webkit-appearance: none;
background-color: #e74c3c;
width: 30px;
height: 30px;
border-radius: 50%;
border: 2px solid white;
cursor: pointer;
transition: .3s ease-in-out;
}
input[type="range"]::-webkit-slider-thumb:hover {
background-color: white;
border: 2px solid #e74c3c;
}
input[type="range"]::-webkit-slider-thumb:active {
transform: scale(1.3);
}
#info:hover {
cursor: pointer;
}
.info-wrapper {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
}
.info-wrapper.disabled {
display: none;
}
.info {
overflow-y: scroll;
display: block;
justify-content: center;
z-index: 100;
background: #fff;
border-radius: 5px;
border: 2px solid #FF652F;
padding: 1rem;
}
.info-close {
position: relative;
float: right;
}
.info-close:hover {
cursor: pointer;
}