-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS
More file actions
116 lines (108 loc) · 1.95 KB
/
CSS
File metadata and controls
116 lines (108 loc) · 1.95 KB
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=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre&family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre&family=Kaushan+Script&family=Satisfy&display=swap');
body
{
background-color: darkviolet;
}
*{
margin : 0;
padding :0;
}
nav{
font-family: 'Satisfy', cursive;
}
nav ul
{
display: flex;
align-items: center;
list-style-type: none;
height: 70px;
background-color: black;
color: beige;
}
nav ul li{
padding: 0 12px;
}
.brand img{
width: 50px;
padding: 0 8px;
}
.brand
{
display: flex;
align-items: center;
font-weight: bolder;
font-size: 1.3rem;
}
.container
{
min-height: 60vh;
background-color: black;
color: antiquewhite;
font-family: 'Frank Ruhl Libre', serif;
display: flex;
width: 76%;
margin: 23px auto;
border-radius: 10px;
padding: 25px;
background-image: url('girl2.jpg');
}
.bottom{
position: sticky;
height: 125px;
background-color: black;
color: darkgrey;
bottom:0;
display: flex;
justify-content: center;
align-items: center;
flex-direction:column ;
}
.icons{
margin-top: 14px;
}
.icons i{
cursor: pointer;
}
#myProgressBar{
width: 80vw;
cursor: pointer;
}
.songItemContainer
{
margin-top: 55px;
}
.songItem{
height: 40px;
display:flex;
background-color:rgba(0, 0, 0, 0.482);
width: 100% ;
color: whitesmoke;
margin: 5px 0;
justify-content: space-between;
align-items: center;
border-radius: 34px;
}
.songItem img{
width:43px;
margin:0 23px 0;
border-radius: 28px;
}
.timestamp{
margin: 0 23px;
}
.timestamp i{
cursor: pointer;
}
.songInfo
{
position: absolute;
left: 10vw;
font-family: 'Kaushan Script', cursive;
}
.songInfo img
{
opacity: 0;
transition: opacity 0.3s ease-in;
}