diff options
author | Brandon Mathis <brandon@imathis.com> | 2013-05-07 00:49:24 -0500 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2013-05-07 00:49:24 -0500 |
commit | ac5d2538ece38c62e073d2271eac35db9fe59237 (patch) | |
tree | 572f78fb8610148390166a4e9ca8fa3ebb99890f /.themes/classic/sass | |
parent | 21985f25d5bc9096cfe2640c2b000013fdaad6fc (diff) | |
download | my_new_personal_website-ac5d2538ece38c62e073d2271eac35db9fe59237.tar.xz my_new_personal_website-ac5d2538ece38c62e073d2271eac35db9fe59237.zip |
Footnotes styling updates
Diffstat (limited to '.themes/classic/sass')
-rw-r--r-- | .themes/classic/sass/base/_typography.scss | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.themes/classic/sass/base/_typography.scss b/.themes/classic/sass/base/_typography.scss index 85256f0b..9a6bbacd 100644 --- a/.themes/classic/sass/base/_typography.scss +++ b/.themes/classic/sass/base/_typography.scss @@ -80,10 +80,12 @@ strong { font-weight: bold; } em { font-style: italic; } -sup, sub { font-size: 0.8em; position: relative; display: inline-block; } +sup, sub { font-size: 0.75em; position: relative; display: inline-block; padding: 0 .2em; line-height: .8em;} sup { top: -.5em; } sub { bottom: -.5em; } +a[rev='footnote']{ font-size: .75em; padding: 0 .3em; line-height: 1; } + q { font-style: italic; &:before { content: "\201C"; } &:after { content: "\201D"; } @@ -99,8 +101,6 @@ abbr, acronym { border-bottom: 1px dotted; cursor: help; } pre, code, tt { @extend .mono; } -sub, sup { line-height: 0; } - hr { margin-bottom: 0.2em; } small { font-size: .8em; } @@ -161,3 +161,4 @@ article blockquote { white-space: pre-wrap; word-wrap: break-word; } + |