Initial commit
All checks were successful
Build / build (push) Successful in 17s

This commit is contained in:
2025-12-14 16:48:50 +00:00
commit 97eb93d3af
29 changed files with 3127 additions and 0 deletions

48
static/favicon.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 23 KiB

175
static/global.css Executable file
View File

@@ -0,0 +1,175 @@
:root {
--background-color: #212529;
--text-color: #ededed;
--primary-color: #133b6e;
--accent-color: #dc7c28;
--link-color: #569cd6;
--border1-color: #dc7c28;
--border2-color: #3d444d;
}
body {
box-sizing: border-box;
background-color: var(--background-color);
color: var(--text-color);
font-family: sans-serif;
font-weight: 400;
line-height: 1.5;
margin: 0 auto;
}
html {
min-height: 100%;
scroll-behavior: smooth;
font-size: 100%;
} /* 16px */
h1 {
font-size: 1.802rem; /* 28.8px */
}
h2 {
font-size: 1.602rem; /* 25.6px */
}
h3 {
font-size: 1.424rem; /* 22.72px */
}
h4 {
font-size: 1.266rem; /* 20.32px */
}
h5 {
font-size: 1.125rem; /* 18.08px */
}
small {
font-size: 0.889rem; /* 14.24px */
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin-top: 24px;
margin-bottom: 10px;
color: var(--text-color);
line-height: 1.2;
font-weight: 700;
}
p {
margin-top: 8px;
}
ul,
ol {
list-style-position: inside;
padding-left: 0px;
}
ul ul {
list-style-type: disc;
padding-left: 20px;
}
table {
margin-bottom: 1rem;
width: 100%;
border-collapse: collapse;
}
td,
th {
padding: 0.25rem 0.5rem;
border-color: inherit;
border-style: solid;
border-width: 1px;
}
th {
text-align: left;
}
.container {
max-width: 600px;
width: 100%;
margin-right: auto;
margin-left: auto;
padding: 10px;
}
@media (min-width: 576px) {
.container {
width: 540px;
}
}
@media (min-width: 768px) {
.container {
width: 720px;
}
}
@media (min-width: 992px) {
.container {
width: 960px;
}
}
@media (min-width: 1200px) {
.container {
width: 1140px;
}
}
hr {
background-color: var(--border1-color);
}
blockquote {
border-left: 4px solid var(--border1-color);
margin-left: 0px;
padding-left: 10px;
}
a {
border-bottom: 2px solid transparent;
color: var(--link-color);
text-decoration: none;
}
a:hover {
border-bottom: 2px solid var(--link-color);
text-decoration: none;
}
main {
color: var(--text-color);
font-size: 1rem;
}
main img {
max-width: 100%;
}
/* Code highlighting */
figure {
margin: 0;
}
pre {
padding: 8px;
border: 1px solid var(--border2-color);
}
pre code {
overflow-x: scroll;
display: block;
border-radius: 0;
color: #e1e4e8;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
static/images/logo.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB