38 lines
580 B
SCSS
38 lines
580 B
SCSS
@import '../apps/red-ui/src/assets/styles/variables';
|
|
@import '../apps/red-ui/src/assets/styles/red-mixins';
|
|
@import 'fonts';
|
|
@import 'header';
|
|
@import 'homepage';
|
|
@import 'search';
|
|
@import 'footer';
|
|
@import 'manual';
|
|
@import 'mixin';
|
|
|
|
body {
|
|
color: $accent;
|
|
background-color: $grey-9;
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
p,
|
|
pre {
|
|
margin: 0;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
@include scroll-bar;
|
|
|
|
h3 {
|
|
@include heading-3;
|
|
}
|
|
|
|
p {
|
|
@include paragraph;
|
|
}
|
|
}
|