Sha256: b753949d2333acab3e656424cbabf99cc6914f6527e68786f08ca4b86d817cf2

Contents?: true

Size: 1.82 KB

Versions: 3

Compression:

Stored size: 1.82 KB

Contents

   @charset "utf-8";

// Colors
$theme_primary: #455560;
$ofc_slate: #455560;
$ofc_blue: #a1c7e3;
$ofc_lightgray: #e4e5e6;
$ofc_lightblue: #B5BCC5;
$ofc_super_lightblue: #A2C7E2;
$green: #8fc73e; 
$blue: #a1c7e3;

$emphasis: #313437;
$nav_black: #1c242b;
$nav_gray: #f2f0ed;
$link_green: #74BC70;
$link_blue: #1d81bf;
$nav_links: #c8c6c2;
$nav_links-main: #aaa7a2;
$nav_links-main--current: #323940;
$slate: #444B60;
$nav_links-footer--blue: #8FC3EA;
$button-green: rgb(116, 188, 112);
$text-white: rgb(255, 255, 255);
$node-nav--inactive: #c8c6c2;

// Widths
$width-tiny: 240px; //4bits
$width-small: 480px; //6bits
$width-medium: 600px; //8bits
$width-wide: 800px; //10bits
$width-ultra-wide: 960px; //12bits
$width-extra-ultra-wide: 1400px;
$superish-wide: 1500px;
$super-wide: 1830px;

$condensed-titles: proxima-nova-condensed;

// Responsive mixin for bubbled media-querries
@mixin responsive($width){
  @if $width == tiny-screens{
    @media screen and (min-width: $width-tiny){
      @content;
    }
  }
  @else if $width == small-screens{
    @media screen and (min-width: $width-small){
      @content;
    }
  }
  @else if $width == medium-screens{
    @media screen and (min-width: $width-medium){
      @content;
    }
  }
  @else if $width == wide-screens{
    @media screen and (min-width: $width-wide){
      @content;
    }
  }
  @else if $width == ultra-wide-screens{
    @media screen and (min-width: $width-ultra-wide){
      @content;
    }
  }
    @else if $width == extra-ultra-wide-screens{
      @media screen and (min-width: $width-extra-ultra-wide){
        @content;
      }
    }
    @else if $width == super-wide-screens{
      @media screen and (min-width: $super-wide){
        @content;
      }
    } 
    @else if $width == superish-wide-screens{
      @media screen and (min-width: $superish-wide){
        @content;
      }
    }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
daiblogs-0.2.1 _sass/variables.scss
daiblogs-0.2.0 _sass/variables.scss
daiblogs-0.1.5 _sass/variables.scss