1// Bits and pieces from Minima Jekyll Layout 2// The MIT License (MIT) Copyright (c) 2016 Parker Moor 3 4// Define defaults for each variable. 5 6$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default; 7$base-font-size: 16px !default; 8$base-font-weight: 400 !default; 9$small-font-size: $base-font-size * 0.875 !default; 10$base-line-height: 1.5 !default; 11 12$spacing-unit: 30px !default; 13 14$text-color: #111 !default; 15$background-color: #fdfdfd !default; 16$brand-color: #2a7ae2 !default; 17 18$grey-color: #828282 !default; 19$grey-color-light: lighten($grey-color, 40%) !default; 20$grey-color-dark: darken($grey-color, 25%) !default; 21 22// Width of the content area 23$content-width: 800px !default; 24 25$on-palm: 600px !default; 26$on-laptop: 800px !default; 27 28@mixin media-query($device) { 29 @media screen and (max-width: $device) { 30 @content; 31 } 32} 33 34// Import partials. 35@import "base", "layout"; 36