From 90b909cf21a06c0158013ec2320e41f81b20534e Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sat, 7 Nov 2009 12:11:50 -0500 Subject: [PATCH] Added styles for blockquotes and regular quotes ( elements). Changed some of the reset styles to use 'inherit' since we don't have to worry about Internet Explorer screwing them up. --- doc/project_overview/common.css | 17 +++++++++++++++-- doc/project_overview/reset.css | 4 ++-- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/doc/project_overview/common.css b/doc/project_overview/common.css index 21804db..3be3e01 100644 --- a/doc/project_overview/common.css +++ b/doc/project_overview/common.css @@ -1,3 +1,16 @@ +blockquote { + border-left: 2px #ddd solid; + color: #555; + font-size: 87.5%; /* (14.0 / 16.0) */ +} + + +blockquote p { + margin-left: 4em; + margin-right: 4em; +} + + body { background-color: #fff; color: #000; @@ -7,7 +20,7 @@ body { } -em { +em, q { font-style: italic; } @@ -41,7 +54,7 @@ li { } -p { +p, blockquote { line-height: 1.25; margin: 1.25em 0; } diff --git a/doc/project_overview/reset.css b/doc/project_overview/reset.css index c63e467..90e0a1e 100644 --- a/doc/project_overview/reset.css +++ b/doc/project_overview/reset.css @@ -23,8 +23,8 @@ table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; - font-weight: normal; - font-style: normal; + font-weight: inherit; + font-style: inherit; font-size: 100%; font-family: inherit; text-align: inherit; -- 2.43.2