cxgraph/style.css

38 lines
325 B
CSS
Raw Normal View History

2023-05-20 00:34:08 +00:00
* {
margin: 0;
padding: 0;
}
body {
height: 100%;
overflow: hidden;
}
#main {
min-height: 100vh;
display: flex;
flex-direction: column;
}
#header {
height: 50px;
}
#content {
display: flex;
flex: 1;
width: 100vw;
}
#sidebar {
flex: 1;
}
#canvas_container {
flex: 3;
}
canvas {
background-color: black;
}