added FAQ, Changelog, and Support static pages

This commit is contained in:
2020-05-10 22:55:16 -05:00
parent 5d37f26585
commit 7932db90d5
9 changed files with 265 additions and 24 deletions

View File

@ -26,18 +26,24 @@ a:hover, a:active, a:visited {
color: #b5bd68;
}
header {
nav .nav-row {
display: flex;
justify-content: space-between;
margin: 2rem 0;
}
nav .nav-row:last-child {
justify-content: center;
}
nav .nav-row:last-child a, nav .nav-row:last-child div {
margin: 0 1em;
}
.flash {
color: rgb(173, 74, 8);
font-weight: bold;
text-align: center;
border: 1px dashed rgb(173, 74, 8);
border-radius: 2em;
border-radius: 0.5em;
margin-bottom: 2em;
padding: 1em;
}
@ -45,6 +51,7 @@ header {
main {
border: 1px dashed #bdc7b8;
padding: 1rem;
margin-bottom: 2em;
}
.hero {
@ -54,7 +61,7 @@ main {
}
.single-content {
margin: 4rem 0;
margin: 2rem 0;
}
form {
@ -79,7 +86,7 @@ input {
input[type=text] {
font: calc(0.40rem + 1vmin) monospace;
border: 0;
border-bottom: 2px solid #777e73;
border-bottom: 1px solid #777e73;
min-width: 20em;
outline: 0;
}
@ -100,7 +107,15 @@ h1, h2, h3, h4, h5 {
}
ul li {
margin-bottom: 1em;
margin: 0.5em 0;
}
.code {
display: inline-block;
padding: 0.5em 2em;
border-radius: 0.5em;
border: 1px solid #777e73;
background: #bdc7b810;
}
footer, p {