Sha256: b9bc8163449b4b9fc58284fbe50c86665ec598400ba97798373fd45eaecd3695
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
// Define defaults for each variable. $base-font-family: -apple-system-font, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Helvetica, Arial, sans-serif !default; $monospace-font-family: Monaco, Menlo, Consolas, "Courier New", DotumChe, monospace !default; $base-font-size: 17px !default; $base-font-weight: 400 !default; $heavy-font-weight: 500 !default; $small-font-size: $base-font-size * 0.875 !default; $base-line-height: 1.5 !default; $spacing-unit: 30px !default; $text-color: #333 !default; $light-text-color: #fff !default; $background-color: #fff !default; $dark-background-color: #111 !default; $footer-background-color: #f2f2f2 !default; $brand-color: #2568ba !default; $a-color: #0070c9 !default; $grey-color: #828282 !default; $grey-color-light: lighten($grey-color, 40%) !default; $grey-color-dark: darken($grey-color, 25%) !default; // Width of the content area $content-width: 980px !default; $on-palm: 692px !default; $on-laptop: 980px !default; // Use media queries like this: // @include media-query($on-palm) { // .wrapper { // padding-right: $spacing-unit / 2; // padding-left: $spacing-unit / 2; // } // } @mixin media-query($device) { @media screen and (max-width: $device) { @content; } } // Import partials. @import "apple/base", "apple/layout", "apple/syntax-highlighting" ;
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jekyll-apple-1.0.0 | _sass/apple.scss |