Sha256: 7b3eba38f1242793bfb7d2fecff2adde79166fcc7b297f54326c76ad290eb4ac

Contents?: true

Size: 1.93 KB

Versions: 1

Compression:

Stored size: 1.93 KB

Contents

@charset "utf-8";

// Define defaults for each variable.

//transitions
$transition-btn: color 0.2s, background-color 0.2s, border-color 0.2s;
$transition-links: color 0.3s;

$base-font-family: 'Roboto', sans-serif !default;
$code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
$base-font-size:   17px !default;
$base-font-weight: 400 !default;
$small-font-size:  $base-font-size * 0.875 !default;
$base-line-height: 1.5 !default;

$spacing-unit:     30px !default;

$table-text-align: left !default;

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

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

$on-medium:        $on-palm !default;
$on-large:         $on-laptop !default;

// Use media queries like this:
// @include media-query($on-palm) {
//   .wrapper {
//     padding-right: $spacing-unit / 2;
//     padding-left: $spacing-unit / 2;
//   }
// }
// Notice the following mixin uses max-width, in a deprecated, desktop-first
// approach, whereas media queries used elsewhere now use min-width.
@mixin media-query($device) {
  @media screen and (max-width: $device) {
    @content;
  }
}

@mixin relative-font-size($ratio) {
  font-size: #{$ratio}rem;
}
@mixin large {
  @media screen and (min-width: #{$large-breakpoint}) {
    @content;
  }
}

@mixin medium {
  @media screen and (min-width: #{$medium-breakpoint}) and (max-width: #{$large-breakpoint}) {
    @content;
  }
}

@mixin small {
  @media screen and (max-width: #{$medium-breakpoint}) {
    @content;
  }
}

// Import pre-styling-overrides hook and style-partials.
@import
  "Base",                 // Defines element resets.
  "Layout",              // Defines structure and style based on CSS selectors.
  "Custom-Variables",   // Override predefined variables.
  "Custom-Styles"      // Override existing styles .
;

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-fica-0.1.5 _sass/Initialize.scss