-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
94 lines (76 loc) · 1.52 KB
/
style.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
#wrapper-main {
color: white;
}
#sidebar-left {
background-color: #2D2E37;
padding: 16px;
}
#wrapper-right {
background-color: #1C1A24;
}
#box-center-wrapper {
background-color: #2D2E37;
}
/* Box center */
#box-center {
background-color: #1C1A24;
border-radius: 50px 0 0 50px;
}
#box-center .header-title {
font-size: 25px;
font-weight: bold;
color: white;
}
/* Sidebar Right */
#wrapper-sidebar-right {
background-color: #1C1A24;
}
#sidebar-right {
padding: 0 30px;
background-color: #2D2E37;
border-radius: 50px 0 0 50px;
}
#sidebar-right .header-title {
font-size: 25px;
font-weight: bold;
}
/* Music list box */
#music-list-box {
background-color: #1C1A24;
}
/* Music item */
#music-item #title {
font-size: 18px;
color: #fff;
}
#music-item #artist {
color: #757578;
font-size: 12px;
}
/* Cover wrapper */
#cover-wrapper {
background-position: center;
background-size: 80px;
background-repeat: no-repeat;
border-radius: 16px;
}
/* playlist item */
#library-list {
background-color: inherit;
}
#playlist-item {
background-color: inherit;
}
.playlist #title {
font-size: 20px;
color: #fff;
}
.playlist #playlist-liked #cover-wrapper {
background-color: #727AC5;
background-size: auto;
background-image: url("./images/icons/playlist-icon.png");
}
.playlist #type-text {
color: #757578;
font-size: 12px;
}