Added block styles for critic extension

This commit is contained in:
squidfunk 2017-01-09 22:10:09 +01:00
parent 6136fc905f
commit 3568043dea
4 changed files with 29 additions and 3 deletions

View File

@ -165,6 +165,13 @@ Text can be {--deleted--} and replacement text {++added++}. This can also be
combined in {~~one~>a single~~} operation. {==Highlighting==} is also possible combined in {~~one~>a single~~} operation. {==Highlighting==} is also possible
{>>and comments can be added inline<<}. {>>and comments can be added inline<<}.
{==
This can also be applied to blocks, by putting the opening and closing tags on
separate lines and adding a new line between the tag and the content each.
==}
[15]: https://facelessuser.github.io/pymdown-extensions/extensions/critic/ [15]: https://facelessuser.github.io/pymdown-extensions/extensions/critic/
[16]: http://criticmarkup.com/ [16]: http://criticmarkup.com/

View File

@ -37,7 +37,7 @@
{% include "partials/fonts.html" %} {% include "partials/fonts.html" %}
{% endblock %} {% endblock %}
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-96d55a1439.css"> <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-6abc478b22.css">
{% if config.extra.palette %} {% if config.extra.palette %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-02ce7adcc2.palette.css"> <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-02ce7adcc2.palette.css">
{% endif %} {% endif %}

View File

@ -54,7 +54,7 @@
} }
// Comment // Comment
.comment.critic { .critic.comment {
background-color: $md-code-background; // TODO: rename, centralize somehow background-color: $md-code-background; // TODO: rename, centralize somehow
color: $md-code-color; color: $md-code-color;
box-shadow: box-shadow:
@ -71,4 +71,23 @@
vertical-align: -0.125em; vertical-align: -0.125em;
} }
} }
// Block
.critic.block {
display: block;
margin: 1em 0;
padding-right: 1.6rem;
padding-left: 1.6rem;
box-shadow: none;
// Decrease spacing on first element
:first-child {
margin-top: 0.5em;
}
// Decrease spacing on last element
:last-child {
margin-bottom: 0.5em;
}
}
} }