aboutsummaryrefslogtreecommitdiff
path: root/style/_markdown.scss
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-01-26 17:09:56 +0100
committerNoah Loomans <noahloomans@gmail.com>2017-01-26 17:09:56 +0100
commit1c02ee2f5136fd56bb480344af59e735974697ff (patch)
tree043e2903929788aeefb92ed74ef299b9bc87cc25 /style/_markdown.scss
parent30763fce71e58248be4a5f2e3a43d2dc7d8410b5 (diff)
Create new layout
Signed-off-by: Noah Loomans <noahloomans@gmail.com>
Diffstat (limited to 'style/_markdown.scss')
-rw-r--r--style/_markdown.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/style/_markdown.scss b/style/_markdown.scss
new file mode 100644
index 0000000..57d17dd
--- /dev/null
+++ b/style/_markdown.scss
@@ -0,0 +1,16 @@
+h1, h2, h3 {
+ font-size: 1em;
+ font-weight: bold;
+}
+
+h1::before {
+ content: '# ';
+}
+
+h2::before {
+ content: '## ';
+}
+
+h3::before {
+ content: '### ';
+}