3 $gray-100: #f8f9fa !default;
4 $gray-200: #e9ecef !default;
5 $gray-300: #dee2e6 !default;
6 $gray-400: #ced4da !default;
7 $gray-500: #adb5bd !default;
8 $gray-600: #6c757d !default;
9 $gray-700: #495057 !default;
10 $gray-800: #343a40 !default;
11 $gray-900: #212529 !default;
12 $black: #000 !default;
14 $blue: #1177d1 !default;
15 $indigo: #6610f2 !default;
16 $purple: #613d7c !default;
17 $pink: #e83e8c !default;
18 $red: #d43f3a !default;
19 $orange: #f0ad4e !default;
20 $yellow: #ff7518 !default;
21 $green: #398439 !default;
22 $teal: #20c997 !default;
23 $cyan: #5bc0de !default;
25 $primary: $blue !default;
26 $success: $green !default;
27 $info: $cyan !default;
28 $warning: $orange !default;
29 $danger: $red !default;
30 $secondary: $gray-400 !default;
32 $info-outline: #1f7e9a;
33 $warning-outline: #a6670e;
36 $enable-rounded: false !default;
37 $enable-responsive-font-sizes: true !default;
40 $body-color: $gray-800 !default;
43 $font-size-base: 0.9375rem !default;
44 $rfs-base-font-size: 0.9rem !default;
45 $headings-font-weight: 300 !default;
48 $navbar-dark-hover-color: rgba($white, 1) !default;
49 $navbar-light-hover-color: rgba($black, .9) !default;
52 $breadcrumb-padding-y: .25rem !default;
53 $breadcrumb-padding-x: 0 !default;
54 $breadcrumb-item-padding: .5rem !default;
55 $breadcrumb-margin-bottom: 0 !default;
56 $breadcrumb-bg: transparent !default;
57 $breadcrumb-divider: "/" !default;
58 $breadcrumb-divider-rtl: "/" !default;
60 // Floating elements positions
61 $gototop-bottom-position: 50px !default;
64 $alert-border-width: 0 !default;
66 $card-group-margin: .25rem;
68 // Custom control size
69 $custom-control-indicator-size: 1.25rem;
71 $input-btn-focus-color: rgba($primary, .75) !default;
74 $theme-colors: () !default;
75 $theme-colors: map-merge((
77 secondary: $secondary,
85 // Import FontAwesome.
86 @import "fontawesome";
88 // Import All of Bootstrap
91 // Import Core moodle CSS
97 -webkit-font-smoothing: antialiased;
98 -moz-osx-font-smoothing: grayscale;
102 box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
105 // Rounded user pictures
110 // Reset the default styling back to the bootstrap defaults for
111 // the secondary outline button because gray-200 is much too light
112 // for an outline button.
113 .btn-outline-secondary {
114 @include button-outline-variant($gray-600);
115 border-color: $gray-600;
119 @include button-outline-variant($info-outline);
122 .btn-outline-warning {
123 @include button-outline-variant($warning-outline);
126 @include bg-variant(".bg-gray", $gray-200, true);