| # Only the main Sass file needs front matter (the dashes are enough) |
| $base-font-family: Helvetica, Arial, sans-serif; |
| $small-font-size: $base-font-size * 0.875; |
| $background-color: #fdfdfd; |
| $grey-color-light: lighten($grey-color, 40%); |
| $grey-color-dark: darken($grey-color, 25%); |
| // Width of the content area |
| // Using media queries with like this: |
| // @include media-query($on-palm) { |
| // padding-right: $spacing-unit / 2; |
| // padding-left: $spacing-unit / 2; |
| @mixin media-query($device) { |
| @media screen and (max-width: $device) { |
| // Import partials from `sass_dir` (defaults to `_sass`) |