@charset “utf-8”;

$base-font-family: -apple-system-font, BlinkMacSystemFont, “San Francisco”, “Helvetica Neue”, Helvetica, Arial, sans-serif; $monospace-font-family: “SFMono-Regular”, Consolas, “Liberation Mono”, Menlo, Courier, monospace !default; $base-font-size: 17px; $nav-font-size: 16px; $base-font-weight: 400; $heavy-font-weight: 500; $small-font-size:$base-font-size * 0.875; $base-line-height: 1.5;

$spacing-unit: 30px;

// link colours $a-color: #0070c9; $a-hover-opacity: .65;

// Random Colours $text-color: #333; $light-text-color: fff; $background-color: fff;

// Nav & footer colours $dark-background-color: #333; $footer-background-color: f2f2f2; $brand-color:#2568ba;

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

// Width of the content area $content-width:980px; $on-palm:692px; $on-laptop:980px;

// Use media queries 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 the `apple` theme. @import “apple”;