This repository has been archived by the owner on Jul 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
_variables.scss
66 lines (56 loc) · 1.66 KB
/
_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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// @author : Adarsh Pastakia
// @version : 5.0.0
// @copyright : 2019
// @license : MIT
//
// fonts
$google-font-sans-serif: "https://fonts.googleapis.com/css?family=Montserrat:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i" !default;
$google-font-serif: "https://fonts.googleapis.com/css?family=Trirong:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i" !default;
$google-font-mono: "https://fonts.googleapis.com/css?family=Source+Code+Pro:300,400,500,600,700" !default;
$local-font-sans-serif: false !default;
$local-font-serif: false !default;
$local-font-mono: false !default;
$font-family-sans-serif: "Montserrat", "Helvetica Neue", Arial, sans-serif !default;
$font-family-serif: Trirong, Palatino, Georgia, serif !default;
$font-family-mono: "Source Code Pro", mono !default;
$font-weight-lighter: 200 !default;
$font-weight-light: 300 !default;
$font-weight-normal: 400 !default;
$font-weight-medium: 500 !default;
$font-weight-bold: 600 !default;
$font-weight-bolder: 700 !default;
// base style properties
$base-border-radius: 2px !default;
$base-font-family: $font-family-sans-serif !default;
$base-font-weight: $font-weight-normal !default;
$base-font-size: 14px !default;
$base-line-height: 1.5 !default;
$base-spacing: 1rem !default;
// typography
$font-size-headings: (
h1: 2.5em,
h2: 2.2em,
h3: 1.8em,
h4: 1.5em,
h5: 1.2em,
h6: 0.9em
) !default;
$font-sizes: (
xs: 0.6em,
sm: 0.8em,
md: 1.15em,
lg: 1.5em,
xl: 1.8em
) !default;
// responsive breakpoints
$breakpoints: (
xs: 320px,
sm: 480px,
md: 768px,
lg: 1024px,
xl: 1280px,
xxl: 1536px
) !default;
$gutter: 8px !default;
// control variables
$button-ripple: true !default;