diff options
author | Nick White <git@njw.me.uk> | 2010-05-09 14:30:39 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2010-05-09 14:30:39 +0100 |
commit | 1acd9c884a235dc9ae8be65b372f02f10b7d26fa (patch) | |
tree | 5579cb9ce56cbc185c383402fa236030908df2dd | |
parent | f23301d2c1d617028a7b1ebafbfa3c72bd00f19f (diff) | |
download | njw-website-1acd9c884a235dc9ae8be65b372f02f10b7d26fa.tar.bz2 njw-website-1acd9c884a235dc9ae8be65b372f02f10b7d26fa.zip |
Separate screen-specific body style from rest
-rw-r--r-- | includes/style.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/style.css b/includes/style.css index 1ef0615..eed46a8 100644 --- a/includes/style.css +++ b/includes/style.css @@ -1,6 +1,7 @@ /* See COPYING file for copyright, license and warranty details. */ -@media screen { body { font-family: sans-serif; width: 45em; max-width: 85%; margin: auto; }} +body { width: 45em; margin: auto; } +@media screen { body { font-family: sans-serif; max-width: 85%; } h1 { text-align: center; font-size: 1.6em; } h2 { font-size: 1.2em; font-weight: normal; border-bottom: thin solid black; } h3 { font-size: 1.1em; font-weight: normal; text-align: center; } |