Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zwbetz-gh/cayman-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJake Zatecky <jake.zatecky@gmail.com>2017-01-10 02:57:01 +0300
committerJake Zatecky <jake.zatecky@gmail.com>2017-01-10 02:57:01 +0300
commit96243e14c2e2f98faa3fc3c07b229de3789db397 (patch)
tree3319910d8870e2a41585b5f9ae8c97c77f6727f3
parent4f7ed0526c36d57a85ee4920fccfd6a3fb4c52cb (diff)
Make variables default
-rw-r--r--scss/cayman.scss28
1 files changed, 14 insertions, 14 deletions
diff --git a/scss/cayman.scss b/scss/cayman.scss
index 4b4c8fe..a7fd386 100644
--- a/scss/cayman.scss
+++ b/scss/cayman.scss
@@ -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}) {