gil.ink/scss/main.scss

48 lines
559 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
2025-05-16 17:34:51 -04:00
$font-sans: "Inter", sans-serif;
$font-disp: "Poppins", sans-serif;
2025-05-17 10:17:44 -04:00
$font-mono: "Hack", 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-17 10:17:44 -04:00
pre, code {
font-family: $font-mono;
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;
2025-05-17 10:17:44 -04:00
2025-04-29 23:20:54 -04:00
&: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;
width: min(1000px, 100vw);
2025-05-17 10:17:44 -04:00
margin: auto;
2025-04-29 23:20:54 -04:00
}