@charset "utf-8";



// Our variables
$base-font-family: Roboto, Helvetica, Arial, sans-serif;
$header-font-family: Alegreya, Helvetica, Arial, sans-serif;
$base-font-size:   16px;
$small-font-size:  $base-font-size * 0.875;
$base-line-height: 1.4em;

$spacing-unit:     30px;

$text-color:       #333;
$background-color: #eee;
$brand-color:      #2988ce;
$brand-color-dark: darken(#2988ce, 25%);

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

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

$on-palm:          800px;
$on-laptop:        1100px;

$transition-fast:  0.12s;
$transition-medium:0.3s;
$transition-slow:  0.6s;


// Using media queries with like this:
// @include media-query($on-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", "syntax-highlighting";
//@import "base", "layout", "syntax-highlighting";

code {

}
pre, code {
	overflow-x: auto;
	background: #fff;
	border-color: #ccc;
}
p:last-child {
	margin-bottom: 0;
}
