blob: 665eb767a1901a06a601760cb05e16de1a29731b (
plain)
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 {
background-color: #1c1c1c;
color: #e8e7d5;
}
a {
color: #d478e0;
}
h1,h2,h3,h4 {
color: #ff9430;
}
button {
background: #1c1c1c;
color: #ff9430;
border: 1px solid #ff9430;
margin-left: 2px;
margin-right: 2px;
}
button:hover {
cursor: pointer;
}
.center {
text-align: center;
}
.row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-content: baseline;
}
.column {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-content: baseline;
}
.centered-column {
display: grid;
grid-template-columns: 1fr minmax(300px,500px) 1fr;
padding: 10px;
column-gap: 40px;
}
.four-column > div {
max-width: 50%;
}
.track-list-item:hover {
cursor: pointer;
background-color: #454545;
}
.player {
display: flex;
justify-content: space-evenly;
width: 100%;
flex-wrap: wrap;
}
.now-playing {
display: flex;
width: 300px;
flex-direction: column;
}
.controls {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.controls button {
font-size: 2em;
width: -moz-available;
width: -webkit-fill-available;
width: stretch;
}
.now-playing-track {
background-color: #454545;
}
.playlist-display {
margin-top: 2em;
width: auto;
display: flex;
flex-direction: column;
height: 600px;
overflow-y: auto;
}
|