-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
102 lines (93 loc) · 1.76 KB
/
styles.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
body{
background-color: black;
color: white;
text-align: center;
margin: 0;
height: 70vh;
font-family: Arial, Helvetica, sans-serif;
}
#topContainer{
height: 100%;
width: 90%;
margin-left: auto;
margin-right: auto;
background-color: black;
display: flex;
vertical-align: bottom;
align-items: flex-top;
}
.bar{
background-color:aqua;
flex-grow: 1;
flex-basis: 1;
height: 100%;
display: inline-block;
margin-right: 0.05%;
margin-left: 0.05%;
color: black;
}
.selected-bar{
background-color:red;
flex-grow: 1;
flex-basis: 1;
height: 100%;
display: inline-block;
margin-right: 0.05%;
margin-left: 0.05%;
}
.end-bar{
background-color: rgb(65, 224, 65);
flex-grow: 1;
flex-basis: 1;
height: 100%;
display: inline-block;
margin-right: 0.05%;
margin-left: 0.05%;
}
button{
background-color: black;
border-radius: 20px;
color:white;
border-color: aqua;
margin: 10px;
width: 130px;
height: 25px;
}
button:hover{
background-color: rgb(17, 36, 37);
}
.slide-outer-container{
width: 90%;
margin: 10px auto 10px auto;
display: flex;
max-width: 925px;
}
.button-container{
width: 90%;
margin: 10px auto 10px auto;
}
.slide-inner-container{
width: 50%;
margin: 0 10px 0 10px;
}
.slider {
-webkit-appearance: none;
width: 100%;
height: 10px;
border-radius: 5px;
background: rgb(22, 37, 44);
-webkit-transition: .2s;
transition: opacity .2s;
}
.slider:hover {
opacity: 1;
background: rgb(35, 54, 62);
}
.slider::-moz-range-thumb {
width: 30px;
height: 10px;
border-radius: 20px;
background: aqua;
cursor: pointer;
border-width: 0;
}