aboutsummaryrefslogtreecommitdiffstats
path: root/lib/buildcss/mga-bootstrap.scss
blob: daf384456a3d06ff310461fea5bc8db20b3ca485 (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Override Bootstrap's Sass default variables
//
// Nearly all variables in Bootstrap are written with the `!default` flag.
// This allows you to override the default values of those variables before
// you import Bootstrap's source Sass files.
//
// Overriding the default variable values is the best way to customize your
// CSS without writing _new_ styles. For example, change you can either change
// `$body-color` or write more CSS that override's Bootstrap's CSS like so:
// `body { color: red; }`.

.mganav{
//
// Bring in Bootstrap
//

// Option 1
//
// Import all of Bootstrap's CSS

// @import "bootstrap";

// Option 2
//
// Import just the styles you need. Note that some stylesheets are required no matter what.

@import "functions"; // Required
@import "variables"; // Required
@import "mixins"; // Required

//
// Override Bootstrap here
//

// Toggle global options
//$enable-gradients: true;
//$enable-shadows: true;

// Customize some defaults
//$body-color: $purple;
//$body-bg: #f5f5f5;
//$border-radius: .4rem;


/* from previous work bootstrap 4.0
@import "functions";
@import "variables";
@import "mixins";
@import "type";
@import "transitions";
@import "dropdown";
@import "nav";
@import "navbar";
@import "breadcrumb";
*/

// @import "root";
// @import "reboot"; // Required
@import "type";
// @import "images";
// @import "code";
//@import "grid";
// @import "tables";
// @import "forms";
//@import "buttons";
@import "transitions";
@import "dropdown";
// @import "button-group";
// @import "input-group"; // Requires forms
// @import "custom-forms";
@import "nav";
@import "navbar"; // Requires nav
// @import "card";
@import "breadcrumb";
// @import "pagination";
// @import "badge";
// @import "jumbotron";
// @import "alert";
// @import "progress";
// @import "media";
// @import "list-group";
// @import "close";
// @import "toasts";
// @import "modal"; // Requires transitions
// @import "tooltip";
// @import "popover";
// @import "carousel";
// @import "spinners";
// @import "utilities";
// @import "print";



//
// Custom styles
//

//body {
//  padding: 3rem 1.5rem;
//}

// Style Bootstrap icons
//.bi {
//  fill: currentColor;
//}
}