feat: init commit

This commit is contained in:
vicanso 2021-12-25 21:00:02 +08:00
commit ebc566fc9d
9 changed files with 1203 additions and 0 deletions

50
web/index.css Normal file
View file

@ -0,0 +1,50 @@
body {
font-family: BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
height: 100vh;
background-color: #242424;
}
.header {
height: 60px;
line-height: 60px;
color: #fff;
font-size: 16px;
background-color: #383838;
text-indent: 2em;
}
.codeWrapper {
position: fixed;
left: 0;
right: 50%;
top: 60px;
bottom: 50px;
background-color: #d6dbe3;
}
.previewWrapper {
position: fixed;
left: 50%;
right: 0;
top: 60px;
bottom: 50px;
}
.run {
display: block;
position: fixed;
left: 0;
right: 0;
bottom: 0;
height: 50px;
line-height: 50px;
background-color: #0052D9;
color: #fff;
text-align: center;
font-size: 16px;
text-decoration: none;
}
.run:active, .run:visited {
color: #fff;
}
svg {
display: block;
margin: 30px auto;
}