-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (106 loc) · 2.31 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
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fira+Sans:wght@300&family=Inter:wght@300&family=Italianno&family=Oswald&family=Poppins:wght@600&family=Roboto&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fira+Sans:wght@300&family=Inter:wght@300&family=Italianno&family=Oswald&family=Poppins:wght@600&family=Roboto&family=Ubuntu&family=Varela+Round&display=swap');
*{
margin: 0;
padding: 0;
}
body{
background-color: antiquewhite;
}
nav{
background-color: black;
height: 3rem;
font-family: 'Ubuntu', sans-serif;
font-size: 15px;
display: flex;
align-items: center;
}
ul{
display: flex;
color: white;
align-items: center;
list-style-type: none;
}
ul li{
margin: 0px 6px;
}
.brand{
display: flex;
align-items: center;
font-size: 1.3rem;
}
.brand img{
width: 2rem;
}
.container{
min-height: 70vh;
background-color: black;
color: white;
font-family: 'Varela Round', sans-serif;
width: 70%;
display: flex;
margin: 23px auto;
background-image: url("pngwing.com2.png");
background-position: right;
background-repeat: no-repeat;
border-radius: 12px;
/* padding: 5px 0px; */
}
/* .container h2{
position: absolute;
right: 15rem;
} */
.songItemContainer{
margin: 20px 0px;
}
.songlist{
padding: 5px 2px;
}
.songItem{
height: 50px;
display: flex;
background-color: white;
width: 100%;
color: #000;
margin: 12px 0;
justify-content: space-between;
align-items: center;
border-radius: 34px;
}
.songItem img{
width: 43px;
margin: 0 20px;
}
.timestamp{
margin: 0 23px;
/* cursor: pointer; */
}
.timestamp i{
cursor: pointer;
}
.bottom{
position: sticky;
height: 130px;
bottom: 0;
background-color: black;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
color: white;
}
.icons{
margin-top: 20px;
cursor: pointer;
}
#myProgressBar{
width: 80vw;
}
.songInfo{
position: absolute;
left: 10vw;
}
.songInfo img{
opacity: 0;
transition: opacity 1s ease-in;
}