brainfuck/ibfi-ts/src/App.scss
2021-06-23 17:01:15 +02:00

59 lines
No EOL
800 B
SCSS

$main-color: #282c34;
$main-color-brighter: #323942;
$font-color: ghostwhite;
.App {
text-align: center;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
.App-header {
background-color: $main-color;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: $font-color;
}
.App-link {
color: #61dafb;
}
.bf-input {
.code-input {
resize: none;
width: 80vw;
height: 400px;
font-size: 100px;
}
}
.bf-run {
margin: 20px;
button {
height: 50px;
width: 200px;
}
}
.bf-output {
.output-area {
resize: none;
width: 80vw;
height: 200px;
font-size: 20px;
}
}
textarea {
background-color: $main-color-brighter;
color: $font-color;
}