-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
127 lines (111 loc) · 1.97 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Ubuntu&display=swap');
body{
background-color:darkgray;
}
*{
margin: 0;
padding: 0;
}
nav{
font-family: 'Ubuntu', sans-serif;
}
nav ul{
height:3.2vw;
list-style-type: none;
background-color: black;
display: flex;
color:white;
align-items:center;
}
nav ul li{
padding:1.5vw;
}
.logo img{
margin-top: .25vw;
width:2.9vw;
height: auto;
padding: 0.1vw;
}
.logo{
display: flex;
align-items: center;
font-weight: bold;
font-size: 1.2rem;
}
.container{
min-height: 65vh;
background-color: black;
color: white;
font-family:'Josefin','sans sarif';
display: flex;
margin: 23px auto;
width:70%;
border-radius:12px;
padding:15px;
background-image: url(bgr.jpg);
background-size: 75vw;
background-repeat: no-repeat;
}
.bottom{
height: 6vw;
position: sticky;
background-color: black;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
color:white;
flex-direction: column;
}
#myProgressBar{
width: 80vw;
text-align:left;
cursor: pointer;
}
.icons{
margin-top: .4vw;
}
.icons i{
cursor: pointer;
}
.Songlist{
margin-bottom: 10px;
}
.songItem {
height: 25px;
display: flex;
background-color: white;
width: auto;
color: black;
align-items: left;
margin: 12px 0;
justify-content: space-between;
align-items: center;
border-radius: 4vw;
}
.songItem img{
height: 25px;
width:2vw;
margin-left: 0px;
border-radius:34px;
}
.Timestamp{
margin-right:10px ;
padding: 5px;
}
.Timestamp i{
cursor: pointer;
}
.songName{
margin: 0 8px;
}
.songInfo{
position:absolute;
left:10vw;
font-family:'Josefin','sans sarif';
}
.songInfo img{
opacity:0;
transition: opacity 0.4s ease-in;
}