This commit is contained in:
fzorb 2025-03-06 12:45:26 +02:00
parent f25c5cb60c
commit 3475c31d71
38 changed files with 158 additions and 359 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -0,0 +1,33 @@
body {
background: #221c1c;
color: #fdfaff;
font-family: Serif;
}
a {
color: #FFB2C6ED;
}
.links {
text-align: center;
}
.content {
max-width: 550px;
text-align: justified;
margin: 0 auto;
}
.row {
display: grid;
grid-template-columns: 50% 50%;
gap: 0px 2px;
grid-auto-flow: row;
grid-template-areas:
"one two";
}
.one { grid-area: one; }
.two { grid-area: two; }