CodePlayground/assets/css/main.css

48 lines
620 B
CSS

html, body {
height: 100%;
}
body {
background: #0A3D62;
font-family: sans-serif;
font-size: 21px;
}
h1 {
color: white;
text-align: center;
}
#codeContainer {
display: block;
width: 80%;
margin: auto;
height: 500px;
}
#code {
position: relative;
height: 100%;
}
#runBtn {
background-color: #079992;
color: white;
display: block;
width: 80%;
margin: auto;
border: none;
margin-top: 10px;
line-height: 3rem;
}
#console {
color: white;
width: 80%;
margin: auto;
margin-top: 10px;
}
.error {
background-color: #FF0000;
color: white;
}
footer {
font-size: 10px;
color: white;
margin-top: 10px;
}