Initial commit

This commit is contained in:
Endeavorance 2025-05-24 13:19:39 -04:00
parent e473389c04
commit 86aa021db7
12 changed files with 402 additions and 1194 deletions

View file

@ -0,0 +1,104 @@
:root {
--color-bg: #1d1d1d;
--color-text: #eee;
--color-link: #fff;
--color-strong: #ff8f8f;
--color-emphasis: #ff8f00;
--color-heading: #accfff;
--font-size: 18px;
--font-family: Seravek, "Gill Sans Nova", Ubuntu, Calibri, "DejaVu Sans",
source-sans-pro, sans-serif;
--font-weight: 400;
--font-weight-bold: 500;
--line-height: 1.4;
--max-width: 700px;
}
body {
background-color: var(--color-bg);
color: var(--color-text);
font-size: var(--font-size);
font-family: var(--font-family);
font-weight: var(--font-weight);
line-height: var(--line-height);
}
article {
max-width: var(--max-width);
margin: 0 auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-family);
font-weight: var(--font-weight-bold);
color: var(--color-heading);
margin: 1rem 0;
}
h1 {
font-size: 3rem;
}
h2 {
font-size: 2.75rem;
}
h3 {
font-size: 2.15rem;
}
h4 {
font-size: 1.75rem;
}
h5 {
font-size: 1.5rem;
}
h6 {
font-size: 1.25rem;
}
em,
i {
color: var(--color-emphasis);
}
strong,
b {
color: var(--color-strong);
font-weight: var(--font-weight-bold);
}
a {
color: var(--color-link);
}
table {
border-collapse: collapse;
width: 100%;
margin: 1em 0;
font-size: 1em;
background-color: var(--color-bg);
color: var(--color-text);
border: 1px solid var(--color-text);
}
th,
td {
padding: 0.75em 1em;
text-align: left;
border-bottom: 1px solid var(--color-text);
}
th {
background: var(--color-bg);
font-weight: 500;
}