mirror of
https://github.com/Noratrieb/brainfuck.git
synced 2026-01-16 22:35:03 +01:00
interpreter
This commit is contained in:
parent
b30fa04dcc
commit
e815fd8c66
8 changed files with 647 additions and 19 deletions
|
|
@ -1,3 +1,7 @@
|
|||
$main-color: #282c34;
|
||||
$main-color-brighter: #323942;
|
||||
$font-color: ghostwhite;
|
||||
|
||||
.App {
|
||||
text-align: center;
|
||||
}
|
||||
|
|
@ -8,16 +12,48 @@
|
|||
}
|
||||
|
||||
.App-header {
|
||||
background-color: #282c34;
|
||||
background-color: $main-color;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: calc(10px + 2vmin);
|
||||
color: white;
|
||||
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue