-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (92 loc) · 1.5 KB
/
style.css
File metadata and controls
100 lines (92 loc) · 1.5 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
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap');
body{
background-color: aquamarine;
}
*{
margin: 0;
padding: 0;
}
nav{
font-family: Playfair+Display;
}
nav ul{
display: flex;
list-style-type: none;
flex-wrap: wrap;
background-color:black;
height: 70px;
align-items: center;
color: white;
}
nav ul li{
padding: 0 10px;
}
.logo img{
height: 70px;
}
.logo{
display: flex;
align-items: center;
}
.bottom{
position: sticky;
height: 110px;
background-color:black;
display: flex;
justify-content: center;
align-items: center;
color: white;
flex-direction: column;
bottom: 0px ;
cursor: pointer;
}
.container{
min-height: 65vh;
display: flex;
background-color: black;
color: white;
width: 70%;
margin: 20px auto;
border-radius: 10px;
padding: 20px;
background-image: url('bg.jpg');
}
.icons{
margin-top: 10px;
}
#myprogress{
width: 80vw;
cursor: pointer;
}
.songitem{
height: 50px;
display: flex;
background-color: #ffffff;
color: black;
margin: 10px 0;
justify-content: space-between;
align-items: center;
border-radius: 20px;
width: 500px;
}
.songitem img{
width: 50px;
margin: 0 10px;
border-radius: 30px;
}
.time{
margin: 0 40px;
cursor: pointer;
}
.song{
margin: 10px 0;
margin-top: 30px;
}
.songinfo{
position: absolute;
left:10vw;
}
.songinfo img{
opacity: 0;
transition: opacity 1s ease-in;
}