diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-11-22 00:23:02 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-11-22 00:23:02 +0100 |
commit | 1ef8c7cb184ef7e9bea77e8b451ce94d12c786ce (patch) | |
tree | 7514bdff66e1c42fb7631639889f768bbb243457 | |
parent | b5ad0f5e393d3aff07df49994ef67017844ac670 (diff) | |
download | website-1ef8c7cb184ef7e9bea77e8b451ce94d12c786ce.tar.xz |
style: Fix blockquote quote placement
-rw-r--r-- | src/style.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/style.css b/src/style.css index 1af67d9..6753c86 100644 --- a/src/style.css +++ b/src/style.css @@ -99,8 +99,8 @@ blockquote:before { content: open-quote; font-size: 5rem; position:absolute; - left: -0.4rem; - top: 1.5rem; + left: -0.1rem; + top: 1.7rem; line-height: 0.1em; color: #ccc; } @@ -108,8 +108,8 @@ blockquote:after { content: close-quote; font-size: 5rem; position:absolute; - right: -0.4rem; - bottom: -1.2rem; + right: -0.1rem; + bottom: -1.1rem; line-height: 0.1em; color: #ccc; } |