1
0
Fork 0
forked from CRSS/Website
Website-fixver/css/src/_fonts.scss

49 lines
1.1 KiB
SCSS
Raw Normal View History

2024-06-09 13:47:59 +00:00
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Noto+Color+Emoji&family=Noto+Emoji:wght@300..700&family=Noto+Sans+Mono:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');
2023-11-26 21:40:10 +00:00
body, input {
2024-06-09 13:47:59 +00:00
font-family: 'Noto Sans', 'Noto Color Emoji', 'Noto Emoji', sans-serif;
}
code, pre, kbd {
font-family: 'Noto Sans Mono', 'Noto Color Emoji', 'Noto Emoji', sans-serif;
2023-09-14 19:47:02 +00:00
}
2024-06-09 13:47:59 +00:00
$headers: (
h1: 1.95rem,
h2: 1.5rem,
h3: 160%,
h4: 140%,
h5: 120%,
h6: 110%
);
2023-09-14 19:47:02 +00:00
h1, h2, h3, h4, h5, h6 {
2024-06-09 13:47:59 +00:00
font-family: 'Outfit', 'Noto Color Emoji', 'Noto Color Emoji', 'Noto Emoji', sans-serif;
2023-11-26 21:40:10 +00:00
font-weight: 500;
2024-06-09 13:47:59 +00:00
line-height: 1.7;
}
@each $tag, $size in $headers {
#{$tag} {
font-size: $size;
margin-bottom: 1rem;
}
}
p, ol, ul, label, a {
font-size: 1rem;
line-height: 1.7;
}
2024-06-10 19:38:49 +00:00
p:not(:last-child), ol:not(li > ol, li > ul, :last-child), ul:not(li > ol, li > ul, :last-child) {
2024-06-09 13:47:59 +00:00
margin-bottom: 1rem;
2023-11-26 21:40:10 +00:00
}
2023-09-14 19:47:02 +00:00
2024-06-09 13:47:59 +00:00
/*
2023-11-26 21:40:10 +00:00
.pageHero {
2024-06-09 13:47:59 +00:00
font-family: 'Comic Neue', 'Comic Sans MS', 'Noto Color Emoji', 'Noto Emoji', sans-serif;
2023-11-26 21:40:10 +00:00
}
2024-06-09 13:47:59 +00:00
*/