added static_copy

This commit is contained in:
specCon18 2025-02-01 20:11:00 -05:00
parent 105f1eee29
commit 4a07aec860
6 changed files with 117 additions and 47 deletions

BIN
static/images/rivendell.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

93
static/index.css Normal file
View file

@ -0,0 +1,93 @@
body {
background-color: #0d1117;
color: #c9d1d9;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
line-height: 1.5;
margin: 0;
padding: 20px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
b {
font-weight: 900;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #58a6ff;
margin-top: 24px;
margin-bottom: 16px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
h3 {
font-size: 1.17em;
}
h4,
h5,
h6 {
font-size: 1em;
}
a {
color: #58a6ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul,
ol {
padding-left: 20px;
}
code {
background-color: #242424;
border-radius: 6px;
color: #d2a8ff;
padding: 0.2em 0.4em;
font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}
pre code {
padding: 0;
}
pre {
background-color: #242424;
border-radius: 6px;
padding: 0.2em 0.4em;
}
blockquote {
background-color: #242424;
border-left: 4px solid #30363d;
padding-left: 2em;
margin-left: 0;
padding-top: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
color: #8b949e;
}
img {
max-width: 100%;
height: auto;
border-radius: 6px;
}