-
Notifications
You must be signed in to change notification settings - Fork 3
/
_native-variables.scss
31 lines (28 loc) · 1.26 KB
/
_native-variables.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// --------------------------------------------------------------------------------------------------------------------
// Application-wide CSS variables
// ==============================
// You don't need to import this in any other Sass file except in the site.scss which renders these variables globally
// available. If you import them anywhere else it will render duplicates in the output site.css file and potentially
// overwrite newer values in the derived theme so avoid that.
// --------------------------------------------------------------------------------------------------------------------
:root {
// Fonts
--font-default: var(--bs-body-font-family);
--font-header: var(--bs-font-sans-serif);
--color-foreground-body: black;
--color-background-body: white;
// Gutters
--gutter-x-small: 1rem;
--gutter-small: 1.5rem;
--gutter-medium: 2rem;
--gutter-large: 5rem;
--gutter-x-large: 10rem;
--gutter-xx-large: 10rem;
// Page Margins
--page-margin-x-small: var(--gutter-x-small);
--page-margin-small: var(--gutter-small);
--page-margin-medium: var(--gutter-medium);
--page-margin-large: var(--gutter-large);
--page-margin-x-large: var(--gutter-x-large);
--page-margin-xx-large: var(--gutter-xx-large);
}