mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-08 07:25:05 +01:00
48 lines
537 B
SCSS
48 lines
537 B
SCSS
@import "./base";
|
|
@import "./globals/old";
|
|
@import "./components/components";
|
|
|
|
|
|
$font-stack: chiaro;
|
|
$font-size: 20dp;
|
|
|
|
body
|
|
{
|
|
@extend %body;
|
|
box-sizing: border-box;
|
|
color: $color-text;
|
|
font-family: $font-stack;
|
|
}
|
|
|
|
*, *:before, *:after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
h1 {
|
|
@extend %header-1;
|
|
}
|
|
|
|
h2 {
|
|
@extend %header-2;
|
|
}
|
|
|
|
h3 {
|
|
@extend %header-3;
|
|
}
|
|
|
|
.label-lg {
|
|
@extend %label-lg;
|
|
}
|
|
|
|
.label-md {
|
|
@extend %label-md;
|
|
}
|
|
|
|
.label-sm {
|
|
@extend %label-sm;
|
|
}
|
|
|
|
button {
|
|
background-color: $color-primary-d;
|
|
}
|