-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcm.css
106 lines (103 loc) · 1.69 KB
/
cm.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
104
105
106
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
padding: 0;
margin: 0;
font-family: Poppins;
}
body {
background: #0a1624;
background: linear-gradient(to right, rgb(4, 21, 44), rgb(2, 71, 83));
}
.line {
background: linear-gradient(-135deg, #c850c0, #4158d0);
width: 100%;
display: block;
height: 2px;
}
#scrollbar {
position: absolute;
height: 2px;
width: 100%;
background: linear-gradient(375deg, #1cc7d0, #2ede98);
z-index: 999;
}
#completed {
position: absolute;
height: 4px;
width: 50%;
background: linear-gradient(-135deg, #c850c0, #4158d0);
z-index: 999;
}
video {
position: absolute;
width: 100%;
height: 100%;
}
.controls {
position: absolute;
bottom: 2px;
}
button{
z-index: 999;
}
#playpause {
position: fixed;
width: 200px;
height: 200px;
background: transparent;
top: 50%;
left: 50%;
transform: translate(-50%,-50%)
}
#next {
position: absolute;
width: 50%;
height: 100%;
background: transparent;
right: 0;
top: 0;
}
#prev {
position: absolute;
width: 50%;
height: 100%;
background: transparent;
left: 0;
top: 0;
}
#title {
color: whitesmoke;
background: linear-gradient(375deg, #3d1cd0, #debe2e);
padding: 4px;
border-radius: 8px;
position: fixed;
bottom: 4px;
z-index: 400;
}
#share {
color: #ffe882;
width: 40px;
bottom: 4px;
}
#reset img {
transform: rotate(
90deg
);
}
#loader {
position: absolute;
bottom: 0;
height: 2px;
width: 100%;
background: linear-gradient(-135deg, #c850c0, #4158d0);
z-index: 999;
}
#ad {
position: absolute;
width: 100%;
height: 100%;
background: transparent;
left: 0;
top: 0;
display: none;
}