Files
monkey/internal/server/static/style.css
Chuck Smith 4c9ec5aaaa
Some checks failed
Build / build (push) Failing after 6m4s
Test / build (push) Failing after 6m33s
server
2024-04-02 12:21:41 -04:00

66 lines
1.4 KiB
CSS

@import url("//fonts.googleapis.com/css?family=Ubuntu+Mono");
html, body {
background: #333;
font-size: 16px;
color: #FFF;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden; }
.layout {
display: flex;
flex-direction: column;
width: 100%;
height: 100%; }
.layout .top {
flex-basis: 50px;
background: #222;
font-size: 20px;
display: flex;
flex-direction: row; }
.layout .top b {
flex: 1;
padding-left: 20px;
line-height: 50px;
font-family: 'Ubuntu Mono', monospace; }
.layout .top span {
flex: 1;
text-align: right;
line-height: 50px;
color: #555;
padding-right: 20px;
font-family: 'Ubuntu Mono', monospace; }
.layout .bottom {
flex: 1;
display: flex;
flex-direction: row; }
.layout .bottom .left {
background: #383838;
width: 50%;
position: relative; }
.layout .bottom .left #code {
margin: 0;
padding: 0;
font-size: 14px;
margin: 0;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0; }
.layout .bottom .right {
width: 50%;
padding: 20px;
font-family: 'Ubuntu Mono', monospace; }
.layout .bottom .right p {
margin-top: 0; }
.layout .bottom .right .ide {
color: #555; }
.layout .bottom .right .msg {
color: #FFC107; }
.layout .bottom .right .msg-err {
color: #F44336; }
/*# sourceMappingURL=style.css.map */