Sha256: 232631e6a9e69e3ac01f2f91bdfae9deec455686e9355b67a19dff744f872abf

Contents?: true

Size: 1.71 KB

Versions: 6

Compression:

Stored size: 1.71 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


//// !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

6 entries across 6 versions & 1 rubygems

Version Path
stipe-0.0.4.2 stylesheets/stipe/_typography.scss
stipe-0.0.4.1 stylesheets/stipe/_typography.scss
stipe-0.0.4.0 stylesheets/stipe/_typography.scss
stipe-0.0.3.9 stylesheets/stipe/_typography.scss
stipe-0.0.3.8 stylesheets/stipe/_typography.scss
stipe-0.0.3.7 stylesheets/stipe/_typography.scss