minimal-mistakes-jekyll 4.0.6 → 4.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/_includes/comments.html +2 -2
- data/_includes/nav_list +4 -2
- data/_sass/_animations.scss +20 -20
- data/_sass/_archive.scss +1 -1
- data/_sass/_buttons.scss +152 -152
- data/_sass/_navigation.scss +542 -431
- data/_sass/_print.scss +1 -1
- data/_sass/_reset.scss +1 -1
- data/_sass/_sidebar.scss +0 -4
- data/_sass/_utilities.scss +1 -1
- data/_sass/_variables.scss +80 -99
- data/_sass/vendor/magnific-popup/_magnific-popup.scss +649 -649
- data/_sass/vendor/magnific-popup/_settings.scss +1 -1
- data/assets/css/main.scss +47 -7
- metadata +2 -2
data/assets/css/main.scss
CHANGED
@@ -10,14 +10,53 @@
|
|
10
10
|
*
|
11
11
|
*/
|
12
12
|
|
13
|
-
|
13
|
+
/*
|
14
|
+
Variables
|
15
|
+
========================================================================== */
|
16
|
+
|
14
17
|
@import "variables";
|
15
|
-
|
18
|
+
|
19
|
+
|
20
|
+
/*
|
21
|
+
Vendor
|
22
|
+
========================================================================== */
|
23
|
+
|
24
|
+
/* Breakpoint - media query mixins */
|
25
|
+
@import "vendor/breakpoint/breakpoint";
|
26
|
+
@include breakpoint-set("to ems", true);
|
27
|
+
|
28
|
+
/* Font Awesome - icon font set */
|
29
|
+
@import "vendor/font-awesome/font-awesome";
|
30
|
+
|
31
|
+
/* Magnific Popup - responsive lightbox */
|
32
|
+
@import "vendor/magnific-popup/magnific-popup"; // Magnific Popup
|
33
|
+
|
34
|
+
/* Susy - grid mixins */
|
35
|
+
$susy: (
|
36
|
+
columns: 12,
|
37
|
+
gutters: 1/4,
|
38
|
+
math: fluid,
|
39
|
+
output: float,
|
40
|
+
gutter-position: after,
|
41
|
+
container: $large,
|
42
|
+
global-box-sizing: border-box,
|
43
|
+
// debug: (
|
44
|
+
// image: show,
|
45
|
+
// color: blue,
|
46
|
+
// output: overlay,
|
47
|
+
// toggle: top right,
|
48
|
+
// ),
|
49
|
+
);
|
16
50
|
@import "vendor/susy/susy";
|
17
51
|
|
52
|
+
|
53
|
+
/*
|
54
|
+
Base
|
55
|
+
========================================================================== */
|
56
|
+
|
57
|
+
@import "mixins";
|
18
58
|
@import "reset";
|
19
59
|
@import "base";
|
20
|
-
|
21
60
|
@import "utilities";
|
22
61
|
@import "animations";
|
23
62
|
@import "tables";
|
@@ -27,13 +66,14 @@
|
|
27
66
|
@import "navigation";
|
28
67
|
@import "footer";
|
29
68
|
@import "syntax";
|
30
|
-
|
31
69
|
@import "forms";
|
32
70
|
|
71
|
+
|
72
|
+
/*
|
73
|
+
Layout specific
|
74
|
+
========================================================================== */
|
75
|
+
|
33
76
|
@import "page";
|
34
77
|
@import "archive";
|
35
78
|
@import "sidebar";
|
36
|
-
|
37
|
-
@import "vendor/font-awesome/font-awesome";
|
38
|
-
@import "vendor/magnific-popup/magnific-popup";
|
39
79
|
@import "print";
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minimal-mistakes-jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Rose
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-11-
|
11
|
+
date: 2016-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|