Add markdown styling
This commit is contained in:
parent
44ac35e21b
commit
d168323de9
|
@ -167,10 +167,10 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if yaml.description %}
|
{% if yaml.description %}
|
||||||
<center>{{ yaml.description | markdown | safe }}</center>
|
<div class="markdown">{{ yaml.description | markdown | safe }}</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if xml.description %}
|
{% if xml.description %}
|
||||||
<center>{{ xml.description | markdown | safe }}</center>
|
<div class="markdown">{{ xml.description | markdown | safe }}</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if yaml.steps %}
|
{% if yaml.steps %}
|
||||||
|
|
20
style.scss
20
style.scss
|
@ -130,6 +130,26 @@
|
||||||
border-radius: 1mm;
|
border-radius: 1mm;
|
||||||
background-color: #ddd;
|
background-color: #ddd;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.markdown {
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
table {
|
||||||
|
margin-top:-0.3em;
|
||||||
|
margin-left:auto;
|
||||||
|
margin-right:auto;
|
||||||
|
th, td {
|
||||||
|
font-size: 2.5mm; /* user agent style override */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p + table {
|
||||||
|
margin-top:-1em;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ul, ol {
|
ul, ol {
|
||||||
padding-left: 1.5em;
|
padding-left: 1.5em;
|
||||||
|
|
Loading…
Reference in New Issue