-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecorate.css
More file actions
142 lines (120 loc) · 2.39 KB
/
decorate.css
File metadata and controls
142 lines (120 loc) · 2.39 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
*{
box-sizing: border-box;
}
body{
height:100vh;
margin: 0;
font-family: 'Poppins' sans-serif;
background-image:linear-gradient(
0deg,
rgb(247, 247, 247) 23.8%,
rgb(221, 241, 252) 92%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.music-wrap{
background-color: #fff;
border-radius:15px;
box-shadow: 0 20px 20px 0 rgba(122, 197, 247, 0.6);
display: flex;
padding: 20px 30px;
position: relative;
margin: 100px 0;
z-index: 10;
}
.img-wrap{
position: relative;
width: 100px;
}
.img-wrap::after{
content: "";
background-color: #fff;
height: 20px;
width: 20px;
position: absolute;
left: 50%;
bottom: 50%;
border-radius: 50%;
transform: translate(-50%, -50%);
}
.img-wrap img{
width: inherit;
height: 100px;
border-radius: 50%;
object-fit: cover;
position: absolute;
bottom:0;
left:0;
animation: rotate 3s linear infinite;
animation-play-state: paused;
}
.music-wrap.play .img-wrap img{
animation-play-state: running;
}
@keyframes rotate{
from{
transform: rotate(0deg);
}
to{
transform: rotate(360deg);
}
}
.navigation{
display: flex;
align-items:center ;
justify-content: center;
z-index: 1;
}
.action-btn{
background-color: #fff;
border: 0;
color: #dfdbdf;
font-size: 20px;
cursor: pointer;
padding: 10px;
margin: 0 20px;
}
.action-btn-big{
color: #cdc2d0;
font-size: 30px;
}
.action-btn:focus{
outline: 0;
}
.music-info{
background-color: rgba(255, 255, 255, 0.5);
border-radius: 15px 15px 0 0;
position: absolute;
top: 0;
left: 20px;
opacity:0;
width: calc(100% - 40px);
padding: 10px 10px 10px 150px;
transform: translateY(0%);
transition: transform 0.3s ease-in, opacity 0.3s ease-in;
}
.music-info h4{
margin: 0;
}
.music-wrap.play .music-info{
opacity: 1;
transform: translateY(-100%);
}
.progress-container{
background: #fff;
border-radius: 5px;
cursor: pointer;
margin: 10px 0;
height: 4px;
width: 100%;
}
.progress{
background-color: #75b1ff;
border-radius: 5px;
height: 100%;
width: 0%;
transition: width 0.1s linear;
}