forked from github/pelican
feat: yearly archives, restructure headings
This commit is contained in:
parent
bfed925127
commit
310fab5496
11 changed files with 120 additions and 19 deletions
|
|
@ -1185,6 +1185,10 @@ dd {
|
|||
color: #575279;
|
||||
}
|
||||
|
||||
.prose :where(th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
||||
color: #575279;
|
||||
}
|
||||
|
||||
/*This does not seem to affect prismjs which is good*/
|
||||
|
||||
code {
|
||||
|
|
@ -1235,6 +1239,50 @@ code {
|
|||
margin-left: 3.5rem;
|
||||
}
|
||||
|
||||
.-mb-4 {
|
||||
margin-bottom: -1rem;
|
||||
}
|
||||
|
||||
.mt-4 {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.-mb-2 {
|
||||
margin-bottom: -0.5rem;
|
||||
}
|
||||
|
||||
.-mb-1 {
|
||||
margin-bottom: -0.25rem;
|
||||
}
|
||||
|
||||
.mt-2 {
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.mt-8 {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.mt-12 {
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.mt-1 {
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
.mb-1 {
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.mb-2 {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.mt-6 {
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.block {
|
||||
display: block;
|
||||
}
|
||||
|
|
@ -1268,10 +1316,18 @@ code {
|
|||
width: 2rem;
|
||||
}
|
||||
|
||||
.list-outside {
|
||||
list-style-position: outside;
|
||||
}
|
||||
|
||||
.list-none {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.list-disc {
|
||||
list-style-type: disc;
|
||||
}
|
||||
|
||||
.grid-cols-1 {
|
||||
grid-template-columns: repeat(1, minmax(0, 1fr));
|
||||
}
|
||||
|
|
@ -1374,6 +1430,14 @@ code {
|
|||
padding-top: 5rem;
|
||||
}
|
||||
|
||||
.pt-4 {
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.pb-2 {
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
|
@ -1401,6 +1465,16 @@ code {
|
|||
line-height: 1.75rem;
|
||||
}
|
||||
|
||||
.text-2xl {
|
||||
font-size: 1.5rem;
|
||||
line-height: 2rem;
|
||||
}
|
||||
|
||||
.text-7xl {
|
||||
font-size: 4.5rem;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.font-bold {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
|
@ -2033,6 +2107,10 @@ code {
|
|||
color: #c4a7e7;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.dark\:prose-dark :where(th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
||||
color: #c4a7e7;
|
||||
}
|
||||
}
|
||||
|
||||
.hover\:no-underline:hover {
|
||||
|
|
@ -2079,6 +2157,16 @@ code {
|
|||
font-size: 1rem;
|
||||
line-height: 1.5rem;
|
||||
}
|
||||
|
||||
.md\:text-xl {
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.75rem;
|
||||
}
|
||||
|
||||
.md\:text-3xl {
|
||||
font-size: 1.875rem;
|
||||
line-height: 2.25rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue