-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (89 loc) · 1.88 KB
/
style.css
File metadata and controls
113 lines (89 loc) · 1.88 KB
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
107
108
109
110
111
112
113
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
html {
background: url(images/download.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.container{
width: 300px;
margin-top: 40px;
}
.heading_progessbar{
text-align: center;
background-color: rgb(189, 183, 183);
padding: 10px;
border-radius: 5px;
background-color: #ca81b2;
}
.progress_wrapper{
background-color: white;
width: 100%;
height: 10px;
border-radius: 5px;
margin-top: 20px;
cursor: pointer;
}
.progress{
width: 0px;
height: 10px;
border-radius: 5px;
background-color: red;
}
.rotate_playprevnext_wrapper{
text-align: center;
background-color: #ca81b2;
padding: 10px;
border-radius: 5px;
margin-top: 20px;
display: flex;
/* justify-content: space-between; */
box-shadow: 0px 8px 10px #903490;
}
.img_rotate_wrapper{
flex: 2 1 0px;
}
.play_pause_wrapper{
flex: 3 1 0px;
text-align: center;
display: flex;
align-items: center;
text-align: center;
}
.rotate_playprevnext_wrapper img{
height: 100px;
width: 100px;
border-radius: 50%;
animation: rotate 0.7s linear infinite;
animation-play-state: paused;
}
.play_pause_wrapper a{
transform: translateX(50px);
margin-left: 10px;
font-size: 25px;
}
.img_rotate_wrapper.play img{
animation-play-state: running;
}
@keyframes rotate {
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}