|
|
@@ -4,6 +4,14 @@
|
|
|
|
|
|
//== Colors
|
|
|
//
|
|
|
+$primary: #112744;
|
|
|
+$secondary: #6c757d;
|
|
|
+$info: #0d8ea5;
|
|
|
+$success: #00bb83;
|
|
|
+$warning: #ee773b;
|
|
|
+$danger: #ff0a54;
|
|
|
+$light: #dee2e6;
|
|
|
+$dark: #343a40;
|
|
|
//## Gray and brand colors for use across Bootstrap.
|
|
|
$gray-base: #000 !default;
|
|
|
$gray-darker: lighten($gray-base, 13.5%); // #222
|
|
|
@@ -19,17 +27,16 @@ $brand-info: $info;
|
|
|
$brand-warning: $warning;
|
|
|
$brand-danger: $danger;
|
|
|
|
|
|
-
|
|
|
-
|
|
|
//== Typography
|
|
|
//
|
|
|
//## Font, line-height, and color for body text, headings, and more.
|
|
|
$font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
|
|
|
$font-family-serif: Georgia, "Times New Roman", Times, serif;
|
|
|
-$font-family-monospace: SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;
|
|
|
+$font-family-monospace: Osaka-Mono, 'MS Gothic', Monaco, Menlo, Consolas, 'Courier New', monospace;
|
|
|
$font-family-base: $font-family-sans-serif;
|
|
|
|
|
|
-
|
|
|
+$font-size-root: 14px;
|
|
|
+$line-height-base: 1.42857;
|
|
|
|
|
|
//== Components
|
|
|
//
|
|
|
@@ -44,13 +51,45 @@ $border-radius-small: 0;
|
|
|
//## For each of Bootstrap's buttons, define text, background and border color.
|
|
|
|
|
|
$btn-default-bg: $btn-default-bgcolor;
|
|
|
+$btn-border-radius: 0;
|
|
|
+$btn-border-radius-lg: 0;
|
|
|
+$btn-border-radius-sm: 0;
|
|
|
|
|
|
|
|
|
|
|
|
//== Forms
|
|
|
//
|
|
|
-//##
|
|
|
+$input-border-radius: 0;
|
|
|
+$input-border-radius-lg: 0;
|
|
|
+$input-border-radius-sm: 0;
|
|
|
+
|
|
|
+//== Navs
|
|
|
+
|
|
|
+$nav-link-padding-y: 0.75rem;
|
|
|
+$nav-link-padding-x: 1rem;
|
|
|
+$nav-tabs-border-radius: 0;
|
|
|
|
|
|
+//== Navbar
|
|
|
+$navbar-padding-y: 0;
|
|
|
+$navbar-brand-padding-y: 0;
|
|
|
+$navbar-nav-link-padding-x: 1rem;
|
|
|
+
|
|
|
+//== Dropdowns
|
|
|
+$dropdown-border-radius: 0;
|
|
|
+
|
|
|
+//== card
|
|
|
+$card-border-radius: 0;
|
|
|
+$card-spacer-y: 7px;
|
|
|
+$card-spacer-x: 15px;
|
|
|
+
|
|
|
+//== Modals
|
|
|
+$modal-content-border-width: 0;
|
|
|
+$modal-content-border-radius: 0;
|
|
|
+$modal-header-padding-y: 0.75rem;
|
|
|
+$modal-header-padding-x: 1rem;
|
|
|
+
|
|
|
+//== Alerts
|
|
|
+$alert-border-radius: 0;
|
|
|
//** `<input>` background color
|
|
|
$input-bg: $bodycolor;
|
|
|
//** `<input disabled>` background color
|
|
|
@@ -58,3 +97,9 @@ $input-bg-disabled: $btn-default-bgcolor;
|
|
|
|
|
|
//** `<input>` border color
|
|
|
$input-border: $border;
|
|
|
+
|
|
|
+//== Progress bar
|
|
|
+$progress-height: 4px;
|
|
|
+$progress-border-radius: 0;
|
|
|
+$progress-bg: #f0f0f0;
|
|
|
+$progress-box-shadow: none;
|