Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created March 8, 2017 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/416e1a821fa6881ec07aae5e05923964 to your computer and use it in GitHub Desktop.
Save billerickson/416e1a821fa6881ec07aae5e05923964 to your computer and use it in GitHub Desktop.
// Base Font
$base-font-family: 'Noto Serif', serif;
$base-font-weight: 400;
$base-font-size: 18px;
$base-line-height: 1.77;
$alt-font-family: 'Noto Sans', sans-serif;
// Colors
$black: #000;
$grey-1: #232323;
$grey-2: #333333;
$grey-3: #58585B;
$grey-4: #939598;
$grey-5: #D1D3D4;
$grey-6: #F5F5F5;
$grey-7: #F8F8F8;
$white: #fff;
$green-1: #A8B737;
$green-2: #BFC870;
$green-3: #E5E7C6;
$violet: #631A54;
$orange: #F04D25;
$yellow: #FBB040;
$brown: #583B25;
$base-color: $grey-2;
$highlight: $green-1;
$border-color: $grey-5;
// Breakpoints
$breakpoints: (
'mobile': 520px,
'tablet': 768px,
'medium': 992px,
'large': 1200px,
);
// Bootstrap
$max-width: 1326px;
$grid-gutter-width: 30px;
@import "../vendors/bootstrap"; // Note: Unused CSS parts have been disabled
@import "../vendors/include-media";
@import "../modules/helpers";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment