Adding app/assets/sass/_bootstrap-config.scss
This commit is contained in:
parent
897da2ad27
commit
dd8b065c8e
1 changed files with 57 additions and 0 deletions
57
app/assets/sass/_bootstrap-config.scss
Normal file
57
app/assets/sass/_bootstrap-config.scss
Normal file
|
|
@ -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;
|
||||
Reference in a new issue