basic content

This commit is contained in:
Aleks Rūtiņš 2024-09-09 12:12:42 -04:00
parent 3133275bcc
commit 057cca96d6
7 changed files with 114 additions and 30 deletions

View file

@ -1,14 +1,33 @@
@import url(https://fonts.bunny.net/css?family=dm-mono:400,400i,500,500i);
:root {
font-family:
system-ui,
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
Oxygen,
Ubuntu,
Cantarell,
"Open Sans",
"Helvetica Neue",
sans-serif;
font-family: "DM Mono", "Courier New", Courier, monospace;
background-color: beige;
}
body {
max-width: 700px;
padding: 20px;
margin: auto;
}
nav {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding: 20px;
gap: 15px;
}
nav a {
color: gray;
transition-property: color;
transition-duration: 0.5s;
text-decoration: none;
}
nav a:hover,
nav a.active {
color: black;
}