Add a quiz editing page

This commit is contained in:
Oliver Akins 2022-01-19 23:37:27 -06:00
parent dd6e4ef0de
commit 9320fae179
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99
3 changed files with 188 additions and 0 deletions

52
docs/styles.css Normal file
View file

@ -0,0 +1,52 @@
.center {
text-align: center;
}
.full-width {
max-width: unset;
width: 90vw;
margin: 0 auto;
}
#app {
display: flex;
flex-wrap: wrap;
}
#app > div {
flex-grow: 1;
min-width: 350px;
max-width: 50%;
margin: 5px;
}
.options {
background: #1a242f;
border-radius: 7px;
padding: 5px 7px;
width: 45%;
}
.options > details[open] {
background: #1e2f3d;
border-radius: 5px;
margin: 5px;
padding: 5px 7px;
}
h2, h3, h4 {
margin: 0;
margin-bottom: 5px;
}
.preview {}
@media only screen and (max-width: 800px) {
#app > div {
max-width: unset;
}
.options {
width: unset;
}
}