the fuckging uhhh thingy layout with padding yeah

This commit is contained in:
zoe 2022-04-12 20:08:26 +02:00
parent f62a00c10f
commit 7e8352b90e
4 changed files with 40 additions and 11 deletions

View File

@ -105,3 +105,15 @@ article {
background-color: $dark-bg; background-color: $dark-bg;
border-color: $dark-bg-alt; border-color: $dark-bg-alt;
} }
article h2,
article h3{
background-color: $dark-bg-alt;
color: $dark-bg;
}
article.light h2,
article.light h3{
background-color: $light-bg-alt;
color: $light-bg;
}

View File

@ -1,7 +1,7 @@
$huge: 42pt; $huge: 42pt;
$large: 24pt; $large: 32pt;
$big: 20pt; $big: 24pt;
$medium: 16pt; $medium: 18pt;
$small: 12pt; $small: 12pt;
@font-face { @font-face {
@ -23,12 +23,25 @@ h1 {
font-size: $huge; font-size: $huge;
} }
h2 {
font-size: $huge;
font-style:bold;
}
h3, h4 {
font-size: $large;
}
h5 h6 {
font-size: $big;
}
a { a {
text-decoration: none; text-decoration: none;
} }
footer * { footer * {
font-size: $large; font-size: $big;
font-family: CaskaydiaCoveMono; font-family: CaskaydiaCoveMono;
} }

View File

@ -18,7 +18,14 @@ footer {
#content { #content {
min-height: calc(100% - 42pt * 3); min-height: calc(100% - 42pt * 3);
right: auto; right: auto;
padding: 42pt; padding-bottom: 84pt;
}
#content p,
#content ul,
#content ol,
#content table{
padding-inline: 4em;
} }
#footer-left { #footer-left {
@ -71,9 +78,11 @@ footer {
align-items: center; align-items: center;
} }
h2, h3, h4, h5, h6 {
margin-top: 1em;
}
article { article {
margin-top: 42pt; margin-top: 42pt;
margin-inline: auto; margin-inline: auto;
padding: 4em;
} }

View File

@ -62,11 +62,6 @@ input:checked + label::after{
border-style: solid; border-style: solid;
} }
article {
border-style: solid;
border-radius: $radius;
}
.togglelabel{ .togglelabel{
border: solid; border: solid;
} }