home/sass/mods.scss

42 Zeilen
927 B
SCSS

2024-12-20 03:13:56 +01:00
body {
2025-02-27 08:10:10 +01:00
font-family: "U42SansQuasiNerd", sans-serif;
2025-01-23 09:29:59 +01:00
background-image: var(--bg-overlay), url("bg.png");
2024-12-20 03:13:56 +01:00
background-position: center;
background-size: cover;
background-attachment: fixed;
}
2025-01-23 09:29:59 +01:00
@font-face {
2025-02-27 08:10:10 +01:00
font-family: "U42SansQuasiNerd";
src: url("/fonts/U42SansQuasiNerdFont-Extended.woff2") format("woff2");
2025-01-23 09:29:59 +01:00
font-weight: normal;
font-style: normal;
}
2025-02-27 08:10:10 +01:00
@import "../themes/duckquill/sass/_variables.scss";
@include theme-variables using ($theme) {
@if $theme == "dark" {
--bg-overlay: linear-gradient(rgb(0 0 0 / 0.6), rgb(0 0 0 / 0.6));
} @else {
--bg-overlay: linear-gradient(
2025-02-28 03:52:44 +01:00
rgb(255 255 255 / 0.5),
rgb(255 255 255 / 0.5)
2025-02-27 08:10:10 +01:00
);
}
}
2025-01-23 09:29:59 +01:00
h1,
h2,
h3,
h4,
h5,
h6 {
text-wrap: balance;
margin: 2rem 0 1rem;
font-weight: bold;
line-height: normal;
2025-02-27 08:10:10 +01:00
font-family: "U42SansQuasiNerd", sans-serif;
2025-01-23 09:29:59 +01:00
letter-spacing: 0em;
}