Sha256: 80a68b7f92ce0e44dfd81a235ed3acb6820e4864917999ac6bdf7125d82c19c6

Contents?: true

Size: 1.75 KB

Versions: 4

Compression:

Stored size: 1.75 KB

Contents

// * ------------------
// Type defaults
// * ------------------
// only need to edit default font size and family, magical SASS takes care of the rest
$font_size:             12 !default;

$heading_1:             46 !default;
$heading_2:             32 !default;
$heading_3:             28 !default;
$heading_4:             18 !default;
$heading_5:             18 !default;
$heading_6:             18 !default;

$small_point_size:      10 !default;
$large_point_size:      14 !default;

$line:                  $font_size * 1.5 !default;

$primary_font_family: #{Arial, sans-serif} !default;
$secondary_font_family: #{"Helvetica Neue", Arial, sans-serif} !default;
$heading_font_family: #{"Helvetica Neue", Arial, sans-serif} !default;

$icon_font_alpha: #{'FontAwesome'} !default;
$icon_font_bravo: #{'zocial'} !default;

// Headings default arguments
$heading_size: $heading_1 !default;
$heading_font_family: $heading_font_family !default;
$heading_font_weight: normal !default;
$heading_color: $primary_header_color !default;
// $heading_color == value used mixin
// $primary_header_color == set in Stip /stipe/color/_default_color_pallet.scss
// override using Toadstool _config.scss

// $webfont_directory: "/fonts/" !default;


//// !do not edit! ////
$em:          $font_size; // $em ALWAYS == $font-size
$line_height: #{$line / $em}em;


// *-------------------------------------------------------------------------------
// intent of the 'text' SCSS is that all essential text elements for the application are placed here
// individual element styling will be addressed in element name spaced SCSS files
// *-------------------------------------------------------------------------------

@import "typography/functions";
@import "typography/mixins";
@import "typography/extends";

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
stipe-0.0.4.6 stylesheets/stipe/_typography.scss
stipe-0.0.4.5 stylesheets/stipe/_typography.scss
stipe-0.0.4.4 stylesheets/stipe/_typography.scss
stipe-0.0.4.3 stylesheets/stipe/_typography.scss