-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathindex.module.css
More file actions
93 lines (80 loc) · 1.63 KB
/
index.module.css
File metadata and controls
93 lines (80 loc) · 1.63 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
.containerPlaybackQueue {
border-radius: 12px;
border: 1px solid rgb(from var(--white-color) r g b / 0.13);
padding-top: 32px;
padding-left: 12px;
box-sizing: border-box;
}
.title {
overflow: hidden;
color: var(--grey-color-0);
text-overflow: ellipsis;
font-family: Inter;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 83.333% */
}
.metadata {
overflow: hidden;
color: var(--grey-color-4);
text-overflow: ellipsis;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.itemNumber {
color: var(--grey-color-4);
text-align: center;
font-family: Inter;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 18px; /* 150% */
flex-shrink: 0;
width: 27px;
cursor: pointer;
}
.itemNumber:hover {
color: var(--white-color);
}
.itemTitle {
overflow: hidden;
color: var(--grey-color-3);
text-overflow: ellipsis;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 18px; /* 128.571% */
cursor: pointer;
height: 2.4em;
}
.itemAuthor {
color: var(--grey-color-4);
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
cursor: pointer;
}
.itemDrag {
position: relative;
}
.itemDrag div {
transition: opacity 0.15s ease;
opacity: 1;
}
.itemDrag:hover div {
opacity: 0;
}
.itemDrag .iconDrag {
transition: opacity 0.15s ease;
opacity: 0;
}
.itemDrag:hover .iconDrag {
opacity: 1;
}