aboutsummaryrefslogtreecommitdiff
path: root/style
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-07-15 15:06:06 +0200
committerNoah Loomans <noahloomans@gmail.com>2017-07-15 15:06:06 +0200
commitf37241eb6327f30f418d9b3b86cac0cfff1348f2 (patch)
treee9dfba5643139a4576fc15a6a5e48e455b598cd1 /style
parent93f7b5c8544057cbb5656e12390d4b97df4cb6e4 (diff)
Add markdown style lists
Diffstat (limited to 'style')
-rw-r--r--style/_markdown.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/style/_markdown.scss b/style/_markdown.scss
index 57d17dd..63e53b8 100644
--- a/style/_markdown.scss
+++ b/style/_markdown.scss
@@ -14,3 +14,12 @@ h2::before {
h3::before {
content: '### ';
}
+
+ul:not(.no-markdown) {
+ list-style-type: none;
+ padding-left: 0;
+
+ li::before {
+ content: '\00a0- ';
+ }
+}