nixos-config/configs/home-manager/foo-dogsquared/files/homepage/assets/scss/main.scss

58 lines
976 B
SCSS
Raw Normal View History

: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 {
--width: 30ch;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(var(--width), 1fr));
grid-template-rows: max-content;
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);
}
}
}
}