forked from sreevardhanreddi/bhagavad-gita-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.scss
49 lines (41 loc) · 1.05 KB
/
global.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
@charset "utf-8";
// COLORS
$primary: #E56F49;
$info: #6870ed;
$success: #3ECF8E;
$warning: #f8be5a;
$danger: #9E2145;
$light: #F6F9FC;
$dark: #2e315a;
// TEXT
$text: #4A4A4A;
$link: #3273DC;
$body-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
"Helvetica", "Arial", sans-serif;
$title-family: false;
$button-family: false;
// BREAKPOINTS
$gap: 32px;
$tablet: 769px;
$desktop: 960px + (2 * $gap);
$widescreen: 1152px + (2 * $gap);
$fullhd: 1344px + (2 * $gap);
$widescreen-enabled: true;
$fullhd-enabled: false;
// LAYOUT
$section-padding: 3rem 1.5rem;
$section-padding-medium: 6rem 1.5rem;
$section-padding-large: 9rem 1.5rem;
// SEE DOCS FOR MORE:
// https://bit.ly/30UvE5O
// IMPORT BULMA
@import "~bulma/bulma.sass";
body {
// Fix Bulma bug where columns cause
// horizontal scroll on mobile.
// https://github.com/jgthms/bulma/issues/449
overflow-x: hidden;
}
// IMPORT FONT AWESOME
@import url("https://use.fontawesome.com/releases/v5.10.1/css/all.css");