1
0
Fork 0
This commit is contained in:
Henri Saudubray 2024-05-06 17:08:33 +02:00
parent d1434116a9
commit 0bb607e404
3 changed files with 33 additions and 8 deletions

View file

@ -4,6 +4,7 @@
--ln-color: #FFFF00;
--ln-color-visited: #FFAA00;
}
html {
display: flex;
width: 100vw;
@ -12,21 +13,45 @@ html {
font-size: 1em;
font-family: monospace, "Cascadia Code", monospace;
}
body {
width: 80ch;
height: 100vh;
margin: 0;
}
#who { text-align: center; padding-top: 1lh; }
#bio { padding: 1lh 0; }
a { color: var(--ln-color); }
a:visited { color: var(--ln-color-visited); }
#who {
text-align: center;
padding-top: 1lh;
}
#bio {
padding: 1lh 0;
}
a {
color: var(--ln-color);
}
a:visited {
color: var(--ln-color-visited);
}
ul {
list-style-type: '- ';
padding-left: 4ch;
margin-top: 1lh;
margin-bottom: 1lh;
}
.section-title { text-decoration: underline; }
.footer-ws { max-height: use-available; }
footer { text-align: center; }
.section-title {
text-decoration: underline;
}
.footer-ws {
max-height: use-available;
}
footer {
text-align: center;
}