Added more bottom spacing for image captions

This commit is contained in:
squidfunk 2020-09-22 18:08:09 +02:00
parent fbf7e04c0f
commit 01f1aed900
8 changed files with 8 additions and 9 deletions

View File

@ -90,7 +90,6 @@ _Result_:
<figcaption>Image caption</figcaption>
</figure>
### Image lazy-loading
Modern browsers provide [native support for lazy-loading images][4] through the

View File

@ -5,8 +5,8 @@
"assets/javascripts/vendor.js.map": "assets/javascripts/vendor.581c8fc6.min.js.map",
"assets/javascripts/worker/search.js": "assets/javascripts/worker/search.5eca75d3.min.js",
"assets/javascripts/worker/search.js.map": "assets/javascripts/worker/search.5eca75d3.min.js.map",
"assets/stylesheets/main.css": "assets/stylesheets/main.077507d7.min.css",
"assets/stylesheets/main.css.map": "assets/stylesheets/main.077507d7.min.css.map",
"assets/stylesheets/main.css": "assets/stylesheets/main.4a9ebb79.min.css",
"assets/stylesheets/main.css.map": "assets/stylesheets/main.4a9ebb79.min.css.map",
"assets/stylesheets/overrides.css": "assets/stylesheets/overrides.9514a156.min.css",
"assets/stylesheets/overrides.css.map": "assets/stylesheets/overrides.9514a156.min.css.map",
"assets/stylesheets/palette.css": "assets/stylesheets/palette.ff0a5ce4.min.css",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -44,7 +44,7 @@
{% endif %}
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.077507d7.min.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.4a9ebb79.min.css' | url }}">
{% if palette.scheme or palette.primary or palette.accent %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.ff0a5ce4.min.css' | url }}">
{% endif %}

View File

@ -457,7 +457,7 @@ kbd {
// Figure captions
figcaption {
max-width: px2rem(480px);
margin: 0.5em auto;
margin: 0.5em auto 2em;
font-style: italic;
}