push
This commit is contained in:
Executable
+49
@@ -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;
|
||||
}
|
||||
Executable
+21
@@ -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;
|
||||
}
|
||||
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
.body #name {
|
||||
max-width: 400px;
|
||||
font-size: 24px;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.body #program {
|
||||
resize: vertical;
|
||||
}
|
||||
Reference in New Issue
Block a user