Zelda64Recomp/assets/scss/styles/global.scss

70 lines
877 B
SCSS
Raw Normal View History

2024-01-02 16:10:06 +01:00
@import "./base";
@import "./globals/old";
@import "./globals/scrollbars";
2024-01-07 01:04:28 +01:00
@import "./components/components";
@import "./pages/pages";
2024-01-02 16:10:06 +01:00
$font-size: 20dp;
body
{
@extend %body;
box-sizing: border-box;
color: $color-text;
font-family: $font-stack;
&[disable-mouse] {
pointer-events: none;
}
2024-01-02 16:10:06 +01:00
}
.rmlui-window {
opacity: 1;
transition: opacity 0.1s quadratic-in-out;
&--hidden {
opacity: 0;
transition: none;
}
}
2024-01-02 16:10:06 +01:00
*, *:before, *:after {
box-sizing: border-box;
2024-01-02 16:10:06 +01:00
}
h1 {
@extend %header-1;
}
h2 {
@extend %header-2;
}
h3 {
@extend %header-3;
}
2024-01-07 22:33:22 +01:00
.label-lg {
2024-01-02 16:10:06 +01:00
@extend %label-lg;
}
2024-01-07 22:33:22 +01:00
.label-md {
2024-01-02 16:10:06 +01:00
@extend %label-md;
}
2024-01-07 22:33:22 +01:00
.label-sm {
2024-01-02 16:10:06 +01:00
@extend %label-sm;
}
2024-01-18 21:49:29 +01:00
.prompt-font {
@extend %prompt-font;
}
2024-03-03 21:57:19 +01:00
.prompt-font-sm {
@extend %prompt-font-sm;
}
2024-01-02 16:10:06 +01:00
button {
background-color: $color-primary-d;
}