-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (41 loc) · 849 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
body{
background: #f4dee4;
}
.container{
font-family: 'Quicksand', sans-serif;
}
.music-player{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
background: #fff2f6;
width: 70%;
height: 340px;
border-radius: 15px;
padding: 10px 18px;
box-shadow: 0px 17px 118px -37px rgb(130,0,82,0.75);
display: flex;
align-items: center;
}
#music-icon{
height: 150px;
width: 150px;
border-radius: 50%;
}
.info{
margin-left: 40px;
width: 100%;
}
.info h3{
margin-bottom: 10px;
}
.control-bar{
margin-top: 30px;
}
.control-bar img{
height: 20px;
margin-right: 10px;
cursor: pointer;
}