-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjukebox-style.css
More file actions
137 lines (135 loc) · 2.28 KB
/
jukebox-style.css
File metadata and controls
137 lines (135 loc) · 2.28 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
}
.wrapper {
width: 100%;
height: 100%;
padding: 20px 30px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.wrapper-header {
width: 100%;
}
.header-title {
display: flex;
flex-direction: row;
align-items: center;
}
.title {
color: #55b2d4;
font-size: 13px;
font-weight: 700;
}
.subtitle {
padding-left: 5px;
font-size: 8px;
}
.divideLine {
width: 100%;
border-top: 1px solid gray;
}
.albumWrapper {
display: flex;
flex-direction: row;
justify-content: space-around;
padding-top: 12px;
}
.albumWrapper-item .album-thumbnail {
width: 120px;
height: 120px;
}
.albumWrapper-item .album-songtitle {
font-size: 11px;
font-weight: bold;
color: #0f465e;
display: flex;
flex-direction: row;
justify-content: center;
}
.albumWrapper-item .album-artist {
font-size: 10px;
font-weight: bold;
color: gray;
display: flex;
flex-direction: row;
justify-content: center;
}
.wrapper-body {
width: 100%;
}
.albumTable {
width: 100%;
padding-top: 8px;
border-spacing: 0;
}
.albumTable th {
background-color: #eee;
color: gray;
font-size: 10px;
height: 20px;
font-weight: bold;
border-top: 1px solid gray;
border-bottom: 1px dashed gray;
}
.albumTable td {
color: #0f465e;
font-size: 10px;
height: 20px;
border-bottom: 1px dashed gray;
}
.album-table-checkbox {
width: 5%;
text-align: center;
}
.album-table-number {
width: 10%;
text-align: center;
}
.album-table-song {
width: 45%;
text-align: left;
}
.fas {
display: inline-block;
margin-left: 85px;
margin-right: 5px;
width: 10px;
height: 11px;
line-height: 11px;
color: crimson;
border: 1px solid gray;
border-radius: 50%;
text-align: center;
}
.album-table-artist {
width: 30%;
text-align: center;
}
.albumTable-footer {
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: 10px;
padding-top: 10px;
}
.albumTable-footer button {
font-size: 8px;
color: gray;
padding: 2px 4px;
background: linear-gradient(180deg, #fff 0%, #eee 57%, #ddd 100%);
border: 1px solid gray;
border-radius: 3px;
cursor: pointer;
}
.albumTable-footer-center span {
color: crimson;
}