Added REPL example

This commit is contained in:
2022-08-26 01:28:02 +02:00
parent c93585ef70
commit 2e2cef3226
2 changed files with 52 additions and 0 deletions

19
repl/style.css Normal file
View File

@@ -0,0 +1,19 @@
body {
box-sizing: border-box;
background-color: #fff;
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 1em;
}
body > div {
background-color: #fff;
box-shadow: 0px 5px 10px #ccc;
padding: 1em;
margin: 1em;
flex: 0 40%;
min-height: 40vh;
}
body > div:last-of-type {
flex: 0 80%;
}