-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.scss
More file actions
50 lines (43 loc) · 1 KB
/
Copy pathbootstrap.scss
File metadata and controls
50 lines (43 loc) · 1 KB
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
// Font
$font-family-sans-serif: 'Poppins', sans-serif;
// Color
$primary: #cc005f;
$secondary: #990047;
$dark: #000;
$light: #f4f4f4;
// Buttons
$button-radius: 0;
$button-padding-x: 30px;
$button-padding-y: 12px;
$btn-border-radius: $button-radius;
$btn-border-radius-sm: $button-radius;
$btn-border-radius-lg: $button-radius;
$btn-padding-y: $button-padding-y;
$btn-padding-y-lg: $button-padding-y;
$btn-padding-y-sm: $button-padding-y;
$btn-padding-x: $button-padding-x;
$btn-padding-x-lg: $button-padding-x;
$btn-padding-x-sm: $button-padding-x;
$navbar-toggler-border-radius: 5px;
// Spacing
$spacer: 1rem !default;
$spacers: (
0: 0,
1: $spacer * 0.25,
2: $spacer * 0.5,
3: $spacer,
4: $spacer * 1.5,
5: $spacer * 3,
6: $spacer * 6,
7: $spacer * 8,
8: $spacer * 12,
) !default;
// Container
$container-max-widths: (
sm: 540px,
md: 720px,
lg: 960px,
xl: 980px,
xxl: 1000px,
) !default;
@import '../node_modules/bootstrap/scss/bootstrap';