Musik/static/musik.css

52 lines
637 B
CSS
Raw Normal View History

body {
margin: 0;
}
img {
max-width:100%;
max-height:100%;
}
#globalContainer {
2018-09-12 17:52:38 -04:00
display: flex;
flex-direction: column;
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;
}
#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
}
#playerContainer {
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;
}
#playerControls {
text-align: center;
2018-09-20 10:39:23 -04:00
padding-right: 0.5em;
padding-bottom: 0.5em;
}