www/stylesheet.css
max 21d85a4c64
Add hyperlinks
Signed-off-by: Max Charrier <max@puffer.fish>
2025-04-21 02:22:11 +02:00

52 lines
944 B
CSS

:root {
--system-ui: 'comic_monobold', ui-monospace, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
}
body {
background-color: #f1e9df;
color: #89a06b;
margin: 30px 20%;
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
font-family: var(--system-ui);
font-size: 1.4em;
}
header {
align-self: center;
padding: 0 18%;
padding-bottom: 20px;
border-bottom: 1px solid #a89a8e;
}
h1 {
text-align: center;
font-size: 3.2rem;
letter-spacing: 0.5rem;
}
nav aside {
zoom: 60%;
}
nav aside a {
text-align: center;
font-family: var(--system-ui);
font-size: 1.2rem;
display: inline-block;
padding: 10px 20px;
background-color: #a89a8e;
color: black;
text-decoration: none;
border: none;
border-radius: 5px;
}
nav menu {
margin-top: 10px;
font-size: 1rem;
list-style-type: none;
}
footer {
align-self: center;
padding: 20px 18%;
border-top: 1px solid #a89a8e;
font-size: 0.8rem
}