From dd8b065c8efacc957cc1ecff21447f647b3d0194 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Mon, 1 Aug 2022 21:43:23 +0200 Subject: [PATCH] Adding app/assets/sass/_bootstrap-config.scss --- app/assets/sass/_bootstrap-config.scss | 57 ++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 app/assets/sass/_bootstrap-config.scss diff --git a/app/assets/sass/_bootstrap-config.scss b/app/assets/sass/_bootstrap-config.scss new file mode 100644 index 0000000..1b97667 --- /dev/null +++ b/app/assets/sass/_bootstrap-config.scss @@ -0,0 +1,57 @@ + +// ---------------------------------- +// Components +// ---------------------------------- + +$enable-shadows: true; + +// ---------------------------------- +// Colors +// ---------------------------------- + +$body-bg: #f5f5f8; + +$gray-100: #f9f9f9; +$gray-200: #e9ecef; +$gray-300: #dcdcdc; +$gray-400: #ced4da; +$gray-500: #adb5bd; +$gray-600: #6c757d; +$gray-700: #444; +$gray-800: #343a40; +$gray-900: #202020; + +$primary: #03a9f4; +$blue: hsl(210, 70%, 50%); +$green: #5cb85c; +$yellow: #f0ad4e; +$red: #d9534f; + +// ---------------------------------- +// Typography +// ---------------------------------- + +$font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif; +$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace; + +$font-size-root: 15px; + +$navbar-brand-font-size: 1.4rem; + +// ---------------------------------- +// Links +// ---------------------------------- + +$link-decoration: none; + +// ---------------------------------- +// Tables +// ---------------------------------- + +$table-cell-padding-y: .3rem; +$table-cell-padding-x: .3rem; +$table-cell-padding-y-sm: .23rem; +$table-cell-padding-x-sm: .23rem; + +$table-striped-bg: $gray-100; +$table-hover-bg: $gray-200;