-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
77 lines (67 loc) · 1.28 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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap");
body {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
body {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
h1,
h2,
h3,
h4,
h5,
p {
margin: 0;
padding: 0;
}
.slider {
-webkit-appearance: none;
height: 3px;
border-radius: 5px;
background: #fff;
outline: none;
opacity: 0.9;
-webkit-transition: 0.2s;
transition: opacity 0.2s;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 15px;
height: 15px;
border-radius: 100%;
border: 3px solid #fff;
background: #000;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 15px;
height: 15px;
border-radius: 100%;
border: 3px solid #fff;
background: #000;
cursor: pointer;
}
.play {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.play svg {
cursor: pointer;
border-radius: 100px;
padding: 1rem;
}
.play svg:hover {
background-color: rgba(256, 256, 256, 0.1);
}