Musik/static/musik.css

56 lines
745 B
CSS
Raw Normal View History

body {
margin: 0;
2019-01-11 11:27:25 -05:00
font-family: Helvetica, sans-serif;
}
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;
2019-02-04 10:06:58 -05:00
display: flex;
flex-direction: row;
height: 100%;
2018-09-12 17:52:38 -04:00
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
}
2019-02-05 11:23:41 -05:00
.list {
2019-02-04 10:06:58 -05:00
height: 100%;
width: 100%;
2018-09-12 13:04:00 -04:00
}
#playerContainer {
2019-01-11 11:27:25 -05:00
height: 30vh;
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;
}
#playerControls {
text-align: center;
2018-09-20 10:39:23 -04:00
padding-right: 0.5em;
padding-bottom: 0.5em;
}