-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (118 loc) · 2.08 KB
/
style.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
body{
background-color: aliceblue;
}
*{
margin: 0;
padding: 0;
}
nav{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: bold;
}
nav ul{
display: flex;
justify-content: center;
align-items: center;
list-style-type: none;
height:60px;
background-color:black;
}
.clone img{
height: 60px;
width: auto;
}
.clone{
display: flex;
align-items: center;
}
nav ul li{
padding: 0 15px;
color:aliceblue
}
h1{
text-align: center;
padding: 30px 0;
}
.bottom{
position: sticky;
height:100px;
background-color:black;
bottom:0;
display:flex;
justify-content: center;
align-items: center;
color:blue;
flex-direction: column;
}
.cont{
min-height: 75vh;
background-color:black;
color: aliceblue;
display: flex;
width: 70%;
padding-left: 15px;
border-radius: 15px;
margin: 20px auto;
background-image: url('bg.jpg');
background-repeat: no-repeat;
background-position: right;
}
#myprogressbar{
width: 150vh;
height: 6px;
margin-bottom: 8px;
cursor: pointer;
}
.icones{
margin: 12px 0;
color:whitesmoke;
}
.songitem{
height: 50px;
width: 450px;
display: flex;
background-color: white;
color:black;
border-radius: 30px;
align-items: center;
margin: 16px 0;
}
.songitem img{
height:50px;
width: 65px;
margin-left: 15px;
margin-right: 10px;
border-radius: 8px;
}
.songlistplay{
position: sticky;
margin-right: 0;
}
.songName{
width: 150px;
text-align: center;
}
.left{
width:250px;
height:50px;
position: absolute;
left: 390px;
bottom:10px;
}
.right{
width:250px;
height: 50px;;
position: absolute;
right: 390px;
bottom:10px ;
}
.icones img{
opacity: 0;
transition:opacity 0.3s ease-in;
}
.sgif img{
height: 60px;
width: 120px;
opacity: 0;
transition:opacity 0.4s ease-in;
}