This repository has been archived on 2023-01-29. You can view files and clone it, but cannot push or open issues or pull requests.

22 lines
391 B
SCSS

// Define defaults for each variable.
$spacing-unit: 30px !default;
// Width of the content area
$content-width: 800px !default;
$on-palm: 600px !default;
$on-laptop: 800px !default;
@mixin media-query($device) {
@media screen and (max-width: $device) {
@content;
}
}
// Import partials.
@import
"90s/base",
"90s/layout",
"90s/syntax-highlighting"
;