server
This commit is contained in:
66
internal/server/static/style.css
Normal file
66
internal/server/static/style.css
Normal file
@@ -0,0 +1,66 @@
|
||||
@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 */
|
||||
Reference in New Issue
Block a user