-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
135 lines (119 loc) · 2.16 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
body{
/* color: white; */
background-color: antiquewhite;
}
*{
margin: 0;
padding: 0;
}
nav{
font-family: "Audiowide", sans-serif;
}
nav ul{
color: white;
display: flex;
align-items: center;
list-style-type: none;
height: 70px;
background-color: rgb(21, 21, 20);
}
nav ul li{
padding: 0 12px;
}
nav ul img{
border-radius: 2000px;
width: 54px;
/* padding: 0 7px; */
margin: -31px 9px;
padding: 8px -4px;
}
.brand{
display: flex;
align-items: center;
font-weight: bolder;
font-size: 1.2rem;
}
/* bottom */
.container{
min-height: 50vh;
background-color: black;
color: white;
display: flex;
width: 55%;
height: 1%;
margin: 22px auto;
border-radius: 10px;
padding: 33px;
background-image: url(/save.jpg);
}
.bottom{
position: sticky;
height: 160px;
color: white;
background-color: black;
bottom: 0;
display: flex;
flex-direction: column;
/* margin: 44px -7px;
padding: 19px 62px; */
justify-content: center;
align-items: center;
}
.icons{
margin-top: 13px;
}
.icons i{
padding: 4px 4px;
cursor: pointer;
}
#progressbar{
width: 80vw;
text-align: center;
/* color: blue; */
cursor: pointer;
/* margin-top: 22px; */
}
.songitem{
height: 45px;
/* padding: 23px 34px; */
display: flex;
background-color: aliceblue;
/* width: 72%; */
color: black;
margin: 16px 0;
justify-content: space-between;
align-items: center;
border-radius: 45px;
}
.songitem img{
width: 36px;
height: 26px;
margin: -5px 18px;
border-radius: 12px;
}
.timestamp{
margin: 0 23px;
/* cursor: pointer; */
}
.timestamp i{
cursor: pointer;
}
.songcontainer{
margin-top: 33px;
}
.songinfo{
position: absolute;
display: flex;
left: 8vw;
margin: -48px 14px;
padding: 8px 10px
}
.songinfo img{
opacity: 0;
/* height: 100%; */
transition: opacity 0.5s ease-in;
}
.icons p{
font-size: 1.3rem;
margin-top: 22px;
}