44 lines
529 B
CSS
44 lines
529 B
CSS
body {
|
|
margin: 0;
|
|
font-family: Helvetica, sans-serif;
|
|
}
|
|
|
|
img {
|
|
max-height: 30vh;
|
|
}
|
|
|
|
#globalContainer {
|
|
height: 100vh;
|
|
display: grid;
|
|
grid-template-rows: auto 1fr auto;
|
|
}
|
|
|
|
#titleContainer {
|
|
text-align: center;
|
|
}
|
|
|
|
#navigationContainer {
|
|
display: flex;
|
|
border-top: 2px solid #ccc;
|
|
border-bottom: 2px solid #ccc;
|
|
}
|
|
|
|
.list {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
#playerContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
#albumCover {
|
|
padding-right: 1em;
|
|
}
|
|
|
|
#playerControls {
|
|
text-align: center;
|
|
padding-bottom: 0.5em;
|
|
}
|