Some stuff, idk

This commit is contained in:
Hazel Layne Aranda 2021-02-26 14:02:34 -05:00
parent 79100d3f86
commit 2e08cdb595
Signed by: hazelra
GPG key ID: 09213F100E5E4E67
7 changed files with 69 additions and 22 deletions

View file

@ -24,7 +24,9 @@ body {
padding: 1rem;
}
header {
code {
background-color: #454545;
padding: 0 0.25ch;
}
h1,
@ -32,6 +34,7 @@ h2,
h3 {
font-weight: bold;
font-size: 1em;
margin-bottom: 0;
}
h1.site-title {
@ -148,6 +151,21 @@ div.table-wrapper tr:nth-child(even) {
cursor: pointer;
}
#toc ol {
counter-reset: item;
list-style-type: none;
}
#toc li {
display: block;
color: var(--decoration);
}
#toc li:before {
content: counters(item, ".") " ";
counter-increment: item;
}
h1.post-title {
font-size: 1.5em;
border: none;
@ -159,3 +177,17 @@ p.post-date {
color: var(--decoration);
margin: 0;
}
p.post-desc {
margin-top: 0;
}
.flex {
display: flex;
flex-wrap: wrap;
}
.flex * {
margin-left: 1em;
margin-right: 1em;
}