This commit is contained in:
Barrett Ruth 2025-11-10 23:56:05 -05:00
parent a52dfa653f
commit 27df944944
3 changed files with 24 additions and 17 deletions

View file

@ -217,6 +217,7 @@ footer {
display: flex;
justify-content: center;
flex: 1;
width: 100%;
}
a {
@ -234,6 +235,14 @@ li {
background-size: 3vw 3vw;
}
html:has(body.graph-background) {
background-image:
linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
background-size: 3vw 3vw;
background-color: var(--bg);
}
.terminal-cursor {
display: inline-block;
width: 10px;

View file

@ -5,6 +5,7 @@ body {
overscroll-behavior: none;
height: 100vh;
overflow: hidden;
overflow-x: hidden;
}
.content {
@ -73,12 +74,12 @@ ul {
@media (max-width: 768px) {
.topics {
font-size: 1.8em;
font-size: 2em;
padding: 0 20px;
}
.posts {
font-size: 1.8em;
font-size: 1.47em;
padding: 0 20px;
}

View file

@ -3,16 +3,14 @@ li {
}
.post-wrapper {
display: flex;
width: 100%;
justify-content: center;
align-items: flex-start;
position: relative;
}
.toc-column {
position: absolute;
left: calc(50% - 400px - 4rem - 200px);
left: 2rem;
top: 0;
width: 200px;
padding-top: 190px;
}
@ -24,6 +22,7 @@ li {
.post-container {
width: 65%;
max-width: 800px;
margin: 0 auto;
}
.post-title {
@ -163,26 +162,24 @@ article pre {
.toc-column {
display: none;
}
.post-container {
width: 80%;
}
}
@media (max-width: 768px) {
.post-container {
width: 85%;
}
.post-title {
font-size: 3em;
font-size: 1.8em;
margin: 30px 0;
}
.post-meta {
font-size: 1.6em;
font-size: 1.2em;
margin-left: 50px;
}
.post-article {
font-size: 1.3em;
}
.post-container {
width: 90%;
font-size: 1.1em;
}
}