-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
86 lines (75 loc) · 1.25 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
/* #ball {
width: 30px;
height: 30px;
border-radius: 25px;
background-color: ;
position: absolute;
top: 0;
left: 0;
} */
/* body display everything in center */
/* column wise */
#body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
}
.slider-container {
width: 300px;
height: 10px;
background-color: #ccc;
position: relative;
}
.slider-track {
width: 0;
height: 100%;
background-color: black;
position: absolute;
}
.slider-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background-color: white;
border: 1px solid black;
position: absolute;
top: -5px;
left: -10px;
}
#slider-value {
font-weight: bold;
}
/* CSS for start audio context button */
.btn {
background-color: #333;
color: #fff;
padding: 10px;
border-radius: 5px;
margin: 0 10px 10px 0;
cursor: pointer;
}
.btn:hover{
background-color: #555;
}
/* CSS for color select dropdown */
select {
padding: 5px;
font-size: 16px;
border-radius: 5px;
margin-right: 10px;
}
/* CSS for checkbox container */
#myCheckboxContainer {
margin: 10px 0;
}
/* CSS for checkbox label */
label {
margin-left: 5px;
}
/* CSS for checkbox */
input[type="checkbox"] {
transform: scale(1.5);
margin-right: 5px;
}