-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
116 lines (103 loc) · 1.88 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
background-color: black;
}
* {
margin: 0;
padding: 0;
}
nav {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
color: white;
}
nav ul {
display: flex;
list-style: none;
height: 65px;
align-items: center;
}
nav ul li {
padding: 0 12px;
}
.logo img {
width: 75px;
padding: 0 8px;
}
.logo {
display: flex;
align-items: center;
}
.container {
min-height: 75vh;
font-family: "Poppins", sans-serif;
color: whitesmoke;
display: flex;
margin: 23px auto;
width: 70%;
border-radius: 12px;
padding: 34px;
background-image: url("BG.png");
background-size: 1200px 675px;
}
.bottom {
position: sticky;
height: 65px;
background-color: whitesmoke;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#myProgressBar {
width: 80vw;
cursor: pointer;
appearance: none;
}
#myProgressBar:hover {
opacity: 1;
}
.icons {
margin-top: 14px;
}
.icons i {
cursor: pointer;
}
.songItemContainer {
margin-top: 74px;
}
.songItem {
height: 50px;
display: flex;
background-color: white;
color: rgb(0, 0, 0);
margin: 12px 0;
justify-content: space-between;
align-items: center;
border-radius: 34px;
}
.songItem img {
width: 30px;
margin: 0 23px;
border-radius: 34px;
}
.timestamp {
margin: 0 23px;
}
.timestamp i {
cursor: pointer;
}
.songInfo {
color: black;
position: absolute;
left: 10vw;
opacity: 0;
transition: opacity 0.4s ease-in;
}
@media only screen and (max-width: 680px) {
body {
background-color: rgb(0, 0, 0);
}
}