2015-09-03 06:22:56 +00:00
|
|
|
---
|
|
|
|
# Only the main Sass file needs front matter (the dashes are enough)
|
|
|
|
---
|
|
|
|
@charset "utf-8";
|
|
|
|
|
|
|
|
// Our variables
|
2016-01-04 10:35:50 +00:00
|
|
|
$base-font-family: 'Share Tech', sans-serif;
|
2015-09-03 06:22:56 +00:00
|
|
|
$base-font-size: 16px;
|
|
|
|
$small-font-size: $base-font-size * 0.875;
|
|
|
|
$base-line-height: 1.5;
|
|
|
|
|
|
|
|
$spacing-unit: 30px;
|
|
|
|
|
|
|
|
$text-color: #111;
|
|
|
|
$background-color: #fdfdfd;
|
|
|
|
$brand-color: #2a7ae2;
|
|
|
|
|
|
|
|
$grey-color: #828282;
|
|
|
|
$grey-color-light: lighten($grey-color, 40%);
|
|
|
|
$grey-color-dark: darken($grey-color, 25%);
|
|
|
|
|
|
|
|
$on-palm: 600px;
|
|
|
|
$on-laptop: 800px;
|
|
|
|
|
2016-01-05 09:16:06 +00:00
|
|
|
$nav-link-color: #FFF;
|
|
|
|
$nav-link-hover: #DDD;
|
2016-01-04 14:26:08 +00:00
|
|
|
|
|
|
|
$primary-bg: #333;
|
2016-01-06 09:20:23 +00:00
|
|
|
$link-primary: #FF5E5E;
|
2016-01-05 11:31:32 +00:00
|
|
|
$link-hover: #F44;
|
2015-09-03 06:22:56 +00:00
|
|
|
|
|
|
|
// Using media queries with like this:
|
|
|
|
// @include media-query($palm) {
|
|
|
|
// .wrapper {
|
|
|
|
// padding-right: $spacing-unit / 2;
|
|
|
|
// padding-left: $spacing-unit / 2;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
@mixin media-query($device) {
|
|
|
|
@media screen and (max-width: $device) {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Import partials from `sass_dir` (defaults to `_sass`)
|
|
|
|
@import
|
|
|
|
"base",
|
|
|
|
"layout",
|
2016-01-06 09:20:23 +00:00
|
|
|
"syntax-highlighting"
|
2015-09-03 06:22:56 +00:00
|
|
|
;
|