-
Notifications
You must be signed in to change notification settings - Fork 25.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move SCSS partials to
/_sass/minimal-mistakes
for easier CSS custom…
…ization
- Loading branch information
Showing
220 changed files
with
146 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/*! | ||
* Minimal Mistakes Jekyll Theme 4.3.1 by Michael Rose | ||
* Copyright 2017 Michael Rose - mademistakes.com | @mmistakes | ||
* Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt) | ||
*/ | ||
|
||
/* Variables */ | ||
@import "minimal-mistakes/variables"; | ||
|
||
/* Mixins and functions */ | ||
@import "minimal-mistakes/vendor/breakpoint/breakpoint"; | ||
@include breakpoint-set("to ems", true); | ||
@import "minimal-mistakes/vendor/font-awesome/font-awesome"; | ||
@import "minimal-mistakes/vendor/magnific-popup/magnific-popup"; // Magnific Popup | ||
@import "minimal-mistakes/vendor/susy/susy"; | ||
@import "minimal-mistakes/mixins"; | ||
|
||
/* Core CSS */ | ||
@import "minimal-mistakes/reset"; | ||
@import "minimal-mistakes/base"; | ||
@import "minimal-mistakes/forms"; | ||
@import "minimal-mistakes/tables"; | ||
@import "minimal-mistakes/animations"; | ||
|
||
/* Components */ | ||
@import "minimal-mistakes/buttons"; | ||
@import "minimal-mistakes/notices"; | ||
@import "minimal-mistakes/masthead"; | ||
@import "minimal-mistakes/navigation"; | ||
@import "minimal-mistakes/footer"; | ||
@import "minimal-mistakes/syntax"; | ||
|
||
/* Utility classes */ | ||
@import "minimal-mistakes/utilities"; | ||
|
||
/* Layout specific */ | ||
@import "minimal-mistakes/page"; | ||
@import "minimal-mistakes/archive"; | ||
@import "minimal-mistakes/sidebar"; | ||
@import "minimal-mistakes/print"; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,7 @@ | ||
--- | ||
# Only the main Sass file needs front matter (the dashes are enough) | ||
--- | ||
|
||
/*! | ||
* Minimal Mistakes Jekyll Theme 4.3.1 by Michael Rose | ||
* Copyright 2017 Michael Rose - mademistakes.com | @mmistakes | ||
* Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt) | ||
*/ | ||
@charset "utf-8"; | ||
|
||
/* | ||
Variables | ||
========================================================================== */ | ||
|
||
@import "variables"; | ||
|
||
|
||
/* | ||
Vendor | ||
========================================================================== */ | ||
|
||
/* Breakpoint - media query mixins */ | ||
@import "vendor/breakpoint/breakpoint"; | ||
@include breakpoint-set("to ems", true); | ||
|
||
/* Font Awesome - icon font set */ | ||
@import "vendor/font-awesome/font-awesome"; | ||
|
||
/* Magnific Popup - responsive lightbox */ | ||
@import "vendor/magnific-popup/magnific-popup"; // Magnific Popup | ||
|
||
/* Susy - grid mixins */ | ||
$susy: ( | ||
columns: 12, | ||
gutters: 1/4, | ||
math: fluid, | ||
output: float, | ||
gutter-position: after, | ||
container: $large, | ||
global-box-sizing: border-box, | ||
// debug: ( | ||
// image: show, | ||
// color: blue, | ||
// output: overlay, | ||
// toggle: top right, | ||
// ), | ||
); | ||
@import "vendor/susy/susy"; | ||
|
||
|
||
/* | ||
Base | ||
========================================================================== */ | ||
|
||
@import "mixins"; | ||
@import "reset"; | ||
@import "base"; | ||
@import "utilities"; | ||
@import "animations"; | ||
@import "tables"; | ||
@import "buttons"; | ||
@import "notices"; | ||
@import "masthead"; | ||
@import "navigation"; | ||
@import "footer"; | ||
@import "syntax"; | ||
@import "forms"; | ||
|
||
|
||
/* | ||
Layout specific | ||
========================================================================== */ | ||
|
||
@import "page"; | ||
@import "archive"; | ||
@import "sidebar"; | ||
@import "print"; | ||
@import "minimal-mistakes"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/*! | ||
* Minimal Mistakes Jekyll Theme 4.3.1 by Michael Rose | ||
* Copyright 2017 Michael Rose - mademistakes.com | @mmistakes | ||
* Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt) | ||
*/ | ||
|
||
/* Variables */ | ||
@import "minimal-mistakes/variables"; | ||
|
||
/* Mixins and functions */ | ||
@import "minimal-mistakes/vendor/breakpoint/breakpoint"; | ||
@include breakpoint-set("to ems", true); | ||
@import "minimal-mistakes/vendor/font-awesome/font-awesome"; | ||
@import "minimal-mistakes/vendor/magnific-popup/magnific-popup"; // Magnific Popup | ||
@import "minimal-mistakes/vendor/susy/susy"; | ||
@import "minimal-mistakes/mixins"; | ||
|
||
/* Core CSS */ | ||
@import "minimal-mistakes/reset"; | ||
@import "minimal-mistakes/base"; | ||
@import "minimal-mistakes/forms"; | ||
@import "minimal-mistakes/tables"; | ||
@import "minimal-mistakes/animations"; | ||
|
||
/* Components */ | ||
@import "minimal-mistakes/buttons"; | ||
@import "minimal-mistakes/notices"; | ||
@import "minimal-mistakes/masthead"; | ||
@import "minimal-mistakes/navigation"; | ||
@import "minimal-mistakes/footer"; | ||
@import "minimal-mistakes/syntax"; | ||
|
||
/* Utility classes */ | ||
@import "minimal-mistakes/utilities"; | ||
|
||
/* Layout specific */ | ||
@import "minimal-mistakes/page"; | ||
@import "minimal-mistakes/archive"; | ||
@import "minimal-mistakes/sidebar"; | ||
@import "minimal-mistakes/print"; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,7 @@ | ||
--- | ||
# Only the main Sass file needs front matter (the dashes are enough) | ||
--- | ||
|
||
/*! | ||
* Minimal Mistakes Jekyll Theme 4.3.1 by Michael Rose | ||
* Copyright 2017 Michael Rose - mademistakes.com | @mmistakes | ||
* Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt) | ||
*/ | ||
@charset "utf-8"; | ||
|
||
/* | ||
Variables | ||
========================================================================== */ | ||
|
||
@import "variables"; | ||
|
||
|
||
/* | ||
Vendor | ||
========================================================================== */ | ||
|
||
/* Breakpoint - media query mixins */ | ||
@import "vendor/breakpoint/breakpoint"; | ||
@include breakpoint-set("to ems", true); | ||
|
||
/* Font Awesome - icon font set */ | ||
@import "vendor/font-awesome/font-awesome"; | ||
|
||
/* Magnific Popup - responsive lightbox */ | ||
@import "vendor/magnific-popup/magnific-popup"; // Magnific Popup | ||
|
||
/* Susy - grid mixins */ | ||
$susy: ( | ||
columns: 12, | ||
gutters: 1/4, | ||
math: fluid, | ||
output: float, | ||
gutter-position: after, | ||
container: $large, | ||
global-box-sizing: border-box, | ||
// debug: ( | ||
// image: show, | ||
// color: blue, | ||
// output: overlay, | ||
// toggle: top right, | ||
// ), | ||
); | ||
@import "vendor/susy/susy"; | ||
|
||
|
||
/* | ||
Base | ||
========================================================================== */ | ||
|
||
@import "mixins"; | ||
@import "reset"; | ||
@import "base"; | ||
@import "utilities"; | ||
@import "animations"; | ||
@import "tables"; | ||
@import "buttons"; | ||
@import "notices"; | ||
@import "masthead"; | ||
@import "navigation"; | ||
@import "footer"; | ||
@import "syntax"; | ||
@import "forms"; | ||
|
||
|
||
/* | ||
Layout specific | ||
========================================================================== */ | ||
|
||
@import "page"; | ||
@import "archive"; | ||
@import "sidebar"; | ||
@import "print"; | ||
@import "minimal-mistakes"; |