aex/style/_mixins.scss

19 lines
340 B
SCSS
Raw Normal View History

@mixin heading {
font-family: "Neusa Next Pro";
2025-09-20 08:06:55 +00:00
font-weight: 500;
2025-09-13 09:47:31 +00:00
/* font-family: "Galderglynn Titling"; */
}
2025-09-12 07:20:17 +00:00
@mixin button {
@include heading;
font-weight: 900;
background: crimson;
text-align: center;
color: white;
&:hover {
filter: hue-rotate(40deg);
transition: filter .2s;
}
}