-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathTopTracksMobile.module.css
More file actions
61 lines (53 loc) · 962 Bytes
/
TopTracksMobile.module.css
File metadata and controls
61 lines (53 loc) · 962 Bytes
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
.container {
padding: 28px 20px;
user-select: none;
}
.tracks {
display: flex;
flex-wrap: wrap;
width: 100%;
justify-content: space-between;
}
.track {
width: 150px;
margin-bottom: 16px;
}
.artwork {
width: 150px;
height: 150px;
box-shadow: 0px 20px 20px -2px rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
margin-bottom: 8px;
transition: all 0.17s ease-in-out;
cursor: pointer;
}
.artworkImg {
width: 100%;
height: 100%;
object-fit: cover;
}
.artwork:hover {
transform: scale3d(1.04, 1.04, 1.04);
}
.artwork:active {
transform: scale3d(0.90, 0.90, 0.90);
}
.trackTitle {
text-align: center;
font-size: 12px;
line-height: 20px;
font-weight: bold;
letter-spacing: 0.285227px;
white-space: nowrap;
overflow-x: hidden;
text-overflow: ellipsis;
cursor: pointer;
}
.handle {
text-align: center;
font-weight: 500;
font-size: 12px;
line-height: 11px;
letter-spacing: 0.285227px;
}