Scorch/static/scorch.css

54 lines
618 B
CSS
Raw Normal View History

2020-06-15 09:57:23 -04:00
body {
2020-06-16 08:58:47 -04:00
font-family: Helvetica, sans-serif;
2020-06-15 09:57:23 -04:00
height: 100vh;
margin: 0;
padding: 8px;
box-sizing: border-box;
}
2020-06-16 09:58:00 -04:00
img {
2020-06-16 10:11:38 -04:00
max-height: 30vh;
2020-06-16 09:58:00 -04:00
}
2020-06-15 09:57:23 -04:00
main {
height: 100%;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: auto 1fr auto;
grid-template-areas:
"h h h"
"a b c"
"f f f";
}
#header {
grid-area: h;
}
.list {
height: 100%;
width: 100%;
}
#artistListContainer {
grid-area: a;
}
#albumListContainer {
grid-area: b;
}
#trackListContainer {
grid-area: c;
}
#playerContainer {
grid-area: f;
display: flex;
justify-content: center;
}
2020-06-16 10:11:38 -04:00
#albumCover {
padding-right: 1em;
}