gil.ink/scss/main.scss

49 lines
564 B
SCSS
Raw Normal View History

2025-05-12 02:31:17 -04:00
@use "theme";
2025-04-29 23:20:54 -04:00
@use "font";
2025-05-12 02:31:17 -04:00
@use "mixins/media";
@use "pages/about";
@use "pages/home";
2025-04-29 23:20:54 -04:00
$font-sans: "Inclusive Sans", sans-serif;
2025-05-12 02:31:17 -04:00
$font-disp: "Kurale", serif;
$font-mono: monospace;
2025-04-28 01:49:10 -04:00
body {
2025-04-29 23:20:54 -04:00
font-family: $font-sans;
2025-04-28 01:49:10 -04:00
}
2025-04-29 23:20:54 -04:00
h1,
h2,
h3,
h4,
h5,
h6 {
2025-05-12 02:31:17 -04:00
font-family: $font-disp;
2025-05-01 14:24:16 -04:00
}
2025-05-12 02:31:17 -04:00
a:hover {
text-decoration-thickness: 3px;
2025-05-01 14:24:16 -04:00
}
2025-04-29 23:20:54 -04:00
2025-05-12 02:31:17 -04:00
.monospace {
font-family: $font-mono;
2025-04-29 23:20:54 -04:00
}
#skip-navigation {
position: fixed;
top: -100%;
right: 0;
&:focus {
top: 0;
}
2025-04-28 01:49:10 -04:00
}
2025-05-12 02:31:17 -04:00
.site {
display: flex;
flex-direction: column;
2025-04-28 01:49:10 -04:00
2025-05-12 02:31:17 -04:00
width: min(1000px, 100vw);
2025-05-01 14:24:16 -04:00
2025-05-12 02:31:17 -04:00
margin: 1em auto;
2025-04-29 23:20:54 -04:00
}