what again

This commit is contained in:
Enstrayed
2024-12-24 19:52:48 -08:00
parent c900828ef7
commit a75bbe1b78
8 changed files with 0 additions and 0 deletions

65
website/static/index.css Normal file
View File

@@ -0,0 +1,65 @@
body {
margin: 0;
font-family: Consolas, monospace;
color: white;
background-color: black;
display: grid;
place-items: center;
row-gap: 5em;
padding: 6em 2em;
}
.flexcolumn {
display: flex;
flex-direction: column;
min-width: 20em;
gap: 2em;
}
.flexrow {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 2em;
}
.gap1em {
gap: 1em;
}
h1, h2, h3, h4 {
margin: 0;
margin-bottom: 0.5em;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
ul > li {
padding-bottom: 0.5em;
}
a, a:link {
color: #FF5A36;
}
a:hover {
color: #ff7f50;
}
@media (prefers-color-scheme: light) { /* Light Mode Support */
body {
background-color: white;
color: black;
}
a, a:link {
color: #B32100;
}
}

74
website/static/posts.css Normal file
View File

@@ -0,0 +1,74 @@
html {
display: grid;
place-content: center;
}
body {
margin: 2em 1em;
font-family: Consolas, monospace;
color: white;
background-color: black;
max-width: 80ch
}
a, a:link {
color: #FF5A36;
}
a:hover {
color: #ff7a5d;
}
code {
background: #222;
padding: 0.25rem;
font-family: Consolas, monospace;
}
pre code {
display: block;
overflow-x: auto;
white-space: pre-wrap;
background: #222;
padding: 1rem;
}
hr {
margin-top: 2em;
margin-bottom: 2em;
}
h2 {
margin: 0;
}
.inlineheader {
display: flex;
align-items: center;
margin-top: 2rem;
}
.inlineheader > h2, a {
margin-right: 1rem;
}
.inlineheader > span {
margin-right: 0.5rem;
padding: 0.2rem;
color: white;
background-color: #f06445;
}
@media (prefers-color-scheme: light) { /* Light Mode Support */
body {
background-color: white;
color: black;
}
a, a:link {
color: #B32100;
}
}