-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (90 loc) · 1.48 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
body{
background-color: antiquewhite;
}
*{
margin: 0;
padding: 0;
}
nav ul{
display: flex;
background-color: black;
color:white;
height:59px;
list-style: none;
}
li img{
width: 82px
}
li{
margin: 13px
padding: 0px 15px ;
}
.brandimg{
display: flex;
}
nav ul li{
padding: 12px 22px
}
.bottom{
position: sticky;
background-color: black;
height: 57px;
display: flex;
justify-content: center;
color: white;
flex-direction: column;
align-items: center;
padding-top: 22px;
}
#progressbar{
width:78vw;
}
.container{
height: 80vh;
width:80vw;
margin:23px auto;
background-color: black;
background-image: url("headset.png");
background-repeat: no-repeat;
background-size: 100% 100%;
color:white;
border-radius: 23px;
padding: 34px;
}
.songitem{
background-color: aliceblue;
width: 300px;
height:30px;
border-radius: 20px;
padding:10px;
color: black;
display: flex;
justify-content: space-around;
margin: 14px;
}
.songitem img{
border-radius: 64px;
}
.gif{
position: absolute;
left: 0px;
transition: opacity 0.8s ease-in;
}
#masterplay{
cursor: pointer;
}
.subbutton{
cursor: pointer;
}
nav ul li:hover{
background-color:dimgrey;
}
.brandimg:hover{
background-color: black;
}
.songitem:hover{
background-color: lightpink;
}
nav{
position:sticky;
}