minimal-mistakes-jekyll 4.2.1 → 4.2.2

Sign up to get free protection for your applications and to get access to all the features.
data/_sass/_footer.scss CHANGED
@@ -1,80 +1,80 @@
1
- /* ==========================================================================
2
- FOOTER
3
- ========================================================================== */
4
-
5
- .page__footer {
6
- @include full();
7
- @include clearfix;
8
- /* sticky footer fix start */
9
- position: absolute;
10
- bottom: 0;
11
- width: 100%;
12
- clear: both;
13
- height: auto;
14
- /* sticky footer fix end */
15
- margin-top: 3em;
16
- color: mix(#fff, $gray, 25%);
17
- -webkit-animation: intro 0.3s both;
18
- animation: intro 0.3s both;
19
- -webkit-animation-delay: 0.45s;
20
- animation-delay: 0.45s;
21
- background-color: $lighter-gray;
22
- border-top: 1px solid $light-gray;
23
-
24
- footer {
25
- @include container;
26
- @include clearfix;
27
- margin-top: 2em;
28
- padding: 0 1em 2em;
29
-
30
- @include breakpoint($x-large) {
31
- max-width: $x-large;
32
- }
33
- }
34
-
35
- a {
36
- color: inherit;
37
- text-decoration: none;
38
-
39
- &:hover {
40
- text-decoration: underline;
41
- }
42
- }
43
-
44
- .fa {
45
- color: mix(#fff, $gray, 25%);
46
- }
47
- }
48
-
49
- .page__footer-copyright {
50
- font-family: $global-font-family;
51
- font-size: $type-size-7;
52
- }
53
-
54
- .page__footer-follow {
55
-
56
- ul {
57
- margin: 0;
58
- padding: 0;
59
- list-style-type: none;
60
- }
61
-
62
- li {
63
- display: inline-block;
64
- padding-top: 5px;
65
- padding-bottom: 5px;
66
- font-family: $sans-serif-narrow;
67
- font-size: $type-size-6;
68
- text-transform: uppercase;
69
- }
70
-
71
- li + li:before {
72
- content: "";
73
- padding-right: 5px;
74
- }
75
-
76
- a {
77
- padding-right: 10px;
78
- font-weight: bold;
79
- }
1
+ /* ==========================================================================
2
+ FOOTER
3
+ ========================================================================== */
4
+
5
+ .page__footer {
6
+ @include full();
7
+ @include clearfix;
8
+ /* sticky footer fix start */
9
+ position: absolute;
10
+ bottom: 0;
11
+ width: 100%;
12
+ clear: both;
13
+ height: auto;
14
+ /* sticky footer fix end */
15
+ margin-top: 3em;
16
+ color: mix(#fff, $gray, 25%);
17
+ -webkit-animation: intro 0.3s both;
18
+ animation: intro 0.3s both;
19
+ -webkit-animation-delay: 0.45s;
20
+ animation-delay: 0.45s;
21
+ background-color: $lighter-gray;
22
+ border-top: 1px solid $light-gray;
23
+
24
+ footer {
25
+ @include container;
26
+ @include clearfix;
27
+ margin-top: 2em;
28
+ padding: 0 1em 2em;
29
+
30
+ @include breakpoint($x-large) {
31
+ max-width: $x-large;
32
+ }
33
+ }
34
+
35
+ a {
36
+ color: inherit;
37
+ text-decoration: none;
38
+
39
+ &:hover {
40
+ text-decoration: underline;
41
+ }
42
+ }
43
+
44
+ .fa {
45
+ color: mix(#fff, $gray, 25%);
46
+ }
47
+ }
48
+
49
+ .page__footer-copyright {
50
+ font-family: $global-font-family;
51
+ font-size: $type-size-7;
52
+ }
53
+
54
+ .page__footer-follow {
55
+
56
+ ul {
57
+ margin: 0;
58
+ padding: 0;
59
+ list-style-type: none;
60
+ }
61
+
62
+ li {
63
+ display: inline-block;
64
+ padding-top: 5px;
65
+ padding-bottom: 5px;
66
+ font-family: $sans-serif-narrow;
67
+ font-size: $type-size-6;
68
+ text-transform: uppercase;
69
+ }
70
+
71
+ li + li:before {
72
+ content: "";
73
+ padding-right: 5px;
74
+ }
75
+
76
+ a {
77
+ padding-right: 10px;
78
+ font-weight: bold;
79
+ }
80
80
  }
data/_sass/_forms.scss CHANGED
@@ -1,391 +1,391 @@
1
- /* ==========================================================================
2
- Forms
3
- ========================================================================== */
4
-
5
- form {
6
- margin: 0 0 5px 0;
7
-
8
- fieldset {
9
- margin-bottom: 5px;
10
- padding: 0;
11
- border-width: 0;
12
- }
13
-
14
- legend {
15
- display: block;
16
- width: 100%;
17
- margin-bottom: 5px * 2;
18
- *margin-left: -7px;
19
- padding: 0;
20
- color: $text-color;
21
- border: 0;
22
- border-bottom: 1px solid mix(#fff, #000, 80%);
23
- white-space: normal;
24
- }
25
-
26
- p {
27
- margin-bottom: 5px / 2;
28
- }
29
-
30
- ul {
31
- list-style-type: none;
32
- margin: 0 0 5px 0;
33
- padding: 0;
34
- }
35
-
36
- br {
37
- display: none;
38
- }
39
- }
40
-
41
- label,
42
- input,
43
- button,
44
- select,
45
- textarea {
46
- vertical-align: baseline;
47
- *vertical-align: middle;
48
- }
49
-
50
- input,
51
- button,
52
- select,
53
- textarea {
54
- box-sizing: border-box;
55
- font-family: $sans-serif;
56
- }
57
-
58
- label {
59
- display: block;
60
- margin-bottom: 0.25em;
61
- color: $text-color;
62
- cursor: pointer;
63
-
64
- small {
65
- font-size: $type-size-6;
66
- }
67
-
68
- input,
69
- textarea,
70
- select {
71
- display: block;
72
- }
73
- }
74
-
75
- input,
76
- textarea,
77
- select {
78
- display: inline-block;
79
- width: 100%;
80
- padding: 0.25em;
81
- margin-bottom: 0.5em;
82
- color: $text-color;
83
- background-color: #fff;
84
- border: 1px solid mix(#fff, #000, 80%);
85
- border-radius: $border-radius;
86
- box-shadow: $box-shadow;
87
-
88
- &:hover {
89
- border-color: mix(#fff, $primary-color, 50%);
90
- }
91
- }
92
-
93
- .input-mini {
94
- width: 60px;
95
- }
96
-
97
- .input-small {
98
- width: 90px;
99
- }
100
-
101
- input[type="image"],
102
- input[type="checkbox"],
103
- input[type="radio"] {
104
- width: auto;
105
- height: auto;
106
- padding: 0;
107
- margin: 3px 0;
108
- *margin-top: 0;
109
- line-height: normal;
110
- cursor: pointer;
111
- border-radius: 0;
112
- border: 0 \9;
113
- }
114
-
115
- input[type="checkbox"],
116
- input[type="radio"] {
117
- box-sizing: border-box;
118
- padding: 0;
119
- *width: 13px;
120
- *height: 13px;
121
- }
122
-
123
- input[type="image"] {
124
- border: 0;
125
- box-shadow: none;
126
- }
127
-
128
- input[type="file"] {
129
- width: auto;
130
- padding: initial;
131
- line-height: initial;
132
- border: initial;
133
- background-color: transparent;
134
- background-color: initial;
135
- box-shadow: none;
136
- }
137
-
138
- input[type="button"],
139
- input[type="reset"],
140
- input[type="submit"] {
141
- width: auto;
142
- height: auto;
143
- cursor: pointer;
144
- *overflow: visible;
145
- }
146
-
147
- select,
148
- input[type="file"] {
149
- *margin-top: 4px;
150
- }
151
-
152
- select {
153
- width: auto;
154
- background-color: #fff;
155
- }
156
-
157
- select[multiple],
158
- select[size] {
159
- height: auto;
160
- }
161
-
162
- textarea {
163
- resize: vertical;
164
- height: auto;
165
- overflow: auto;
166
- vertical-align: top;
167
- }
168
-
169
- input[type="hidden"] {
170
- display: none;
171
- }
172
-
173
- .form {
174
- position: relative;
175
- }
176
-
177
- .radio,
178
- .checkbox {
179
- padding-left: 18px;
180
- font-weight: normal;
181
- }
182
-
183
- .radio input[type="radio"],
184
- .checkbox input[type="checkbox"] {
185
- float: left;
186
- margin-left: -18px;
187
- }
188
-
189
- .radio.inline,
190
- .checkbox.inline {
191
- display: inline-block;
192
- padding-top: 5px;
193
- margin-bottom: 0;
194
- vertical-align: middle;
195
- }
196
-
197
- .radio.inline + .radio.inline,
198
- .checkbox.inline + .checkbox.inline {
199
- margin-left: 10px;
200
- }
201
-
202
-
203
- /*
204
- Disabled state
205
- ========================================================================== */
206
-
207
- input[disabled],
208
- select[disabled],
209
- textarea[disabled],
210
- input[readonly],
211
- select[readonly],
212
- textarea[readonly] {
213
- opacity: 0.5;
214
- cursor: not-allowed;
215
- }
216
-
217
-
218
- /*
219
- Focus & active state
220
- ========================================================================== */
221
-
222
- input:focus,
223
- textarea:focus {
224
- border-color: $primary-color;
225
- outline: 0;
226
- outline: thin dotted \9;
227
- }
228
-
229
- input[type="file"]:focus,
230
- input[type="radio"]:focus,
231
- input[type="checkbox"]:focus,
232
- select:focus {
233
- box-shadow: none;
234
- }
235
-
236
-
237
- /*
238
- Help text
239
- ========================================================================== */
240
-
241
- .help-block,
242
- .help-inline {
243
- color: $info-color;
244
- }
245
-
246
- .help-block {
247
- display: block;
248
- margin-bottom: 1em;
249
- line-height: 1em;
250
- }
251
-
252
- .help-inline {
253
- display: inline-block;
254
- vertical-align: middle;
255
- padding-left: 5px;
256
- }
257
-
258
-
259
- /*
260
- .form-inline
261
- ========================================================================== */
262
-
263
- .form-inline input,
264
- .form-inline textarea,
265
- .form-inline select {
266
- display: inline-block;
267
- margin-bottom: 0;
268
- }
269
-
270
- .form-inline label {
271
- display: inline-block;
272
- }
273
-
274
- .form-inline .radio,
275
- .form-inline .checkbox,
276
- .form-inline .radio {
277
- padding-left: 0;
278
- margin-bottom: 0;
279
- vertical-align: middle;
280
- }
281
-
282
- .form-inline .radio input[type="radio"],
283
- .form-inline .checkbox input[type="checkbox"] {
284
- float: left;
285
- margin-left: 0;
286
- margin-right: 3px; }
287
-
288
-
289
- /*
290
- .form-search
291
- ========================================================================== */
292
-
293
- .form-search input,
294
- .form-search textarea,
295
- .form-search select {
296
- display: inline-block;
297
- margin-bottom: 0;
298
- }
299
-
300
- .form-search .search-query {
301
- padding-left: 14px;
302
- padding-right: 14px;
303
- margin-bottom: 0;
304
- border-radius: 14px;
305
- }
306
-
307
- .form-search label {
308
- display: inline-block;
309
- }
310
-
311
- .form-search .radio,
312
- .form-search .checkbox,
313
- .form-inline .radio {
314
- padding-left: 0;
315
- margin-bottom: 0;
316
- vertical-align: middle;
317
- }
318
-
319
- .form-search .radio input[type="radio"],
320
- .form-search .checkbox input[type="checkbox"] {
321
- float: left;
322
- margin-left: 0;
323
- margin-right: 3px;
324
- }
325
-
326
-
327
- /*
328
- .form--loading
329
- ========================================================================== */
330
-
331
- .form--loading:before {
332
- content: '';
333
- }
334
-
335
- .form--loading .form__spinner {
336
- display: block;
337
- }
338
-
339
- .form:before {
340
- position: absolute;
341
- top: 0;
342
- left: 0;
343
- width: 100%;
344
- height: 100%;
345
- background-color: rgba(255, 255, 255, 0.7);
346
- z-index: 10;
347
- }
348
-
349
- .form__spinner {
350
- display: none;
351
- position: absolute;
352
- top: 50%;
353
- left: 50%;
354
- z-index: 11;
355
- }
356
-
357
-
358
-
359
- /*
360
- Google search form
361
- ========================================================================== */
362
-
363
- #goog-fixurl {
364
- ul {
365
- list-style: none;
366
- margin-left: 0;
367
- padding-left: 0;
368
- li {
369
- list-style-type: none;
370
- }
371
- }
372
- }
373
-
374
- #goog-wm-qt {
375
- width: auto;
376
- margin-right: 10px;
377
- margin-bottom: 20px;
378
- padding: 8px 20px;
379
- display: inline-block;
380
- font-size: $type-size-6;
381
- background-color: #fff;
382
- color: #000;
383
- border-width: 2px !important;
384
- border-style: solid !important;
385
- border-color: lighten(#000,50);
386
- border-radius: $border-radius;
387
- }
388
-
389
- #goog-wm-sb {
390
- @extend .btn;
1
+ /* ==========================================================================
2
+ Forms
3
+ ========================================================================== */
4
+
5
+ form {
6
+ margin: 0 0 5px 0;
7
+
8
+ fieldset {
9
+ margin-bottom: 5px;
10
+ padding: 0;
11
+ border-width: 0;
12
+ }
13
+
14
+ legend {
15
+ display: block;
16
+ width: 100%;
17
+ margin-bottom: 5px * 2;
18
+ *margin-left: -7px;
19
+ padding: 0;
20
+ color: $text-color;
21
+ border: 0;
22
+ border-bottom: 1px solid mix(#fff, #000, 80%);
23
+ white-space: normal;
24
+ }
25
+
26
+ p {
27
+ margin-bottom: 5px / 2;
28
+ }
29
+
30
+ ul {
31
+ list-style-type: none;
32
+ margin: 0 0 5px 0;
33
+ padding: 0;
34
+ }
35
+
36
+ br {
37
+ display: none;
38
+ }
39
+ }
40
+
41
+ label,
42
+ input,
43
+ button,
44
+ select,
45
+ textarea {
46
+ vertical-align: baseline;
47
+ *vertical-align: middle;
48
+ }
49
+
50
+ input,
51
+ button,
52
+ select,
53
+ textarea {
54
+ box-sizing: border-box;
55
+ font-family: $sans-serif;
56
+ }
57
+
58
+ label {
59
+ display: block;
60
+ margin-bottom: 0.25em;
61
+ color: $text-color;
62
+ cursor: pointer;
63
+
64
+ small {
65
+ font-size: $type-size-6;
66
+ }
67
+
68
+ input,
69
+ textarea,
70
+ select {
71
+ display: block;
72
+ }
73
+ }
74
+
75
+ input,
76
+ textarea,
77
+ select {
78
+ display: inline-block;
79
+ width: 100%;
80
+ padding: 0.25em;
81
+ margin-bottom: 0.5em;
82
+ color: $text-color;
83
+ background-color: #fff;
84
+ border: 1px solid mix(#fff, #000, 80%);
85
+ border-radius: $border-radius;
86
+ box-shadow: $box-shadow;
87
+
88
+ &:hover {
89
+ border-color: mix(#fff, $primary-color, 50%);
90
+ }
91
+ }
92
+
93
+ .input-mini {
94
+ width: 60px;
95
+ }
96
+
97
+ .input-small {
98
+ width: 90px;
99
+ }
100
+
101
+ input[type="image"],
102
+ input[type="checkbox"],
103
+ input[type="radio"] {
104
+ width: auto;
105
+ height: auto;
106
+ padding: 0;
107
+ margin: 3px 0;
108
+ *margin-top: 0;
109
+ line-height: normal;
110
+ cursor: pointer;
111
+ border-radius: 0;
112
+ border: 0 \9;
113
+ }
114
+
115
+ input[type="checkbox"],
116
+ input[type="radio"] {
117
+ box-sizing: border-box;
118
+ padding: 0;
119
+ *width: 13px;
120
+ *height: 13px;
121
+ }
122
+
123
+ input[type="image"] {
124
+ border: 0;
125
+ box-shadow: none;
126
+ }
127
+
128
+ input[type="file"] {
129
+ width: auto;
130
+ padding: initial;
131
+ line-height: initial;
132
+ border: initial;
133
+ background-color: transparent;
134
+ background-color: initial;
135
+ box-shadow: none;
136
+ }
137
+
138
+ input[type="button"],
139
+ input[type="reset"],
140
+ input[type="submit"] {
141
+ width: auto;
142
+ height: auto;
143
+ cursor: pointer;
144
+ *overflow: visible;
145
+ }
146
+
147
+ select,
148
+ input[type="file"] {
149
+ *margin-top: 4px;
150
+ }
151
+
152
+ select {
153
+ width: auto;
154
+ background-color: #fff;
155
+ }
156
+
157
+ select[multiple],
158
+ select[size] {
159
+ height: auto;
160
+ }
161
+
162
+ textarea {
163
+ resize: vertical;
164
+ height: auto;
165
+ overflow: auto;
166
+ vertical-align: top;
167
+ }
168
+
169
+ input[type="hidden"] {
170
+ display: none;
171
+ }
172
+
173
+ .form {
174
+ position: relative;
175
+ }
176
+
177
+ .radio,
178
+ .checkbox {
179
+ padding-left: 18px;
180
+ font-weight: normal;
181
+ }
182
+
183
+ .radio input[type="radio"],
184
+ .checkbox input[type="checkbox"] {
185
+ float: left;
186
+ margin-left: -18px;
187
+ }
188
+
189
+ .radio.inline,
190
+ .checkbox.inline {
191
+ display: inline-block;
192
+ padding-top: 5px;
193
+ margin-bottom: 0;
194
+ vertical-align: middle;
195
+ }
196
+
197
+ .radio.inline + .radio.inline,
198
+ .checkbox.inline + .checkbox.inline {
199
+ margin-left: 10px;
200
+ }
201
+
202
+
203
+ /*
204
+ Disabled state
205
+ ========================================================================== */
206
+
207
+ input[disabled],
208
+ select[disabled],
209
+ textarea[disabled],
210
+ input[readonly],
211
+ select[readonly],
212
+ textarea[readonly] {
213
+ opacity: 0.5;
214
+ cursor: not-allowed;
215
+ }
216
+
217
+
218
+ /*
219
+ Focus & active state
220
+ ========================================================================== */
221
+
222
+ input:focus,
223
+ textarea:focus {
224
+ border-color: $primary-color;
225
+ outline: 0;
226
+ outline: thin dotted \9;
227
+ }
228
+
229
+ input[type="file"]:focus,
230
+ input[type="radio"]:focus,
231
+ input[type="checkbox"]:focus,
232
+ select:focus {
233
+ box-shadow: none;
234
+ }
235
+
236
+
237
+ /*
238
+ Help text
239
+ ========================================================================== */
240
+
241
+ .help-block,
242
+ .help-inline {
243
+ color: $info-color;
244
+ }
245
+
246
+ .help-block {
247
+ display: block;
248
+ margin-bottom: 1em;
249
+ line-height: 1em;
250
+ }
251
+
252
+ .help-inline {
253
+ display: inline-block;
254
+ vertical-align: middle;
255
+ padding-left: 5px;
256
+ }
257
+
258
+
259
+ /*
260
+ .form-inline
261
+ ========================================================================== */
262
+
263
+ .form-inline input,
264
+ .form-inline textarea,
265
+ .form-inline select {
266
+ display: inline-block;
267
+ margin-bottom: 0;
268
+ }
269
+
270
+ .form-inline label {
271
+ display: inline-block;
272
+ }
273
+
274
+ .form-inline .radio,
275
+ .form-inline .checkbox,
276
+ .form-inline .radio {
277
+ padding-left: 0;
278
+ margin-bottom: 0;
279
+ vertical-align: middle;
280
+ }
281
+
282
+ .form-inline .radio input[type="radio"],
283
+ .form-inline .checkbox input[type="checkbox"] {
284
+ float: left;
285
+ margin-left: 0;
286
+ margin-right: 3px; }
287
+
288
+
289
+ /*
290
+ .form-search
291
+ ========================================================================== */
292
+
293
+ .form-search input,
294
+ .form-search textarea,
295
+ .form-search select {
296
+ display: inline-block;
297
+ margin-bottom: 0;
298
+ }
299
+
300
+ .form-search .search-query {
301
+ padding-left: 14px;
302
+ padding-right: 14px;
303
+ margin-bottom: 0;
304
+ border-radius: 14px;
305
+ }
306
+
307
+ .form-search label {
308
+ display: inline-block;
309
+ }
310
+
311
+ .form-search .radio,
312
+ .form-search .checkbox,
313
+ .form-inline .radio {
314
+ padding-left: 0;
315
+ margin-bottom: 0;
316
+ vertical-align: middle;
317
+ }
318
+
319
+ .form-search .radio input[type="radio"],
320
+ .form-search .checkbox input[type="checkbox"] {
321
+ float: left;
322
+ margin-left: 0;
323
+ margin-right: 3px;
324
+ }
325
+
326
+
327
+ /*
328
+ .form--loading
329
+ ========================================================================== */
330
+
331
+ .form--loading:before {
332
+ content: '';
333
+ }
334
+
335
+ .form--loading .form__spinner {
336
+ display: block;
337
+ }
338
+
339
+ .form:before {
340
+ position: absolute;
341
+ top: 0;
342
+ left: 0;
343
+ width: 100%;
344
+ height: 100%;
345
+ background-color: rgba(255, 255, 255, 0.7);
346
+ z-index: 10;
347
+ }
348
+
349
+ .form__spinner {
350
+ display: none;
351
+ position: absolute;
352
+ top: 50%;
353
+ left: 50%;
354
+ z-index: 11;
355
+ }
356
+
357
+
358
+
359
+ /*
360
+ Google search form
361
+ ========================================================================== */
362
+
363
+ #goog-fixurl {
364
+ ul {
365
+ list-style: none;
366
+ margin-left: 0;
367
+ padding-left: 0;
368
+ li {
369
+ list-style-type: none;
370
+ }
371
+ }
372
+ }
373
+
374
+ #goog-wm-qt {
375
+ width: auto;
376
+ margin-right: 10px;
377
+ margin-bottom: 20px;
378
+ padding: 8px 20px;
379
+ display: inline-block;
380
+ font-size: $type-size-6;
381
+ background-color: #fff;
382
+ color: #000;
383
+ border-width: 2px !important;
384
+ border-style: solid !important;
385
+ border-color: lighten(#000,50);
386
+ border-radius: $border-radius;
387
+ }
388
+
389
+ #goog-wm-sb {
390
+ @extend .btn;
391
391
  }