diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-11-14 03:01:06 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-14 03:01:06 +0100 |
commit | b08105bfe7a5aa1e8467dae84601a585f490318a (patch) | |
tree | 2edc38722a7bbd2c070c8b0207c3bfdc1856b36d /src/style.css | |
parent | ebb2e8d6e7a981bf35c5df6d5b4ce5d9ec0429cb (diff) |
Use single quotes
Diffstat (limited to 'src/style.css')
-rw-r--r-- | src/style.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/style.css b/src/style.css index 753de28..1ea926b 100644 --- a/src/style.css +++ b/src/style.css @@ -77,8 +77,8 @@ h2 { font-size: 1.2rem; } a { color: var(--accent); } a:hover { text-decoration: none; } -blockquote > p:first-child::before { content: '“'; } -blockquote > p:last-child::after { content: '”'; } +blockquote > p:first-child::before { content: '‘'; } +blockquote > p:last-child::after { content: '’'; } blockquote + figcaption::before { content: '— '; } blockquote, blockquote + figcaption { font-style: italic; } |