Sha256: 394e08ea926c37ca48b3be195777380b1f234f347f906f0ea3e37faf1605a0cf
Contents?: true
Size: 1.47 KB
Versions: 1
Compression:
Stored size: 1.47 KB
Contents
--- # Only the main Sass file needs front matter (the dashes are enough) --- @charset "utf-8"; // Our variables // $base-font-family: -apple-system-font, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Helvetica, Arial, sans-serif; // $monospace-font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace !default; // $base-font-size: 17px; // $nav-font-size: 16px; // $base-font-weight: 400; // $heavy-font-weight: 500; // $small-font-size: $base-font-size * 0.875; // $base-line-height: 1.5; // // $spacing-unit: 30px; // // // Link Colours // $a-color: #0070c9; // $a-hover-opacity: .65; // // // Colours // $text-color: #333; // $light-text-color: #fff; // $background-color: #fff; // $dark-background-color: #333; // $footer-background-color: #f2f2f2; // $brand-color: #2568ba; // $a-color: #0070c9; // // $grey-color: #828282; // $grey-color-light: lighten($grey-color, 40%); // $grey-color-dark: darken($grey-color, 25%); // // // Width of the content area // $content-width: 980px; // $on-palm: 692px; // $on-laptop: 980px; // This theme also includes a mixin for defining media queries. // 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 from this theme. @import "jsblog";
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jekyll-theme-jsblog-1.0.0 | assets/main.scss |