diff options
-rw-r--r-- | site/static/site.css | 11 | ||||
-rw-r--r-- | site/templates/shortcodes/tidbit.html | 5 |
2 files changed, 16 insertions, 0 deletions
diff --git a/site/static/site.css b/site/static/site.css new file mode 100644 index 0000000..f296cc4 --- /dev/null +++ b/site/static/site.css | |||
@@ -0,0 +1,11 @@ | |||
1 | |||
2 | .content blockquote { | ||
3 | border-left: #689d6a 8px solid; | ||
4 | |||
5 | } | ||
6 | .content blockquote.tidbit { | ||
7 | border-left: #928f74 8px solid; | ||
8 | font-size: 12px; | ||
9 | color: #282828; | ||
10 | } | ||
11 | |||
diff --git a/site/templates/shortcodes/tidbit.html b/site/templates/shortcodes/tidbit.html new file mode 100644 index 0000000..7023578 --- /dev/null +++ b/site/templates/shortcodes/tidbit.html | |||
@@ -0,0 +1,5 @@ | |||
1 | <blockquote class="tidbit"> | ||
2 | <p> | ||
3 | {{ body }} | ||
4 | </p> | ||
5 | </blockquote> | ||