-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_options.scss
43 lines (34 loc) · 1.46 KB
/
_options.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
32
33
34
35
36
37
38
39
40
41
42
43
$color-Primary: #79eadf;
$color-Secondary: #FB4D3A;
// $color-Tertiary: #54294C;
$color-Tertiary: #8D70C5;
$color-Grey: #666;
// Layout settings
$topHorizontalNav: true;
//
@mixin navItemAlign {
justify-content:flex-end;
// options: flex-start, flex-end, center, space-evenly;
}
$transparentNavBg: true;
$layoutHasAside: false;
/* -- Fonts -- */
// Standard Nunito and Work Sans
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,700;1,200;1,400;1,700&family=Work+Sans:ital,wght@0,300;0,400;0,700;1,400;1,700&display=swap');
$font-Primary: 'Work Sans', sans-serif;
$font-Secondary: 'Nunito', sans-serif;
// To use custom fonts, toggle the boolean, name the font-families, and clarify which weights you have in the filesystem
// Name fonts by a dashed convention, like: WorkSans-Bold.otf
$customFonts: false;
@if ($customFonts) {
$font-Dir: 'fonts/';
$font-Primary: 'AttenRoundNew';
$font-Primary-Weights: ('-Light':200, '-Regular':400,'-Medium':500 ,'-Bold':700);
$font-Primary-Italics: ('-LightItalic':200, '-Italic':400, '-BoldItalic':700);
$font-Secondary: 'AgletSans';
$font-Secondary-Weights: ('-Light':200, '-Regular':400, '-Bold':700);
$font-Secondary-Italics: ('-LightItalic':200, '-Italic':400, '-BoldItalic':700);
$font-Tertiary: 'Mokoko';
$font-Tertiary-Weights: ('-Light':200, '-Regular':400, '-Bold':700);
$font-Tertiary-Italics: ('-LightItalic':200, '-Italic':400, '-BoldItalic':700);
}