-
Notifications
You must be signed in to change notification settings - Fork 0
/
s.css
122 lines (115 loc) · 1.85 KB
/
s.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
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
body{
background: rgb(0, 0, 0);
color: white;
}
.left{
width: 25vw;
padding: 10px;
}
.right{
width: 75vw;
}
/* .home{
padding: 10px;
padding-left: 20px;
} */
.home ul li{
display: flex;
gap: 15px;
width: 14px ;
list-style: none;
padding-top: 14px;
font-weight: bold;
}
.heading{
display: flex;
gap: 15px;
width: 100% ;
list-style: none;
padding-top: 14px;
padding: 23px 14px;
font-weight: bold;
align-items: center;
font-size: 14px;
}
.heading img{
width: 20px;
}
.library{
min-height: 80vh;
position: relative;
}
.footer{
display: flex;
font-size: 10px;
gap: 10px;
position: absolute;
bottom: 0;
color: grey;
padding: 10px 0;
}
.footer a{
color: rgb(255, 255, 255);
}
.right{
position: relative;
padding: 16px 0 ;
}
.header{
display: flex;
justify-content: space-between;
background-color: rgb(65, 65, 65);
}
.header>*{
padding: 20px;
}
.spotifyPlaylists {
padding: 16px;
}
.spotifyPlaylists h1 {
padding: 16px;
}
.cardContainer {
margin: 30px;
display: flex;
gap: 10px;
flex-wrap: wrap;
overflow-y: auto;
max-height: 60vh;
}
.card {
width: 200px;
padding: 10px;
border-radius: 5px;
background-color: #252525;
position: relative;
transition: all .9s;
}
.card {
width: 200px;
padding: 10px;
border-radius: 5px;
background-color: #252525;
position: relative;
transition: all .9s;
}
.play {
width: 28px;
height: 28px;
background-color: #1fdf64;
border-radius: 50%;
padding: 4px;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
bottom: 88px;
right: 17px;
opacity: var(--a);
transition: all 1s ease-out;
}