MojoFrontend/styles/cheat.css

47 lines
739 B
CSS
Raw Normal View History

2022-05-04 20:12:44 +00:00
.container {
display: flex;
justify-content: space-between;
2022-05-04 23:38:48 +00:00
height: 100vh;
2022-05-04 20:12:44 +00:00
}
.toolset {
display: flex;
flex-direction: column;
2022-05-05 01:16:56 +00:00
overflow-y: auto;
2022-05-04 20:12:44 +00:00
}
#panel {
margin-left: 3em;
display: flex;
flex-direction: column;
2022-05-05 01:16:56 +00:00
min-width: 70vw;
2022-05-04 23:38:48 +00:00
overflow-y: auto;
2022-05-04 20:12:44 +00:00
}
.commandGroup {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
2022-05-04 23:38:48 +00:00
padding-right: 0.5em;
2022-05-04 20:12:44 +00:00
}
2022-05-05 01:16:56 +00:00
.commandGroup>*:last-child {
/* margin-left: auto; */
margin-right: 0.5em;
}
.commandGroup input{
/* margin-left: 1em; */
margin-right: 1em;
}
2022-05-04 20:12:44 +00:00
hr.solid {
border-top: 1px solid #bbb;
margin-left: 1px;
margin-right: 1px;
margin-top: -5px;
margin-bottom: 8px;
}