# Only the main Sass file needs front matter (the dashes are enough)


@charset “utf-8”;

@font-face {

font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v10/pxiDypQkot1TnFhsFMOfGShVE9eOcEg.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;

}

/* greek */ @font-face {

font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v10/pxiDypQkot1TnFhsFMOfGShVFNeOcEg.woff2) format('woff2');
unicode-range: U+0370-03FF;

}

/* latin-ext */ @font-face {

font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v10/pxiDypQkot1TnFhsFMOfGShVGdeOcEg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;

}

/* latin */ @font-face {

font-family: 'Product Sans';
font-style: normal;
font-weight: 400;
src: local('Product Sans'), local('ProductSans-Regular'), url(https://fonts.gstatic.com/s/productsans/v10/pxiDypQkot1TnFhsFMOfGShVF9eO.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;

}

@font-face {

font-family: 'WeblySleekUILight';
src: url('../fonts/weblysleekuil.eot');
src: url('../fonts/weblysleekuil.eot?#iefix') format('embedded-opentype'),
  url('../fonts/weblysleekuil.woff') format('font-woff'),
  url('../fonts/weblysleekuil.ttf') format('truetype'),
  url('../fonts/weblysleekuil.svg#WeblySleekUILight') format('svg');

}

$base-font-family: 'WeblySleekUILight', 'Segoe UI', sans-serif; $title-font-family: “Product Sans”, sans-serif; $base-font-size: 16px; $small-font-size: $base-font-size * 0.875; $base-line-height: 1;

$spacing-unit: 30px;

$text-color: #111; $background-color: fdfdfd; $brand-color: #0077aa;

$blue-color-dark: #0077aa; $blue-color-light: #4B93DB;

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

$code-background-color: eef !default;

$link-base-color: #2a7ae2 !default; $link-visited-color: darken($link-base-color, 15%) !default;

$table-text-color: lighten($text-color, 18%) !default; $table-zebra-color: lighten($brand-color, 46%) !default; $table-header-bg-color: lighten($brand-color, 43%) !default; $table-header-border: lighten($brand-color, 36%) !default; $table-border-color: $grey-color-light !default;

// Width of the content area $content-width: 950px;

$on-palm: 600px; $on-laptop: 950px;

@mixin media-query($device) {

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

}

// Import partials from `sass_dir` (defaults to `_sass`) @import “custom/includes/base”, “custom/includes/layout”, “custom/includes/syntax-highlighting” ;