-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
160 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
// Variables | ||
// | ||
|
||
// Table of Contents | ||
// | ||
// Colors | ||
// Options | ||
// Spacing | ||
// Body | ||
// Links | ||
// Fonts | ||
|
||
|
||
// Colors | ||
// | ||
|
||
// Start with assigning color names to specific hex values. | ||
$white: #fff !default; | ||
$black: #000 !default; | ||
$red: #d9534f !default; | ||
$orange: #f0ad4e !default; | ||
$yellow: #ffd500 !default; | ||
$green: #5cb85c !default; | ||
$blue: #0275d8 !default; | ||
$teal: #5bc0de !default; | ||
$pink: #ff5b77 !default; | ||
$purple: #613d7c !default; | ||
|
||
// Grayscale and brand colors for use across Bootstrap. | ||
// Create grayscale | ||
$gray-dark: #292b2c !default; | ||
$gray: #464a4c !default; | ||
$gray-light: #636c72 !default; | ||
$gray-lighter: #eceeef !default; | ||
$gray-lightest: #f7f7f9 !default; | ||
|
||
// Reassign color vars to semantic color scheme | ||
$brand-primary: $blue !default; | ||
$brand-success: $green !default; | ||
$brand-info: $teal !default; | ||
$brand-warning: $orange !default; | ||
$brand-danger: $red !default; | ||
$brand-inverse: $gray-dark !default; | ||
|
||
|
||
// Options | ||
// | ||
// Quickly modify global styling by enabling or disabling optional features. | ||
|
||
$enable-rounded: true !default; | ||
$enable-shadows: false !default; | ||
$enable-gradients: false !default; | ||
$enable-transitions: true !default; | ||
$enable-hover-media-query: false !default; | ||
$enable-grid-classes: true !default; | ||
$enable-print-styles: true !default; | ||
|
||
|
||
// Spacing | ||
// | ||
// Control the default styling of most Bootstrap elements by modifying these | ||
// variables. Mostly focused on spacing. | ||
// You can add more entries to the $spacers map, should you need more variation. | ||
|
||
$spacer: 1rem !default; | ||
$spacers: ( | ||
0: 0, | ||
1: ($spacer * .25), | ||
2: ($spacer * .5), | ||
3: $spacer, | ||
4: ($spacer * 1.5), | ||
5: ($spacer * 3) | ||
) !default; | ||
|
||
// This variable affects the `.h-*` and `.w-*` classes. | ||
$sizes: ( | ||
25: 25%, | ||
50: 50%, | ||
75: 75%, | ||
100: 100% | ||
) !default; | ||
|
||
// Body | ||
// | ||
// Settings for the `<body>` element. | ||
|
||
$body-bg: $white !default; | ||
$body-color: $gray-dark !default; | ||
|
||
// Links | ||
// | ||
// Style anchor elements. | ||
|
||
$link-color: $brand-primary !default; | ||
$link-decoration: none !default; | ||
$link-hover-color: darken($link-color, 15%) !default; | ||
$link-hover-decoration: underline !default; | ||
|
||
// Fonts | ||
// | ||
// Font, line-height, and color for body text, headings, and more. | ||
|
||
$font-family-sans-serif: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !default; | ||
$font-family-monospace: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default; | ||
$font-family-base: $font-family-sans-serif !default; | ||
|
||
$font-size-base: 1rem !default; // Assumes the browser default, typically `16px` | ||
$font-size-lg: 1.25rem !default; | ||
$font-size-sm: .875rem !default; | ||
$font-size-xs: .75rem !default; | ||
|
||
$font-weight-normal: normal !default; | ||
$font-weight-bold: bold !default; | ||
|
||
$font-weight-base: $font-weight-normal !default; | ||
$line-height-base: 1.5 !default; | ||
|
||
$font-size-h1: 2.5rem !default; | ||
$font-size-h2: 2rem !default; | ||
$font-size-h3: 1.75rem !default; | ||
$font-size-h4: 1.5rem !default; | ||
$font-size-h5: 1.25rem !default; | ||
$font-size-h6: 1rem !default; | ||
|
||
$headings-margin-bottom: ($spacer / 2) !default; | ||
$headings-font-family: inherit !default; | ||
$headings-font-weight: 500 !default; | ||
$headings-line-height: 1.1 !default; | ||
$headings-color: inherit !default; | ||
|
||
$display1-size: 6rem !default; | ||
$display2-size: 5.5rem !default; | ||
$display3-size: 4.5rem !default; | ||
$display4-size: 3.5rem !default; | ||
|
||
$display1-weight: 300 !default; | ||
$display2-weight: 300 !default; | ||
$display3-weight: 300 !default; | ||
$display4-weight: 300 !default; | ||
$display-line-height: $headings-line-height !default; | ||
|
||
$lead-font-size: 1.25rem !default; | ||
$lead-font-weight: 300 !default; | ||
|
||
$small-font-size: 80% !default; | ||
|
||
$blockquote-font-size: ($font-size-base * 1.25) !default; | ||
|
||
|
||
|
||
@import 'bootstrap-4.0.0-alpha.6'; | ||
|
||
|
||
// ADD YOUR CUSTOM CSS HERE | ||
|
||
body > * { | ||
background-size: cover; | ||
background-repeat: none; | ||
background-position: center ; | ||
} |