-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
146 lines (136 loc) · 2.41 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
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
143
144
145
146
/*
Music Player
Design & Developed by Amit Barman
github : https://github.com/AmitBarman99
*/
*{
margin: 0;
margin-top: 10px;
padding: 0;
position: relative;
}
.container{
width: 400px;
height: 360px;
margin: auto;
margin-top: -1.5em;
background: linear-gradient(100deg,sienna,rosybrown,#dab2eb);
padding: 10px;
padding-top: 25px;
border-radius: 40px;
}
.img{
width: 100%;
margin: auto;
text-align: center;
}
#img{
width: 200px;
}
.box{
width:90%;
height: 80%;
margin: 20px auto;
padding: 16px 0px;
position: relative;
background-color: white;
border-radius: 15px;
}
.circle-box{
width: 100%;
display: flex;
justify-content: center;
margin: auto;
column-gap: 100px;
top: -30px;
z-index: 10;
}
.circle img{
border: 2px solid white;
width: 130px;
border-radius: 50%;
box-shadow: 0px 0px 20px rgb(5, 5, 5);
}
#circle1{
animation: rotation1 2.5s infinite linear;
animation-delay: 0.1s;
}
#circle2{
animation: rotation2 2.5s infinite linear;
animation-delay: 0.1s;
}
@keyframes rotation1 {
0%{
transform: rotate(0deg);
}
100%{
transform:rotate(360deg);
}
}
@keyframes rotation2 {
0%{
transform: rotate(0deg);
}
100%{
transform:rotate(-360deg);
}
}
.switch-box{
margin: 30px auto;
width: 90%;
justify-content: center;
border-radius: 30px;
}
.box-two{
display: flex;
flex-direction: column;
}
.switch{
display: flex;
}
.sw{
border: 1px solid white;
width: 100%;
padding: 0px 0px;
position: relative;
margin: auto 5px;
justify-content: center;
align-items: center;
border-radius: 10px;
box-shadow: 0px 0px 8px black;
}
.sw span{
width: 30px;
font-size: 40px;
line-height: 1.5;
padding: 26px;
padding: 2px 141px;
cursor: pointer;
}
.mid{
background: linear-gradient(90deg,white,peru,sienna, chocolate,sienna,peru,white);
}
/* .fas-b{
background: linear-gradient(90deg, chocolate,sienna,peru,white);
}
.fas-f{
background: linear-gradient(-90deg, chocolate,sienna,peru,white);
} */
#canvas{
height: 229px;
width: 100%;
margin: auto;
border-radius: 7px;
margin-top: -186px;
}
#thefile{
margin: auto;
margin-bottom: -20px;
}
#pause-icon{
width: 30px;
height: 40px;
}
#play-icon{
height: 30pc;
}