From: Carl Worth Date: Fri, 1 Jun 2007 18:41:03 +0000 (-0700) Subject: Tweak margins in stylesheet X-Git-Url: https://git.cworth.org/git?p=cworth.org;a=commitdiff_plain;h=4d4813c54757dd4d24fff752d9e0e02e615505fb Tweak margins in stylesheet At least three things are fixed here: 1. Don't indent a

within an

  • 2. Align

    with rule separating content from footer 3. Indent with offsets of 2% instead of 4% --- diff --git a/src/local.css b/src/local.css index 99b8bbc..60e5c99 100644 --- a/src/local.css +++ b/src/local.css @@ -2,8 +2,8 @@ /* Add local styling here, instead of modifying style.css. */ body { - margin-left: 2%; - margin-right: 2%; + margin-left: 4%; + margin-right: 4%; } h1, .header, #footer { @@ -12,8 +12,8 @@ h1, .header, #footer { } #content { - margin-left: 4%; - margin-right: 4%; + margin-left: 2%; + margin-right: 2%; } h1,h2,h3,h4,h5,h6, .header { @@ -27,8 +27,12 @@ h2,h3,h4,h5,h6 { } p, ol, ul { - margin-left: 4%; - margin-right: 4%; + margin-left: 2%; + margin-right: 2%; +} + +li p { + margin-left: 0%; } pre { @@ -57,7 +61,6 @@ a:hover { } #footer { - margin-left: 2%; font-size: 80%; }