generated from mmistakes/mm-github-pages-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
theming done by creating a custom skin
- Loading branch information
1 parent
8995cca
commit 6903f33
Showing
76 changed files
with
9,734 additions
and
9 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,37 @@ | ||
/* Copyright comment */ | ||
@import "minimal-mistakes/copyright"; | ||
|
||
/* Variables */ | ||
@import "minimal-mistakes/variables"; | ||
|
||
/* Mixins and functions */ | ||
@import "minimal-mistakes/vendor/breakpoint/breakpoint"; | ||
@include breakpoint-set("to ems", true); | ||
@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/search"; | ||
@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"; |
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,21 @@ | ||
/* ========================================================================== | ||
ANIMATIONS | ||
========================================================================== */ | ||
|
||
@-webkit-keyframes intro { | ||
0% { | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes intro { | ||
0% { | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} |
Oops, something went wrong.