Add scribbles
All checks were successful
Deploy / deploy (push) Successful in 3s

This commit is contained in:
Marcel Kapfer 2025-01-31 22:04:40 +01:00
parent b36abcd3bf
commit 0d40b85f76
Signed by: mmk2410
GPG key ID: CADE6F0C09F21B09
13 changed files with 232 additions and 58 deletions

File diff suppressed because one or more lines are too long

View file

@ -414,6 +414,45 @@ main {
line-height: 35px;
}
}
.scribble {
&::after {
border-bottom: 1px solid var(--c-primary);
content: "";
display: block;
margin: 40px auto 0;
width: 80%;
@media (prefers-color-scheme: dark) {
border-bottom-color: var(--c-primary-inv);
}
}
&:last-of-type::after {
display: none;
}
&:last-child {
margin-bottom: 0;
}
h1, h2 {
font-size: 0.86rem;
font-weight: 300;
font-style: italic;
text-decoration: none;
a {
text-decoration: none;
}
}
@media screen and (max-width: 1100px) {
h1 {
padding-top: 20px;
}
}
}
}
footer {