diff --git a/editions/tw5.com/tiddlers/wikitext/Block Quotes in WikiText.tid b/editions/tw5.com/tiddlers/wikitext/Block Quotes in WikiText.tid index 69c48744c..bdc60b0ed 100644 --- a/editions/tw5.com/tiddlers/wikitext/Block Quotes in WikiText.tid +++ b/editions/tw5.com/tiddlers/wikitext/Block Quotes in WikiText.tid @@ -1,6 +1,6 @@ caption: Block Quotes created: 20131206154636572 -modified: 20160607092444424 +modified: 20170417165145317 tags: WikiText title: Block Quotes in WikiText type: text/vnd.tiddlywiki @@ -35,6 +35,13 @@ Operating systems are like a brick wall for our minds <<< Nobody ">> +The core includes the class `tc-big-quote` that renders block quotes with outsize double quotes: + +<> + ! Single-line Block Quotes The single-line syntax for block quotes is actually an extension of the syntax for [[Lists in WikiText]]. For example: diff --git a/themes/tiddlywiki/vanilla/base.tid b/themes/tiddlywiki/vanilla/base.tid index 7fecc5d79..95af9a1eb 100644 --- a/themes/tiddlywiki/vanilla/base.tid +++ b/themes/tiddlywiki/vanilla/base.tid @@ -119,6 +119,48 @@ blockquote { border-left: 5px solid <>; margin-left: 25px; padding-left: 10px; + quotes: "\201C""\201D""\2018""\2019"; +} + +blockquote.tc-big-quote { + font-family: Georgia, serif; + position: relative; + background: <>; + border-left: none; + margin-left: 50px; + margin-right: 50px; + padding: 10px; + border-radius: 8px; +} + +blockquote.tc-big-quote cite:before { + content: "\2014 \2009"; +} + +blockquote.tc-big-quote:before { + font-family: Georgia, serif; + color: <>; + content: open-quote; + font-size: 8em; + line-height: 0.1em; + margin-right: 0.25em; + vertical-align: -0.4em; + position: absolute; + left: -50px; + top: 42px; +} + +blockquote.tc-big-quote:after { + font-family: Georgia, serif; + color: <>; + content: close-quote; + font-size: 8em; + line-height: 0.1em; + margin-right: 0.25em; + vertical-align: -0.4em; + position: absolute; + right: -80px; + bottom: -20px; } dl dt {