mirror of
https://github.com/CopterExpress/clever-show.git
synced 2026-05-27 07:29:33 +00:00
36 lines
446 B
CSS
36 lines
446 B
CSS
html, body, .container {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
padding: 20px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.table-container {
|
|
height: 100%;
|
|
width: 70%;
|
|
}
|
|
|
|
.button {
|
|
margin: 10px;
|
|
}
|
|
|
|
.command-container {
|
|
height: 100%;
|
|
width: 30%;
|
|
}
|
|
|
|
.action-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.action-container button {
|
|
margin: 10px;
|
|
} |