minimal-mistakes-jekyll 4.0.5 → 4.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,13 +1,13 @@
1
- {% if site.comments.discourse.server %}
2
- {% capture canonical %}{% if site.permalink contains '.html' %}{{ page.url | absolute_url }}{% else %}{{ page.url | absolute_url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
3
- <script type="text/javascript">
4
- DiscourseEmbed = { discourseUrl: '//{{ site.comments.discourse.server }}/',
5
- discourseEmbedUrl: '{{ canonical }}' };
6
- (function () {
7
- var d = document.createElement('script'); d.type = 'text/javascript'; d.async = true;
8
- d.src = DiscourseEmbed.discourseUrl + 'javascripts/embed.js';
9
- (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);
10
- })();
11
- </script>
12
- <noscript>Please enable JavaScript to view the comments powered by [Discourse](http://forum.beta-europe.org/c/beta/website).</a></noscript>
1
+ {% if site.comments.discourse.server %}
2
+ {% capture canonical %}{% if site.permalink contains '.html' %}{{ page.url | absolute_url }}{% else %}{{ page.url | absolute_url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
3
+ <script type="text/javascript">
4
+ DiscourseEmbed = { discourseUrl: '//{{ site.comments.discourse.server }}/',
5
+ discourseEmbedUrl: '{{ canonical }}' };
6
+ (function () {
7
+ var d = document.createElement('script'); d.type = 'text/javascript'; d.async = true;
8
+ d.src = DiscourseEmbed.discourseUrl + 'javascripts/embed.js';
9
+ (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);
10
+ })();
11
+ </script>
12
+ <noscript>Please enable JavaScript to view the comments powered by [Discourse](http://forum.beta-europe.org/c/beta/website).</a></noscript>
13
13
  {% endif %}
data/_includes/figure ADDED
@@ -0,0 +1,12 @@
1
+ <figure class="{{ include.class }}">
2
+ <img src=
3
+ {% if include.image_path contains "://" %}
4
+ "{{ include.image_path }}"
5
+ {% else %}
6
+ "{{ include.image_path | absolute_url }}"
7
+ {% endif %}
8
+ alt="{% if include.alt %}{{ include.alt }}{% endif %}">
9
+ {% if include.caption %}
10
+ <figcaption>{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
11
+ {% endif %}
12
+ </figure>
@@ -1,68 +1,68 @@
1
- {% if paginator.total_pages > 1 %}
2
- <nav class="pagination">
3
- <ul>
4
- {% comment %} Link for previous page {% endcomment %}
5
- {% if paginator.previous_page %}
6
- {% if paginator.previous_page == 1 %}
7
- <li><a href="{{ '/' | absolute_url }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a></li>
8
- {% else %}
9
- <li><a href="{{ '/page' | absolute_url }}{{ paginator.previous_page | append: '/' }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a></li>
10
- {% endif %}
11
- {% else %}
12
- <li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</span></a></li>
13
- {% endif %}
14
-
15
- {% comment %} First page {% endcomment %}
16
- {% if paginator.page == 1 %}
17
- <li><a href="#" class="disabled current">1</a></li>
18
- {% else %}
19
- <li><a href="{{ '/' | absolute_url }}">1</a></li>
20
- {% endif %}
21
-
22
- {% assign page_start = 2 %}
23
- {% if paginator.page > 4 %}
24
- {% assign page_start = paginator.page | minus: 2 %}
25
- {% comment %} Ellipsis for truncated links {% endcomment %}
26
- <li><a href="#" class="disabled">&hellip;</a></li>
27
- {% endif %}
28
-
29
- {% assign page_end = paginator.total_pages | minus: 1 %}
30
- {% assign pages_to_end = paginator.total_pages | minus: paginator.page %}
31
- {% if pages_to_end > 4 %}
32
- {% assign page_end = paginator.page | plus: 2 %}
33
- {% endif %}
34
-
35
- {% for index in (page_start..page_end) %}
36
- {% if index == paginator.page %}
37
- <li><a href="{{ '/page' | absolute_url }}{{ index | append: '/' }}" class="disabled current">{{ index }}</a></li>
38
- {% else %}
39
- {% comment %} Distance from current page and this link {% endcomment %}
40
- {% assign dist = paginator.page | minus: index %}
41
- {% if dist < 0 %}
42
- {% comment %} Distance must be a positive value {% endcomment %}
43
- {% assign dist = 0 | minus: dist %}
44
- {% endif %}
45
- <li><a href="{{ '/page' | absolute_url }}{{ index | append: '/' }}">{{ index }}</a></li>
46
- {% endif %}
47
- {% endfor %}
48
-
49
- {% comment %} Ellipsis for truncated links {% endcomment %}
50
- {% if pages_to_end > 3 %}
51
- <li><a href="#" class="disabled">&hellip;</a></li>
52
- {% endif %}
53
-
54
- {% if paginator.page == paginator.total_pages %}
55
- <li><a href="#" class="disabled current">{{ paginator.page }}</a></li>
56
- {% else %}
57
- <li><a href="{{ '/page' | absolute_url }}{{ paginator.total_pages }}/">{{ paginator.total_pages }}</a></li>
58
- {% endif %}
59
-
60
- {% comment %} Link next page {% endcomment %}
61
- {% if paginator.next_page %}
62
- <li><a href="{{ '/page' | absolute_url }}{{ paginator.next_page }}/">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a></li>
63
- {% else %}
64
- <li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</span></a></li>
65
- {% endif %}
66
- </ul>
67
- </nav>
1
+ {% if paginator.total_pages > 1 %}
2
+ <nav class="pagination">
3
+ <ul>
4
+ {% comment %} Link for previous page {% endcomment %}
5
+ {% if paginator.previous_page %}
6
+ {% if paginator.previous_page == 1 %}
7
+ <li><a href="{{ '/' | absolute_url }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a></li>
8
+ {% else %}
9
+ <li><a href="{{ '/page' | absolute_url }}{{ paginator.previous_page | append: '/' }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a></li>
10
+ {% endif %}
11
+ {% else %}
12
+ <li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</span></a></li>
13
+ {% endif %}
14
+
15
+ {% comment %} First page {% endcomment %}
16
+ {% if paginator.page == 1 %}
17
+ <li><a href="#" class="disabled current">1</a></li>
18
+ {% else %}
19
+ <li><a href="{{ '/' | absolute_url }}">1</a></li>
20
+ {% endif %}
21
+
22
+ {% assign page_start = 2 %}
23
+ {% if paginator.page > 4 %}
24
+ {% assign page_start = paginator.page | minus: 2 %}
25
+ {% comment %} Ellipsis for truncated links {% endcomment %}
26
+ <li><a href="#" class="disabled">&hellip;</a></li>
27
+ {% endif %}
28
+
29
+ {% assign page_end = paginator.total_pages | minus: 1 %}
30
+ {% assign pages_to_end = paginator.total_pages | minus: paginator.page %}
31
+ {% if pages_to_end > 4 %}
32
+ {% assign page_end = paginator.page | plus: 2 %}
33
+ {% endif %}
34
+
35
+ {% for index in (page_start..page_end) %}
36
+ {% if index == paginator.page %}
37
+ <li><a href="{{ '/page' | absolute_url }}{{ index | append: '/' }}" class="disabled current">{{ index }}</a></li>
38
+ {% else %}
39
+ {% comment %} Distance from current page and this link {% endcomment %}
40
+ {% assign dist = paginator.page | minus: index %}
41
+ {% if dist < 0 %}
42
+ {% comment %} Distance must be a positive value {% endcomment %}
43
+ {% assign dist = 0 | minus: dist %}
44
+ {% endif %}
45
+ <li><a href="{{ '/page' | absolute_url }}{{ index | append: '/' }}">{{ index }}</a></li>
46
+ {% endif %}
47
+ {% endfor %}
48
+
49
+ {% comment %} Ellipsis for truncated links {% endcomment %}
50
+ {% if pages_to_end > 3 %}
51
+ <li><a href="#" class="disabled">&hellip;</a></li>
52
+ {% endif %}
53
+
54
+ {% if paginator.page == paginator.total_pages %}
55
+ <li><a href="#" class="disabled current">{{ paginator.page }}</a></li>
56
+ {% else %}
57
+ <li><a href="{{ '/page' | absolute_url }}{{ paginator.total_pages }}/">{{ paginator.total_pages }}</a></li>
58
+ {% endif %}
59
+
60
+ {% comment %} Link next page {% endcomment %}
61
+ {% if paginator.next_page %}
62
+ <li><a href="{{ '/page' | absolute_url }}{{ paginator.next_page }}/">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a></li>
63
+ {% else %}
64
+ <li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</span></a></li>
65
+ {% endif %}
66
+ </ul>
67
+ </nav>
68
68
  {% endif %}
data/_layouts/home.html CHANGED
@@ -1,11 +1,11 @@
1
- ---
2
- layout: archive
3
- ---
4
-
5
- <h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>
6
-
7
- {% for post in paginator.posts %}
8
- {% include archive-single.html %}
9
- {% endfor %}
10
-
11
- {% include paginator.html %}
1
+ ---
2
+ layout: archive
3
+ ---
4
+
5
+ <h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>
6
+
7
+ {% for post in paginator.posts %}
8
+ {% include archive-single.html %}
9
+ {% endfor %}
10
+
11
+ {% include paginator.html %}
data/_sass/_base.scss CHANGED
@@ -1,315 +1,315 @@
1
- /* ==========================================================================
2
- BASE ELEMENTS
3
- ========================================================================== */
4
-
5
- html {
6
- /* sticky footer fix */
7
- position: relative;
8
- min-height: 100%;
9
- }
10
-
11
- body {
12
- margin: 0;
13
- padding: 0;
14
- color: $text-color;
15
- font-family: $global-font-family;
16
- line-height: 1.5;
17
-
18
- &.overflow--hidden {
19
- /* when primary navigation is visible, the content in the background won't scroll */
20
- overflow: hidden;
21
- }
22
- }
23
-
24
- h1, h2, h3, h4, h5, h6 {
25
- margin: 2em 0 0.5em;
26
- line-height: 1.2;
27
- font-family: $header-font-family;
28
- font-weight: bold;
29
- }
30
-
31
- h1 {
32
- margin-top: 0;
33
- font-size: $type-size-3;
34
- }
35
-
36
- h2 {
37
- font-size: $type-size-4;
38
- }
39
-
40
- h3 {
41
- font-size: $type-size-5;
42
- }
43
-
44
- h4 {
45
- font-size: $type-size-6;
46
- }
47
-
48
- h5 {
49
- font-size: $type-size-6;
50
- }
51
-
52
- h6 {
53
- font-size: $type-size-6;
54
- }
55
-
56
- small, .small {
57
- font-size: $type-size-6;
58
- }
59
-
60
- p {
61
- margin-bottom: 1.3em;
62
- }
63
-
64
- u,
65
- ins {
66
- text-decoration: none;
67
- border-bottom: 1px solid $text-color;
68
- a {
69
- color: inherit;
70
- }
71
- }
72
-
73
- del a {
74
- color: inherit;
75
- }
76
-
77
- /* reduce orphans and widows when printing */
78
-
79
- p, pre, blockquote, ul, ol, dl, figure, table, fieldset {
80
- orphans: 3;
81
- widows: 3;
82
- }
83
-
84
- /* abbreviations */
85
-
86
- abbr[title],
87
- abbr[data-original-title] {
88
- text-decoration: none;
89
- cursor: help;
90
- border-bottom: 1px dotted $text-color;
91
- }
92
-
93
- /* blockquotes */
94
-
95
- blockquote {
96
- margin: 2em 1em 2em 0;
97
- padding-left: 1em;
98
- padding-right: 1em;
99
- font-style: italic;
100
- border-left: 0.25em solid $primary-color;
101
-
102
- cite {
103
- font-style: italic;
104
-
105
- &:before {
106
- content: "\2014";
107
- padding-right: 5px;
108
- }
109
- }
110
- }
111
-
112
- /* links */
113
-
114
- a {
115
- &:focus {
116
- @extend %tab-focus;
117
- }
118
-
119
- &:hover,
120
- &:active {
121
- outline: 0;
122
- }
123
- }
124
-
125
- /* code */
126
-
127
- tt, code, kbd, samp, pre {
128
- font-family: $monospace;
129
- }
130
-
131
- pre {
132
- overflow-x: auto; /* add scrollbars to wide code blocks*/
133
- }
134
-
135
- p > code,
136
- a > code,
137
- li > code,
138
- figcaption > code,
139
- td > code {
140
- padding-top: 0.1rem;
141
- padding-bottom: 0.1rem;
142
- font-size: $type-size-6;
143
- background: $code-background-color;
144
- border: 1px solid $lighter-gray;
145
- border-radius: $border-radius;
146
- box-shadow: $box-shadow;
147
-
148
- &:before, &:after {
149
- letter-spacing: -0.2em;
150
- content: "\00a0"; /* non-breaking space*/
151
- }
152
- }
153
-
154
- /* horizontal rule */
155
-
156
- hr {
157
- display: block;
158
- margin: 1em 0;
159
- border: 0;
160
- border-top: 1px solid $border-color;
161
- }
162
-
163
- /* lists */
164
-
165
- ul li,
166
- ol li {
167
- margin-bottom: 0.5em;
168
- }
169
-
170
- li ul,
171
- li ol {
172
- margin-top: 0.5em;
173
- }
174
-
175
- /*
176
- Media and embeds
177
- ========================================================================== */
178
-
179
- /* Figures and images */
180
-
181
- figure {
182
- display: -webkit-box;
183
- display: flex;
184
- -webkit-box-pack: justify;
185
- justify-content: space-between;
186
- -webkit-box-align: start;
187
- align-items: flex-start;
188
- flex-wrap: wrap;
189
- margin: 2em 0;
190
-
191
- img,
192
- iframe,
193
- .fluid-width-video-wrapper {
194
- margin-bottom: 1em;
195
- }
196
-
197
- img {
198
- width: 100%;
199
- border-radius: $border-radius;
200
- -webkit-transition: $global-transition;
201
- transition: $global-transition;
202
- }
203
-
204
- > a {
205
- display: block;
206
- }
207
-
208
- &.half {
209
- > a,
210
- > img {
211
- @include breakpoint($small) {
212
- width: calc(50% - 0.5em);
213
- }
214
- }
215
-
216
- figcaption {
217
- width: 100%;
218
- }
219
- }
220
-
221
- &.third {
222
- > a,
223
- > img {
224
- @include breakpoint($small) {
225
- width: calc(33.3333% - 0.5em);
226
- }
227
- }
228
-
229
- figcaption {
230
- width: 100%;
231
- }
232
- }
233
- }
234
-
235
- /* Figure captions */
236
-
237
- figcaption {
238
- margin-bottom: 0.5em;
239
- color: mix(#fff, $text-color, 25%);
240
- font-family: $caption-font-family;
241
- font-size: $type-size-6;
242
-
243
- a {
244
- color: inherit;
245
- text-decoration: none;
246
- border-bottom: 1px solid $light-gray;
247
- -webkit-transition: $global-transition;
248
- transition: $global-transition;
249
-
250
- &:hover {
251
- color: #000;
252
- border-bottom-color: #000;
253
- }
254
- }
255
- }
256
-
257
-
258
- /* Fix IE9 SVG bug */
259
-
260
- svg:not(:root) {
261
- overflow: hidden;
262
- }
263
-
264
-
265
- /*
266
- Navigation lists
267
- ========================================================================== */
268
-
269
- /**
270
- * Removes margins, padding, and bullet points from navigation lists
271
- *
272
- * Example usage:
273
- * <nav>
274
- * <ul>
275
- * <li><a href="#link-1">Link 1</a></li>
276
- * <li><a href="#link-2">Link 2</a></li>
277
- * <li><a href="#link-3">Link 3</a></li>
278
- * </ul>
279
- * </nav>
280
- */
281
-
282
- nav {
283
- ul {
284
- margin: 0;
285
- padding: 0;
286
- }
287
-
288
- li {
289
- list-style: none;
290
- }
291
-
292
- a {
293
- text-decoration: none;
294
- }
295
-
296
- /* override white-space for nested lists */
297
- ul li,
298
- ol li {
299
- margin-bottom: 0;
300
- }
301
-
302
- li ul,
303
- li ol {
304
- margin-top: 0;
305
- }
306
- }
307
-
308
- /*
309
- Global animation transition
310
- ========================================================================== */
311
-
312
- b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a, tr, td, form button, input[type="submit"], .btn, .highlight, .archive__item-teaser {
313
- -webkit-transition: $global-transition;
314
- transition: $global-transition;
1
+ /* ==========================================================================
2
+ BASE ELEMENTS
3
+ ========================================================================== */
4
+
5
+ html {
6
+ /* sticky footer fix */
7
+ position: relative;
8
+ min-height: 100%;
9
+ }
10
+
11
+ body {
12
+ margin: 0;
13
+ padding: 0;
14
+ color: $text-color;
15
+ font-family: $global-font-family;
16
+ line-height: 1.5;
17
+
18
+ &.overflow--hidden {
19
+ /* when primary navigation is visible, the content in the background won't scroll */
20
+ overflow: hidden;
21
+ }
22
+ }
23
+
24
+ h1, h2, h3, h4, h5, h6 {
25
+ margin: 2em 0 0.5em;
26
+ line-height: 1.2;
27
+ font-family: $header-font-family;
28
+ font-weight: bold;
29
+ }
30
+
31
+ h1 {
32
+ margin-top: 0;
33
+ font-size: $type-size-3;
34
+ }
35
+
36
+ h2 {
37
+ font-size: $type-size-4;
38
+ }
39
+
40
+ h3 {
41
+ font-size: $type-size-5;
42
+ }
43
+
44
+ h4 {
45
+ font-size: $type-size-6;
46
+ }
47
+
48
+ h5 {
49
+ font-size: $type-size-6;
50
+ }
51
+
52
+ h6 {
53
+ font-size: $type-size-6;
54
+ }
55
+
56
+ small, .small {
57
+ font-size: $type-size-6;
58
+ }
59
+
60
+ p {
61
+ margin-bottom: 1.3em;
62
+ }
63
+
64
+ u,
65
+ ins {
66
+ text-decoration: none;
67
+ border-bottom: 1px solid $text-color;
68
+ a {
69
+ color: inherit;
70
+ }
71
+ }
72
+
73
+ del a {
74
+ color: inherit;
75
+ }
76
+
77
+ /* reduce orphans and widows when printing */
78
+
79
+ p, pre, blockquote, ul, ol, dl, figure, table, fieldset {
80
+ orphans: 3;
81
+ widows: 3;
82
+ }
83
+
84
+ /* abbreviations */
85
+
86
+ abbr[title],
87
+ abbr[data-original-title] {
88
+ text-decoration: none;
89
+ cursor: help;
90
+ border-bottom: 1px dotted $text-color;
91
+ }
92
+
93
+ /* blockquotes */
94
+
95
+ blockquote {
96
+ margin: 2em 1em 2em 0;
97
+ padding-left: 1em;
98
+ padding-right: 1em;
99
+ font-style: italic;
100
+ border-left: 0.25em solid $primary-color;
101
+
102
+ cite {
103
+ font-style: italic;
104
+
105
+ &:before {
106
+ content: "\2014";
107
+ padding-right: 5px;
108
+ }
109
+ }
110
+ }
111
+
112
+ /* links */
113
+
114
+ a {
115
+ &:focus {
116
+ @extend %tab-focus;
117
+ }
118
+
119
+ &:hover,
120
+ &:active {
121
+ outline: 0;
122
+ }
123
+ }
124
+
125
+ /* code */
126
+
127
+ tt, code, kbd, samp, pre {
128
+ font-family: $monospace;
129
+ }
130
+
131
+ pre {
132
+ overflow-x: auto; /* add scrollbars to wide code blocks*/
133
+ }
134
+
135
+ p > code,
136
+ a > code,
137
+ li > code,
138
+ figcaption > code,
139
+ td > code {
140
+ padding-top: 0.1rem;
141
+ padding-bottom: 0.1rem;
142
+ font-size: $type-size-6;
143
+ background: $code-background-color;
144
+ border: 1px solid $lighter-gray;
145
+ border-radius: $border-radius;
146
+ box-shadow: $box-shadow;
147
+
148
+ &:before, &:after {
149
+ letter-spacing: -0.2em;
150
+ content: "\00a0"; /* non-breaking space*/
151
+ }
152
+ }
153
+
154
+ /* horizontal rule */
155
+
156
+ hr {
157
+ display: block;
158
+ margin: 1em 0;
159
+ border: 0;
160
+ border-top: 1px solid $border-color;
161
+ }
162
+
163
+ /* lists */
164
+
165
+ ul li,
166
+ ol li {
167
+ margin-bottom: 0.5em;
168
+ }
169
+
170
+ li ul,
171
+ li ol {
172
+ margin-top: 0.5em;
173
+ }
174
+
175
+ /*
176
+ Media and embeds
177
+ ========================================================================== */
178
+
179
+ /* Figures and images */
180
+
181
+ figure {
182
+ display: -webkit-box;
183
+ display: flex;
184
+ -webkit-box-pack: justify;
185
+ justify-content: space-between;
186
+ -webkit-box-align: start;
187
+ align-items: flex-start;
188
+ flex-wrap: wrap;
189
+ margin: 2em 0;
190
+
191
+ img,
192
+ iframe,
193
+ .fluid-width-video-wrapper {
194
+ margin-bottom: 1em;
195
+ }
196
+
197
+ img {
198
+ width: 100%;
199
+ border-radius: $border-radius;
200
+ -webkit-transition: $global-transition;
201
+ transition: $global-transition;
202
+ }
203
+
204
+ > a {
205
+ display: block;
206
+ }
207
+
208
+ &.half {
209
+ > a,
210
+ > img {
211
+ @include breakpoint($small) {
212
+ width: calc(50% - 0.5em);
213
+ }
214
+ }
215
+
216
+ figcaption {
217
+ width: 100%;
218
+ }
219
+ }
220
+
221
+ &.third {
222
+ > a,
223
+ > img {
224
+ @include breakpoint($small) {
225
+ width: calc(33.3333% - 0.5em);
226
+ }
227
+ }
228
+
229
+ figcaption {
230
+ width: 100%;
231
+ }
232
+ }
233
+ }
234
+
235
+ /* Figure captions */
236
+
237
+ figcaption {
238
+ margin-bottom: 0.5em;
239
+ color: mix(#fff, $text-color, 25%);
240
+ font-family: $caption-font-family;
241
+ font-size: $type-size-6;
242
+
243
+ a {
244
+ color: inherit;
245
+ text-decoration: none;
246
+ border-bottom: 1px solid $light-gray;
247
+ -webkit-transition: $global-transition;
248
+ transition: $global-transition;
249
+
250
+ &:hover {
251
+ color: #000;
252
+ border-bottom-color: #000;
253
+ }
254
+ }
255
+ }
256
+
257
+
258
+ /* Fix IE9 SVG bug */
259
+
260
+ svg:not(:root) {
261
+ overflow: hidden;
262
+ }
263
+
264
+
265
+ /*
266
+ Navigation lists
267
+ ========================================================================== */
268
+
269
+ /**
270
+ * Removes margins, padding, and bullet points from navigation lists
271
+ *
272
+ * Example usage:
273
+ * <nav>
274
+ * <ul>
275
+ * <li><a href="#link-1">Link 1</a></li>
276
+ * <li><a href="#link-2">Link 2</a></li>
277
+ * <li><a href="#link-3">Link 3</a></li>
278
+ * </ul>
279
+ * </nav>
280
+ */
281
+
282
+ nav {
283
+ ul {
284
+ margin: 0;
285
+ padding: 0;
286
+ }
287
+
288
+ li {
289
+ list-style: none;
290
+ }
291
+
292
+ a {
293
+ text-decoration: none;
294
+ }
295
+
296
+ /* override white-space for nested lists */
297
+ ul li,
298
+ ol li {
299
+ margin-bottom: 0;
300
+ }
301
+
302
+ li ul,
303
+ li ol {
304
+ margin-top: 0;
305
+ }
306
+ }
307
+
308
+ /*
309
+ Global animation transition
310
+ ========================================================================== */
311
+
312
+ b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a, tr, td, form button, input[type="submit"], .btn, .highlight, .archive__item-teaser {
313
+ -webkit-transition: $global-transition;
314
+ transition: $global-transition;
315
315
  }