47 lines
766 B
SCSS
47 lines
766 B
SCSS
@use 'apps/red-ui/src/assets/styles/variables';
|
|
@use '../libs/common-ui/src/assets/styles/common-mixins';
|
|
@use 'fonts';
|
|
@use 'header';
|
|
@use 'homepage';
|
|
@use 'search';
|
|
@use 'footer';
|
|
@use 'manual';
|
|
@use 'mixin';
|
|
|
|
body {
|
|
color: variables.$accent;
|
|
background-color: variables.$grey-9;
|
|
font-family: 'OpenSans', sans-serif;
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
p,
|
|
pre {
|
|
margin: 0;
|
|
font-family: 'OpenSans', sans-serif;
|
|
}
|
|
|
|
@include common-mixins.scroll-bar;
|
|
|
|
h3 {
|
|
@include mixin.heading-3;
|
|
}
|
|
|
|
p {
|
|
@include mixin.paragraph;
|
|
}
|
|
|
|
a {
|
|
color: variables.$primary;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
color: variables.$primary;
|
|
}
|
|
}
|
|
}
|