2018-09-20 10:00:07 -04:00
|
|
|
body {
|
|
|
|
margin: 0;
|
2019-01-11 11:27:25 -05:00
|
|
|
font-family: Helvetica, sans-serif;
|
2018-09-20 10:00:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width:100%;
|
|
|
|
max-height:100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#globalContainer {
|
2018-09-12 17:52:38 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-09-20 10:00:07 -04:00
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#titleContainer {
|
|
|
|
text-align: center;
|
2018-09-12 17:52:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#navigationContainer {
|
|
|
|
flex: auto;
|
|
|
|
overflow: auto;
|
|
|
|
border-top: 2px solid #ccc;
|
|
|
|
border-bottom: 2px solid #ccc;
|
|
|
|
}
|
|
|
|
|
2018-09-20 10:00:07 -04:00
|
|
|
#currentDirectory {
|
|
|
|
padding-left: 0.5em;
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:52:38 -04:00
|
|
|
#navItems {
|
|
|
|
list-style-type: none;
|
2018-09-12 13:04:00 -04:00
|
|
|
}
|
2018-09-20 10:00:07 -04:00
|
|
|
|
|
|
|
#playerContainer {
|
2019-01-11 11:27:25 -05:00
|
|
|
height: 30vh;
|
2018-09-20 10:00:07 -04:00
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#albumCover {
|
|
|
|
padding-right: 1em;
|
2018-09-20 10:39:23 -04:00
|
|
|
padding-left: 1em;
|
2019-01-11 11:27:25 -05:00
|
|
|
padding-bottom: 3px;
|
|
|
|
box-sizing: border-box;
|
2018-09-20 10:00:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#playerControls {
|
|
|
|
text-align: center;
|
2018-09-20 10:39:23 -04:00
|
|
|
padding-right: 0.5em;
|
|
|
|
padding-bottom: 0.5em;
|
2018-09-20 10:00:07 -04:00
|
|
|
}
|