mirror of
https://github.com/CopterExpress/clever-show.git
synced 2026-05-27 07:29:33 +00:00
62 lines
829 B
CSS
62 lines
829 B
CSS
html, body, .my-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
height: calc(100% - 56px);
|
|
}
|
|
|
|
.my-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
}
|
|
|
|
.table-container {
|
|
height: calc(100% - 40px);
|
|
width: calc(70% - 40px);
|
|
padding: 20px;
|
|
}
|
|
|
|
.button {
|
|
margin: 10px;
|
|
}
|
|
|
|
.command-container {
|
|
height: 100%;
|
|
width: 30%;
|
|
}
|
|
|
|
.action-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
padding: 0 0 15px 20px;
|
|
}
|
|
|
|
.action-container .my-label {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.action-container .btn-group {
|
|
padding-top: 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
.btn-group button {
|
|
width: 100%;
|
|
}
|
|
|
|
.dropdown-menu div {
|
|
width: 200px;
|
|
}
|
|
|
|
.navbar img {
|
|
margin-left: 12px;
|
|
height: 40px;
|
|
width: auto;
|
|
cursor: pointer;
|
|
} |