2023-11-27 20:51:38 +01:00
|
|
|
html, body {
|
2023-11-27 01:55:09 +01:00
|
|
|
background-color: #09101d;
|
|
|
|
color: #bbb;
|
2023-11-27 20:51:38 +01:00
|
|
|
height: 99%;
|
2023-11-27 01:55:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div {
|
|
|
|
border: 1px dashed white;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
background-color: #28374a;
|
|
|
|
color: #bbb;
|
|
|
|
}
|
|
|
|
|
2023-11-27 20:51:38 +01:00
|
|
|
input {
|
|
|
|
background-color: #28374a;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2023-11-29 15:59:07 +01:00
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
border-spacing: 0pt;
|
|
|
|
}
|
|
|
|
|
2023-11-29 16:00:37 +01:00
|
|
|
|
|
|
|
table tr:nth-child(odd) td {
|
|
|
|
background:#1e1f1a;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr:nth-child(even) td {
|
|
|
|
background:#171812;
|
|
|
|
}
|
|
|
|
|
2023-11-27 01:55:09 +01:00
|
|
|
#flexbox-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-11-27 20:51:38 +01:00
|
|
|
height: 100%;
|
2023-11-27 01:55:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#controls-top {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
#top-left-controls {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-11-27 20:51:38 +01:00
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#top-left-controls button {
|
|
|
|
text-align: left;
|
2023-11-27 01:55:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#playback-controls {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-11-27 20:51:38 +01:00
|
|
|
width: 160px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#queue-volume-controls {
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#queue-controls {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
#queue-xfade-control {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#queue-xfade-buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
#top-logo {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#top-logo-container {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sanic-logo {
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#xfade {
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#queue {
|
2023-11-29 15:59:07 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-11-27 20:51:38 +01:00
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#controls_bottom {
|
2023-11-28 10:47:48 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2023-11-27 20:51:38 +01:00
|
|
|
flex-grow: 2;
|
|
|
|
}
|
|
|
|
|
2023-11-28 10:47:48 +01:00
|
|
|
#playlist_controls {
|
2023-11-29 15:59:07 +01:00
|
|
|
background-color: #171812;;
|
|
|
|
/* flex-grow: 1; */
|
|
|
|
|
|
|
|
width: 20%; /* frickel? */
|
2023-11-28 10:47:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#playlist_tracklist {
|
2023-11-29 15:59:07 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
width: 80%; /* frickel? */
|
2023-11-28 10:47:48 +01:00
|
|
|
}
|
|
|
|
|
2023-11-27 20:51:38 +01:00
|
|
|
#footer {
|
|
|
|
text-align: right;
|
2023-11-27 01:55:09 +01:00
|
|
|
}
|