server
Some checks failed
Build / build (push) Failing after 6m4s
Test / build (push) Failing after 6m33s

This commit is contained in:
Chuck Smith
2024-04-02 12:21:41 -04:00
parent 862119e90e
commit 4c9ec5aaaa
77 changed files with 1181 additions and 244 deletions

View File

@@ -0,0 +1,81 @@
@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%;
.top {
flex-basis: 50px;
background: #222;
font-size: 20px;
display: flex;
flex-direction: row;
b {
flex: 1;
padding-left: 20px;
line-height: 50px;
font-family: 'Ubuntu Mono', monospace;
}
span {
flex: 1;
text-align: right;
line-height: 50px;
color: #555;
padding-right: 20px;
font-family: 'Ubuntu Mono', monospace;
}
}
.bottom {
flex: 1;
display: flex;
flex-direction: row;
.left {
background: #383838;
width: 50%;
position: relative;
#code {
margin: 0; padding: 0;
font-size: 14px;
margin: 0; position: absolute;
top: 0; bottom: 0;
left: 0; right: 0;
}
}
.right {
width: 50%;
padding: 20px;
font-family: 'Ubuntu Mono', monospace;
p {
margin-top: 0;
}
.ide {
color: #555;
}
.msg {
color: #FFC107;
}
.msg-err {
color: #F44336;
}
}
}
}