-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
118 lines (111 loc) · 2 KB
/
index.css
File metadata and controls
118 lines (111 loc) · 2 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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
*{
margin: 0;
padding: 0;
}
body{
background-color: aliceblue;
}
nav{
height:10%;
border:2px solid black;
/* margin: 2px; */
}
.logo{
height:50px;
width:50px;
border-radius: 10px;
padding-left: 2px;
padding-right: 5px;
}
nav ul{
list-style-type: none;
display: flex;
background-color: black;
color:white;
gap: 15px;
align-items: center;
padding:3px;
}
nav li:hover{
color:lightblue;
}
.txt{
display: flex;
align-items: center;
font-weight: bolder;
font-size:1.2rem ;
padding: 2px;
}
.container{
min-height: 70vh;
color:white;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
background-color: black;
display: flex;
margin: 20px auto;
width:70%;
border-radius: 15px;
padding:30px;
}
.bottom{
position:sticky;
height:100px;
bottom: 0;
background-color: black;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#myProgressBar{
width: 75vw;
}
.icons{
color:white;
font-size: 1.5rem;
margin-top:10px;
}
.icons i{
cursor: pointer;
}
.songItemCont{
margin-top: 70px;
}
.songItem{
height:50px;
display:flex;
justify-content: space-between;
align-items: center;
color:black;
background-color:gainsboro;
/* width:80%; */
margin:12px 0 ;
border-radius: 35px;
}
.songItem img{
width: 43px;
margin: 0 23px;
border-radius: 34px;
}
.timestamp{
margin: 0 23px;
}
.timestamp i{
cursor: pointer;
}
.songInfo{
position: absolute;
left:12vw;
color: white;
}
.songInfo img{
opacity: 0;
transition: opacity 0.4s ease-in;
}
@media only screen and (max-width: 1100px) {
body {
background-color:lightcyan;
}
}