Removed most of minima theme's css.

This commit is contained in:
Michael Smith
2016-12-26 14:48:20 +01:00
parent 614d39c734
commit 2ed616981e
18 changed files with 660 additions and 3 deletions

21
_sass/90s.scss Normal file
View File

@@ -0,0 +1,21 @@
// 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"
;