2024-09-02 04:03:04 +00:00
|
|
|
:root {
|
|
|
|
height: 100%;
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
|
|
|
--background: var(--base00);
|
|
|
|
--foreground: var(--base05);
|
|
|
|
--accent-color: var(--base0C);
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
min-height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
background: var(--background);
|
|
|
|
}
|
|
|
|
|
|
|
|
#links {
|
2024-09-09 04:44:39 +00:00
|
|
|
--width: 30ch;
|
2024-09-02 04:03:04 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(var(--width), 1fr));
|
2024-09-09 04:44:39 +00:00
|
|
|
grid-template-rows: max-content;
|
2024-09-02 04:03:04 +00:00
|
|
|
gap: 0.5em;
|
|
|
|
|
|
|
|
section[id^="section-"] {
|
|
|
|
background: var(--foreground);
|
|
|
|
color: var(--background);
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
|
|
|
border: 0.5em solid var(--accent-color);
|
|
|
|
padding: 1rem;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
.nav-header {
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flavor-text {
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-style: italic;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--background);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--accent-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|