-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathTopPlaylists.module.css
More file actions
102 lines (91 loc) · 1.64 KB
/
TopPlaylists.module.css
File metadata and controls
102 lines (91 loc) · 1.64 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
.title {
font-weight: bold;
font-size: 20px;
line-height: 25px;
color: var(--neutral);
margin-bottom: 28px;
text-align: left;
width: 100%;
padding: 28px 32px 0;
box-sizing: border-box;
}
.container {
min-height: 375px;
display: flex;
align-items: center;
user-select: none;
}
.playlists {
padding: 0 28px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.playlist {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px;
width: 100%;
border-top: 1px solid var(--neutral-light-8);
}
.playlist:hover, .playlist.active {
background: #393A54;
cursor: pointer;
}
.playlist .info {
display: flex;
align-items: center;
}
.playlist .artwork {
margin-left: 32px;
height: 56px;
width: 56px;
border-radius: 4px;
overflow: hidden;
flex-shrink: 0;
}
.artworkImg {
width: 100%;
height: 100%;
object-fit: cover;
}
.playlist .text {
min-width: 0;
flex-grow: 1;
flex-shrink: 1;
margin-left: 24px;
margin-right: 24px;
justify-self: flex-start;
}
.playlist .playlistTitle {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 20px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 8px;
cursor: pointer;
color: var(--neutral);
}
.playlist .handle {
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 20px;
color: var(--neutral-light-4);
}
.plays {
color: var(--neutral-light-4);
margin-right: 32px;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 20px;
flex-shrink: 0;
}