-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlive_class.css
104 lines (99 loc) · 2.1 KB
/
live_class.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
103
/* live class page
*/
h1 {
color: #333;
font-weight: 500;
}
h3 {color: #aaa;
font-weight: 500;
}
h4 {
color: #999;
font-weight: 500;
}
h4:after {
content: "%";
padding-left: 1px;
}
input[type="range"] {
outline: 0;
border: 0;
border-radius: 500px;
width: 400px;
max-width: 100%;
margin: 24px 0 16px;
transition: box-shadow 0.2s ease-in-out;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
input {
overflow: hidden;
height: 40px;
-webkit-appearance: none;
background-color: #ddd;
}
input::-webkit-slider-runnable-track {
height: 40px;
-webkit-appearance: none;
color: #444;
// margin-top: -1px;
transition: box-shadow 0.2s ease-in-out;
}
input::-webkit-slider-thumb {
width: 40px;
-webkit-appearance: none;
height: 40px;
cursor: ew-resize;
background: #fff;
box-shadow: -340px 0 0 320px #1597ff, inset 0 0 0 40px #1597ff;
border-radius: 50%;
transition: box-shadow 0.2s ease-in-out;
position: relative;
// top: 1px;
}
input:active::-webkit-slider-thumb {
background: #fff;
box-shadow: -340px 0 0 320px #1597ff, inset 0 0 0 3px #1597ff;
}
}
#h4-container {
width: 400px;
max-width: 100%;
padding: 0 20px;
box-sizing: border-box;
position: relative;
}
#h4-subcontainer {
width: 100%;
position: relative;
}
h4 {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 0;
width: 40px;
height: 40px;
color: #fff !important;
font-size: 12px;
transform-origin: center -10px;
transform: translateX(-50%);
transition: margin-top 0.15s ease-in-out,
opacity 0.15s ease-in-out;
}
span {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: #1597ff;
border-radius: 0 50% 50% 50%;
transform: rotate(45deg);
z-index: -1;
}
input:not(:active) + #h4-container h4 {
opacity: 0;
margin-top: -50px;
pointer-events: none;
}