This commit is contained in:
nitowa
2022-04-09 14:37:20 +02:00
commit 0086c95dc0
21 changed files with 5836 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
.body #input {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.body #input > input {
justify-self: center;
outline: none;
padding: 16px;
margin: 16px;
font-size: 24px;
border: 2px solid #2a2a2a;
width: 128px;
height: 64px;
border-radius: 16px;
text-align: center;
}
.body #output {
font-size: 24px;
text-align: center;
}
.body #output:empty {
display: none;
}
.body #output::before {
content: "Result:";
color: #2a2a2a;
padding-right: 0.5em;
}
.body #error {
font-size: 24px;
text-align: center;
color: #e21c1c;
}
.body #error:empty {
display: none;
}
.body #error::before {
content: "Error:";
color: #e94e4e;
padding-right: 0.5em;
}
+21
View File
@@ -0,0 +1,21 @@
body {
font-family: 'Oxygen';
}
.body {
display: flex;
max-width: 800px;
margin: auto;
flex-direction: column;
}
.body > * {
margin: 8px 0px;
}
.body .title {
justify-content: center;
display: flex;
flex-direction: row;
}
+9
View File
@@ -0,0 +1,9 @@
.body #name {
max-width: 400px;
font-size: 24px;
align-self: center;
}
.body #program {
resize: vertical;
}