aex/style/_mixins.scss
2025-09-12 10:20:17 +03:00

20 lines
319 B
SCSS

@mixin heading {
font-family: "Neusa Next Pro";
}
@mixin text {
font-family: "Noto Serif";
}
@mixin button {
@include heading;
font-weight: 900;
background: crimson;
text-align: center;
color: white;
&:hover {
filter: hue-rotate(40deg);
transition: filter .2s;
}
}