minimal-mistakes-jekyll 4.5.0 → 4.5.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,146 +1,146 @@
1
- /* ==========================================================================
2
- Syntax highlighting
3
- ========================================================================== */
4
-
5
- div.highlighter-rouge,
6
- figure.highlight {
7
- position: relative;
8
- margin-bottom: 1em;
9
- font-family: $monospace;
10
- font-size: $type-size-7;
11
- line-height: 1.8;
12
- border: 1px solid $border-color;
13
- border-radius: $border-radius;
14
- background-color: $code-background-color;
15
- box-shadow: $box-shadow;
16
-
17
- &:before {
18
- position: absolute;
19
- top: 0;
20
- right: 0;
21
- padding: 0.5em;
22
- background-color: $lighter-gray;
23
- content: "\f121";
24
- font-family: "fontawesome" !important;
25
- line-height: 1;
26
- text-transform: none;
27
- speak: none;
28
- }
29
-
30
- .highlight {
31
- margin: 0;
32
- padding: 1em;
33
- }
34
- }
35
-
36
- figure.highlight {
37
- padding-left: 1em;
38
- padding-right: 1em;
39
- }
40
-
41
- .highlight table {
42
- font-size: 1em;
43
- border: 0;
44
-
45
- td {
46
- padding: 5px;
47
- border: 0;
48
-
49
- /* line numbers*/
50
- &.gutter {
51
- padding-right: 1em;
52
- color: $light-gray;
53
- }
54
- }
55
-
56
- pre {
57
- margin: 0;
58
- }
59
- }
60
-
61
- .highlight pre { width: 100%; }
62
-
63
- /*
64
- Solarized Light
65
- http://ethanschoonover.com/solarized
66
-
67
- SOLARIZED HEX ROLE
68
- --------- -------- ------------------------------------------
69
- base01 #586e75 body text / default code / primary content
70
- base1 #93a1a1 comments / secondary content
71
- base3 #fdf6e3 background
72
- orange #cb4b16 constants
73
- red #dc322f regex, special keywords
74
- blue #22b3eb reserved keywords
75
- cyan #2aa198 strings, numbers
76
- green #859900 operators, other keywords
77
- ========================================================================== */
78
-
79
- .highlight .c { color: #93a1a1 } /* Comment */
80
- .highlight .err { color: #586e75 } /* Error */
81
- .highlight .g { color: #586e75 } /* Generic */
82
- .highlight .k { color: #859900 } /* Keyword */
83
- .highlight .l { color: #586e75 } /* Literal */
84
- .highlight .n { color: #586e75 } /* Name */
85
- .highlight .o { color: #859900 } /* Operator */
86
- .highlight .x { color: #cb4b16 } /* Other */
87
- .highlight .p { color: #586e75 } /* Punctuation */
88
- .highlight .cm { color: #93a1a1 } /* Comment.Multiline */
89
- .highlight .cp { color: #859900 } /* Comment.Preproc */
90
- .highlight .c1 { color: #93a1a1 } /* Comment.Single */
91
- .highlight .cs { color: #859900 } /* Comment.Special */
92
- .highlight .gd { color: #2aa198 } /* Generic.Deleted */
93
- .highlight .ge { color: #586e75; font-style: italic } /* Generic.Emph */
94
- .highlight .gr { color: #dc322f } /* Generic.Error */
95
- .highlight .gh { color: #cb4b16 } /* Generic.Heading */
96
- .highlight .gi { color: #859900 } /* Generic.Inserted */
97
- .highlight .go { color: #586e75 } /* Generic.Output */
98
- .highlight .gp { color: #586e75 } /* Generic.Prompt */
99
- .highlight .gs { color: #586e75; font-weight: bold } /* Generic.Strong */
100
- .highlight .gu { color: #cb4b16 } /* Generic.Subheading */
101
- .highlight .gt { color: #586e75 } /* Generic.Traceback */
102
- .highlight .kc { color: #cb4b16 } /* Keyword.Constant */
103
- .highlight .kd { color: #22b3eb } /* Keyword.Declaration */
104
- .highlight .kn { color: #859900 } /* Keyword.Namespace */
105
- .highlight .kp { color: #859900 } /* Keyword.Pseudo */
106
- .highlight .kr { color: #22b3eb } /* Keyword.Reserved */
107
- .highlight .kt { color: #dc322f } /* Keyword.Type */
108
- .highlight .ld { color: #586e75 } /* Literal.Date */
109
- .highlight .m { color: #2aa198 } /* Literal.Number */
110
- .highlight .s { color: #2aa198 } /* Literal.String */
111
- .highlight .na { color: #586e75 } /* Name.Attribute */
112
- .highlight .nb { color: #B58900 } /* Name.Builtin */
113
- .highlight .nc { color: #22b3eb } /* Name.Class */
114
- .highlight .no { color: #cb4b16 } /* Name.Constant */
115
- .highlight .nd { color: #22b3eb } /* Name.Decorator */
116
- .highlight .ni { color: #cb4b16 } /* Name.Entity */
117
- .highlight .ne { color: #cb4b16 } /* Name.Exception */
118
- .highlight .nf { color: #22b3eb } /* Name.Function */
119
- .highlight .nl { color: #586e75 } /* Name.Label */
120
- .highlight .nn { color: #586e75 } /* Name.Namespace */
121
- .highlight .nx { color: #586e75 } /* Name.Other */
122
- .highlight .py { color: #586e75 } /* Name.Property */
123
- .highlight .nt { color: #22b3eb } /* Name.Tag */
124
- .highlight .nv { color: #22b3eb } /* Name.Variable */
125
- .highlight .ow { color: #859900 } /* Operator.Word */
126
- .highlight .w { color: #586e75 } /* Text.Whitespace */
127
- .highlight .mf { color: #2aa198 } /* Literal.Number.Float */
128
- .highlight .mh { color: #2aa198 } /* Literal.Number.Hex */
129
- .highlight .mi { color: #2aa198 } /* Literal.Number.Integer */
130
- .highlight .mo { color: #2aa198 } /* Literal.Number.Oct */
131
- .highlight .sb { color: #93a1a1 } /* Literal.String.Backtick */
132
- .highlight .sc { color: #2aa198 } /* Literal.String.Char */
133
- .highlight .sd { color: #586e75 } /* Literal.String.Doc */
134
- .highlight .s2 { color: #2aa198 } /* Literal.String.Double */
135
- .highlight .se { color: #cb4b16 } /* Literal.String.Escape */
136
- .highlight .sh { color: #586e75 } /* Literal.String.Heredoc */
137
- .highlight .si { color: #2aa198 } /* Literal.String.Interpol */
138
- .highlight .sx { color: #2aa198 } /* Literal.String.Other */
139
- .highlight .sr { color: #dc322f } /* Literal.String.Regex */
140
- .highlight .s1 { color: #2aa198 } /* Literal.String.Single */
141
- .highlight .ss { color: #2aa198 } /* Literal.String.Symbol */
142
- .highlight .bp { color: #22b3eb } /* Name.Builtin.Pseudo */
143
- .highlight .vc { color: #22b3eb } /* Name.Variable.Class */
144
- .highlight .vg { color: #22b3eb } /* Name.Variable.Global */
145
- .highlight .vi { color: #22b3eb } /* Name.Variable.Instance */
1
+ /* ==========================================================================
2
+ Syntax highlighting
3
+ ========================================================================== */
4
+
5
+ div.highlighter-rouge,
6
+ figure.highlight {
7
+ position: relative;
8
+ margin-bottom: 1em;
9
+ font-family: $monospace;
10
+ font-size: $type-size-6;
11
+ line-height: 1.8;
12
+ border: 1px solid $border-color;
13
+ border-radius: $border-radius;
14
+ background-color: $code-background-color;
15
+ box-shadow: $box-shadow;
16
+
17
+ &:before {
18
+ position: absolute;
19
+ top: 0;
20
+ right: 0;
21
+ padding: 0.5em;
22
+ background-color: $lighter-gray;
23
+ content: "\f121";
24
+ font-family: "fontawesome" !important;
25
+ line-height: 1;
26
+ text-transform: none;
27
+ speak: none;
28
+ }
29
+
30
+ .highlight {
31
+ margin: 0;
32
+ padding: 1em;
33
+ }
34
+ }
35
+
36
+ figure.highlight {
37
+ padding-left: 1em;
38
+ padding-right: 1em;
39
+ }
40
+
41
+ .highlight table {
42
+ font-size: 1em;
43
+ border: 0;
44
+
45
+ td {
46
+ padding: 5px;
47
+ border: 0;
48
+
49
+ /* line numbers*/
50
+ &.gutter {
51
+ padding-right: 1em;
52
+ color: $light-gray;
53
+ }
54
+ }
55
+
56
+ pre {
57
+ margin: 0;
58
+ }
59
+ }
60
+
61
+ .highlight pre { width: 100%; }
62
+
63
+ /*
64
+ Solarized Light
65
+ http://ethanschoonover.com/solarized
66
+
67
+ SOLARIZED HEX ROLE
68
+ --------- -------- ------------------------------------------
69
+ base01 #586e75 body text / default code / primary content
70
+ base1 #93a1a1 comments / secondary content
71
+ base3 #fdf6e3 background
72
+ orange #cb4b16 constants
73
+ red #dc322f regex, special keywords
74
+ blue #22b3eb reserved keywords
75
+ cyan #2aa198 strings, numbers
76
+ green #859900 operators, other keywords
77
+ ========================================================================== */
78
+
79
+ .highlight .c { color: #93a1a1 } /* Comment */
80
+ .highlight .err { color: #586e75 } /* Error */
81
+ .highlight .g { color: #586e75 } /* Generic */
82
+ .highlight .k { color: #859900 } /* Keyword */
83
+ .highlight .l { color: #586e75 } /* Literal */
84
+ .highlight .n { color: #586e75 } /* Name */
85
+ .highlight .o { color: #859900 } /* Operator */
86
+ .highlight .x { color: #cb4b16 } /* Other */
87
+ .highlight .p { color: #586e75 } /* Punctuation */
88
+ .highlight .cm { color: #93a1a1 } /* Comment.Multiline */
89
+ .highlight .cp { color: #859900 } /* Comment.Preproc */
90
+ .highlight .c1 { color: #93a1a1 } /* Comment.Single */
91
+ .highlight .cs { color: #859900 } /* Comment.Special */
92
+ .highlight .gd { color: #2aa198 } /* Generic.Deleted */
93
+ .highlight .ge { color: #586e75; font-style: italic } /* Generic.Emph */
94
+ .highlight .gr { color: #dc322f } /* Generic.Error */
95
+ .highlight .gh { color: #cb4b16 } /* Generic.Heading */
96
+ .highlight .gi { color: #859900 } /* Generic.Inserted */
97
+ .highlight .go { color: #586e75 } /* Generic.Output */
98
+ .highlight .gp { color: #586e75 } /* Generic.Prompt */
99
+ .highlight .gs { color: #586e75; font-weight: bold } /* Generic.Strong */
100
+ .highlight .gu { color: #cb4b16 } /* Generic.Subheading */
101
+ .highlight .gt { color: #586e75 } /* Generic.Traceback */
102
+ .highlight .kc { color: #cb4b16 } /* Keyword.Constant */
103
+ .highlight .kd { color: #22b3eb } /* Keyword.Declaration */
104
+ .highlight .kn { color: #859900 } /* Keyword.Namespace */
105
+ .highlight .kp { color: #859900 } /* Keyword.Pseudo */
106
+ .highlight .kr { color: #22b3eb } /* Keyword.Reserved */
107
+ .highlight .kt { color: #dc322f } /* Keyword.Type */
108
+ .highlight .ld { color: #586e75 } /* Literal.Date */
109
+ .highlight .m { color: #2aa198 } /* Literal.Number */
110
+ .highlight .s { color: #2aa198 } /* Literal.String */
111
+ .highlight .na { color: #586e75 } /* Name.Attribute */
112
+ .highlight .nb { color: #B58900 } /* Name.Builtin */
113
+ .highlight .nc { color: #22b3eb } /* Name.Class */
114
+ .highlight .no { color: #cb4b16 } /* Name.Constant */
115
+ .highlight .nd { color: #22b3eb } /* Name.Decorator */
116
+ .highlight .ni { color: #cb4b16 } /* Name.Entity */
117
+ .highlight .ne { color: #cb4b16 } /* Name.Exception */
118
+ .highlight .nf { color: #22b3eb } /* Name.Function */
119
+ .highlight .nl { color: #586e75 } /* Name.Label */
120
+ .highlight .nn { color: #586e75 } /* Name.Namespace */
121
+ .highlight .nx { color: #586e75 } /* Name.Other */
122
+ .highlight .py { color: #586e75 } /* Name.Property */
123
+ .highlight .nt { color: #22b3eb } /* Name.Tag */
124
+ .highlight .nv { color: #22b3eb } /* Name.Variable */
125
+ .highlight .ow { color: #859900 } /* Operator.Word */
126
+ .highlight .w { color: #586e75 } /* Text.Whitespace */
127
+ .highlight .mf { color: #2aa198 } /* Literal.Number.Float */
128
+ .highlight .mh { color: #2aa198 } /* Literal.Number.Hex */
129
+ .highlight .mi { color: #2aa198 } /* Literal.Number.Integer */
130
+ .highlight .mo { color: #2aa198 } /* Literal.Number.Oct */
131
+ .highlight .sb { color: #93a1a1 } /* Literal.String.Backtick */
132
+ .highlight .sc { color: #2aa198 } /* Literal.String.Char */
133
+ .highlight .sd { color: #586e75 } /* Literal.String.Doc */
134
+ .highlight .s2 { color: #2aa198 } /* Literal.String.Double */
135
+ .highlight .se { color: #cb4b16 } /* Literal.String.Escape */
136
+ .highlight .sh { color: #586e75 } /* Literal.String.Heredoc */
137
+ .highlight .si { color: #2aa198 } /* Literal.String.Interpol */
138
+ .highlight .sx { color: #2aa198 } /* Literal.String.Other */
139
+ .highlight .sr { color: #dc322f } /* Literal.String.Regex */
140
+ .highlight .s1 { color: #2aa198 } /* Literal.String.Single */
141
+ .highlight .ss { color: #2aa198 } /* Literal.String.Symbol */
142
+ .highlight .bp { color: #22b3eb } /* Name.Builtin.Pseudo */
143
+ .highlight .vc { color: #22b3eb } /* Name.Variable.Class */
144
+ .highlight .vg { color: #22b3eb } /* Name.Variable.Global */
145
+ .highlight .vi { color: #22b3eb } /* Name.Variable.Instance */
146
146
  .highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */
@@ -1,38 +1,37 @@
1
- /* ==========================================================================
2
- TABLES
3
- ========================================================================== */
4
-
5
- table {
6
- margin-bottom: 1em;
7
- width: 100%;
8
- font-family: $global-font-family;
9
- font-size: $type-size-6;
10
- border-collapse: collapse;
11
- border: 1px solid $light-gray;
12
-
13
- & + table {
14
- margin-top: 1em;
15
- }
16
- }
17
-
18
- thead {
19
- background-color: $lighter-gray;
20
- border-bottom: 1px solid $light-gray;
21
- }
22
-
23
- th {
24
- padding: 0.5em;
25
- font-weight: bold;
26
- text-align: left;
27
- border-right: 1px solid $light-gray;
28
- }
29
-
30
- td {
31
- padding: 0.5em;
32
- border-bottom: 1px solid $light-gray;
33
- border-right: 1px solid $light-gray;
34
- }
35
-
36
- tr, td, th {
37
- vertical-align: middle;
1
+ /* ==========================================================================
2
+ TABLES
3
+ ========================================================================== */
4
+
5
+ table {
6
+ margin-bottom: 1em;
7
+ width: 100%;
8
+ font-family: $global-font-family;
9
+ font-size: $type-size-6;
10
+ border-collapse: collapse;
11
+
12
+ & + table {
13
+ margin-top: 1em;
14
+ }
15
+ }
16
+
17
+ thead {
18
+ background-color: $lighter-gray;
19
+ border-bottom: 2px solid $light-gray;
20
+ }
21
+
22
+ th {
23
+ padding: 0.5em;
24
+ font-weight: bold;
25
+ text-align: left;
26
+ }
27
+
28
+ td {
29
+ padding: 0.5em;
30
+ border-bottom: 1px solid $light-gray;
31
+ }
32
+
33
+ tr,
34
+ td,
35
+ th {
36
+ vertical-align: middle;
38
37
  }
@@ -1,9 +1,5 @@
1
- ---
2
- layout:
3
- ---
4
-
5
1
  /*!
6
- * Minimal Mistakes Jekyll Theme 4.5.0 by Michael Rose
2
+ * Minimal Mistakes Jekyll Theme 4.5.1 by Michael Rose
7
3
  * Copyright 2017 Michael Rose - mademistakes.com | @mmistakes
8
4
  * Licensed under MIT
9
5
  */
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.5.0
4
+ version: 4.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Rose
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-04 00:00:00.000000000 Z
11
+ date: 2017-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll