-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (107 loc) · 1.95 KB
/
style.css
File metadata and controls
126 lines (107 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
117
118
119
120
121
122
123
124
125
126
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
body{
background-color: red;
}
h1{
font-family: "Varela Round", sans-serif;
}
*{
margin:0;
padding:0;
}
nav{
font-family: "Varela Round", sans-serif;
font-weight: 400;
font-style: normal;
color: aliceblue;
}
nav ul li{
padding: 0 12px
}
.brand img{
border-radius: 120px;
height: 60px;
padding: 0 8px ;
}
nav ul{
display:flex;
list-style-type: none;
height: 65px;
background-color: black;
align-items: center;
}
.brand{
display: flex;
align-items: center;
font-weight:bold ;
font-size: 1,3rem;
}
.container{
min-height: 62vh;
background-color: black;
color: white;
font-family: "Varela Round", sans-serif;
display: flex;
margin: 23px auto;
width:70%;
border-radius: 12px;
padding :30px;
background-image: url('bg.jpg');
}
.bottom{
position:sticy;
height:120px;
background-color: black;
color: white;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.icons{
margin: 20px 0;
}
.icons i{
cursor: pointer;
}
#myProgressBar{
width:80vw;
text-align:center;
cursor: pointer;
border-radius: 10px;
animation: range 40px; ;
}
.songItemContainer{
margin-top: 50px;
}
.songItem{
height: 40px;
display: flex;
justify-content: space-around;
align-items: center;
width: 90%;
font-family: "Varela Round", sans-serif;
background-color: white;
border-radius:10px ;
color:black;
margin:12px 0;
text-wrap: wrap;
}
.songItem img{
height: 30px;
border-radius: 25px;
justify-content: left;
}
.songlistplay{
cursor: pointer;
}
.songInfo{
position: absolute;
left: 10vw;
align-items: center;
font-family: "Varela Round", sans-serif;
}
.songInfo img{
opacity :0;
transition: opacity 0.5s ease-in;
}