static: start of flexbox implementation

This commit is contained in:
coon 2023-11-27 01:55:09 +01:00
parent 32291bccb8
commit 39e9912d9a
3 changed files with 76 additions and 0 deletions

33
static/flexbox/sanic.css Normal file
View file

@ -0,0 +1,33 @@
body {
background-color: #09101d;
color: #bbb;
}
div {
border: 1px dashed white;
}
button {
background-color: #28374a;
color: #bbb;
}
#flexbox-container {
display: flex;
flex-direction: column;
}
#controls-top {
display: flex;
flex-direction: row;
}
#top-left-controls {
display: flex;
flex-direction: column;
}
#playback-controls {
display: flex;
flex-direction: column;
}