personal-site/css/style.css

45 lines
593 B
CSS
Raw Normal View History

2024-05-16 21:23:54 +00:00
html {
box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p, a, label, button, input, select, td {
font-family: monospace;
}
body {
2024-10-07 21:42:25 +00:00
min-height: 100vh;
max-width: 100vw;
display: grid;
grid-template-rows: auto 1fr auto;
}
main {
padding-left: 32px;
padding-right: 32px;
2024-05-16 21:23:54 +00:00
}
header {
margin-top: 50px;
text-align: center;
}
h1 a {
text-decoration: none;
}
nav {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
column-gap: 4ch;
justify-content: center;
}
nav a {
text-decoration: none;
font-size: larger;
}
2024-10-07 21:42:25 +00:00
nav a[aria-current="page"] {
text-decoration: underline;
2024-05-16 21:23:54 +00:00
}