diff options
author | P. J. McDermott <pjm@nac.net> | 2012-05-27 00:57:50 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-05-27 00:57:50 (EDT) |
commit | d19ec1d0e05482c4672d99de359c6db11854ec05 (patch) | |
tree | 9a5c9f3e64ffe70ef8dd4946a02f98d2c56e7038 | |
parent | 267635a495984730b49422f25adc1def20eb6ff4 (diff) |
Add margins to text elements.
-rw-r--r-- | main.css | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -13,16 +13,24 @@ h1 { border-width: 0px 0px 1px 0px; border-style: solid; border-color: #999999; + margin: 0px 0px 8px 0px; } h2 { font-size: 14pt; font-family: sans-serif; + margin: 0px 0px 8px 0px; } h3 { font-size: 12pt; font-family: sans-serif; + margin: 0px 0px 8px 0px; } -p, li { +p { + font-size: 10pt; + font-family: sans-serif; + margin: 0px 0px 8px 0px; +} +li { font-size: 10pt; font-family: sans-serif; } |