33 lines
555 B
CSS
33 lines
555 B
CSS
@import url(https://fonts.bunny.net/css?family=dm-mono:400,400i,500,500i);
|
|
|
|
:root {
|
|
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;
|
|
}
|