Skip to content

Commit 7cf3414

Browse files
committed
All: Move quote styles to blockquote block and reduce font-size
Also remove redundant font-family setting, as it was identical to the inherited font-family for body text. Fixes #454.
1 parent 3e2cde6 commit 7cf3414

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

themes/jquery/css/base.css

+11-5
Original file line numberDiff line numberDiff line change
@@ -1786,17 +1786,23 @@ pre b {
17861786

17871787
#content blockquote {
17881788
margin: 20px 0;
1789+
padding: 20px 30px;
1790+
background-color: #f2f2f2;
1791+
color: #828282;
1792+
position: relative;
1793+
font-size: 18px;
1794+
line-height: 26px;
1795+
font-style: italic;
17891796
}
17901797

17911798
#content blockquote p {
1792-
font: italic normal 23px/26px "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
1793-
color: #828282;
17941799
margin-left: 0;
17951800
margin-bottom: 0;
1796-
padding: 20px 30px;
1797-
position: relative;
17981801
text-shadow: 0 1px 0 #ffffff;
1799-
background-color: #f2f2f2;
1802+
}
1803+
#content blockquote b,
1804+
#content blockquote strong {
1805+
color: inherit;
18001806
}
18011807

18021808
#content ol,

0 commit comments

Comments
 (0)