Sha256: 557be1d3a1bc608e525f83a28fe7b66b3a5c38bf3e7e0fcbb306666dc08b9cd2

Contents?: true

Size: 1.28 KB

Versions: 3

Compression:

Stored size: 1.28 KB

Contents

---
# Only the main Sass file needs front matter (the dashes are enough)
layout: nil
---
@charset "utf-8";



// Our variables
$base-font-family: Helvetica, Arial, sans-serif;
$base-font-size:   16px;
$small-font-size:  $base-font-size * 0.875;
$base-line-height: 1.5;

$spacing-unit:     30px;

$text-color:       #dcdccc;
$background-color: #3f3f3f;
$header-color:     #303030;
$brand-color:      #8cd0d3;

$light-green:      #80d4aa;
$dark-green:       #313C36;
$light-red:        #ecbcbc;
$dark-red:         #41363c;

$link-hover:       #c0bed1;
$link-visited:     #8c8cbc;

$grey-color:       #8f8f8f;
// swapped because of dark theme
$grey-color-light: lighten($grey-color, 25%);
$grey-color-dark:  lighten($grey-color, 40%);

// Width of the content area
$content-width:    800px;

$on-palm:          600px;
$on-laptop:        800px;



// Using media queries with 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 `sass_dir` (defaults to `_sass`)
@import
    "custom-vars",
    "base",
    "layout",
    "syntax-highlighting",
    "rp",
    "custom-rules"
;

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jekyll-rp_logs-0.4.0 .themes/default/source/css/main.scss
jekyll-rp_logs-0.3.1 .themes/default/source/css/main.scss
jekyll-rp_logs-0.3.0 .themes/default/source/css/main.scss