add home server core

This commit is contained in:
jonathan
2023-11-06 18:36:23 +10:30
parent 4cb849c424
commit 553773cca6
16 changed files with 1024 additions and 0 deletions

View File

@ -13,6 +13,8 @@
--header-text: #6a826a;
--border: #6a826a;
--accent: #aa5757;
/* this is actually bg laid over container at 12.5% transparency */
--code-bg: #ececde;
--content-column-width: 750px;
/* this width was 200 but i stretched it out to fit the gif */
@ -74,6 +76,23 @@ hr {
border-top: 2px solid var(--border);
}
code {
background-color: var(--code-bg);
padding: .1rem .3rem .2rem;
border-radius: .2rem;
word-wrap: break-word;
box-decoration-break: clone;
}
pre code {
display: block;
white-space: pre;
-webkit-overflow-scrolling: touch;
overflow-x: scroll;
max-width: 100%;
min-width: 100px;
}
body {
color: var(--text);
background: var(--bg);