Sha256: 1aea34a83c3a28d7adb3f32130d5f81fd491be83fccd26fb2da465e13803f553

Contents?: true

Size: 956 Bytes

Versions: 2

Compression:

Stored size: 956 Bytes

Contents

// Define defaults for each variable.
$base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
$base-font-size:   16px !default;
$base-font-weight: 400 !default;
$small-font-size:  $base-font-size * 0.875 !default;
$base-line-height: 1.5 !default;

$spacing-unit:     20px !default;

$text-color:       #333 !default;
$background-color: #fff !default;
$brand-color:      #ff0000 !default;

$grey-color:       #828282;
$grey-color-light: lighten($grey-color, 40%);
$grey-color-dark:  darken($grey-color, 25%);

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

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

$border-color: #eee;
$meta-gray: #ada8a8;

@mixin media-query($device) {
  @media screen and (max-width: $device) {
    @content;
  }
}

// Import partials.
@import
  "athene/base",
  "athene/syntax-highlighting",
  "athene/header",
  "athene/layout",
  "athene/footer",
  "athene/article"
;

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
athene-0.1.4 _sass/athene.scss
athene-0.1.3 _sass/athene.scss