This repository has been archived on 2023-01-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
the-90s-called/_sass/90s.scss
2016-12-26 15:20:44 +01:00

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"
;