Skip to content

Commit

Permalink
Make variables default
Browse files Browse the repository at this point in the history
  • Loading branch information
jakezatecky committed Jan 9, 2017
1 parent 4f7ed05 commit 96243e1
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions scss/cayman.scss
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
// Breakpoints
$large-breakpoint: 64em;
$medium-breakpoint: 42em;
$large-breakpoint: 64em !default;
$medium-breakpoint: 42em !default;

// Headers
$header-heading-color: #fff;
$header-bg-color: #159957;
$header-bg-color-secondary: #155799;
$header-heading-color: #fff !default;
$header-bg-color: #159957 !default;
$header-bg-color-secondary: #155799 !default;

// Text
$section-headings-color: #159957;
$body-text-color: #606c71;
$body-link-color: #1e6bb8;
$blockquote-text-color: #819198;
$section-headings-color: #159957 !default;
$body-text-color: #606c71 !default;
$body-link-color: #1e6bb8 !default;
$blockquote-text-color: #819198 !default;

// Code
$code-bg-color: #f3f6fa;
$code-text-color: #567482;
$code-bg-color: #f3f6fa !default;
$code-text-color: #567482 !default;

// Borders
$border-color: #dce6f0;
$table-border-color: #e9ebec;
$hr-border-color: #eff0f1;
$border-color: #dce6f0 !default;
$table-border-color: #e9ebec !default;
$hr-border-color: #eff0f1 !default;

@mixin large {
@media screen and (min-width: #{$large-breakpoint}) {
Expand Down

0 comments on commit 96243e1

Please sign in to comment.