-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalbum.css
More file actions
101 lines (85 loc) · 1.84 KB
/
album.css
File metadata and controls
101 lines (85 loc) · 1.84 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
body.album {
background-image: url(../assets/images/blurred_backgrounds/blur_bg_3.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
background-size: cover;
}
.album-cover-art {
position: relative;
left: 20%;
margin-top: 1rem;
width: 60%;
}
.album-view-details {
position: relative;
top: 1.5rem;
padding: 1rem;
}
.album-view-details .album-view-title {
font-weight: 300;
font-size: 2rem;
}
.album-view-details .album-view-artist {
font-weight: 300;
font-size: 1.5rem;
}
.album-view-details .album-view-release-info {
font-weight: 300;
font-size: 0.75rem;
}
.album-view-song-list {
width: 90%;
margin: 1.5rem auto;
font-weight: 300;
font-size: 0.75em;
border-collapse: collapse;
}
.album-view-song-item {
height: 3rem;
border-bottom: 1px solid rgba(255,255,255,0.5);
}
.song-item-number {
width: 5%;
min-width: 30px;
}
.song-item-title {
width: 85%;
}
.song-item-duration {
width: 5%;
}
.album-song-button {
text-align: center;
font-size: 14px;
background-color: white;
color: rgb(210, 40, 123);
border-radius: 50% 50%;
display: inline-block;
width: 28px;
height: 28px;
}
.album-song-button:hover {
cursor: pointer;
color: white;
background-color: rgb(210, 40, 123);
}
.album-song-button span {
line-height: 28px;
}
@media (max-width: 640px) and (min-width: 320px) {
.album-view-details {
text-align: center;
}
.album-view-title {
margin-top: 0;
}
}
@media (max-width: 1024px) and (min-width: 320px) {
.album-view-song-list {
position: relative;
top: 1rem;
width: 80%;
margin: auto;
}
}