diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2011-05-17 17:20:06 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net ; true> | 2011-05-17 17:20:06 -0700 |
commit | 251349acaf0f8fed47aad1610b5b627a7e684f27 (patch) | |
tree | 933268c87ea64e432cf511a0f77133380490976f /htdocs/css | |
parent | c7ede0038e98b386cbd1ef333d89faa2568b1cb1 (diff) |
Added category buttons and categories page
Diffstat (limited to 'htdocs/css')
-rw-r--r-- | htdocs/css/main.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/htdocs/css/main.css b/htdocs/css/main.css index 6f5349c..523eb8c 100644 --- a/htdocs/css/main.css +++ b/htdocs/css/main.css @@ -2,6 +2,8 @@ body { background: #E8E8E8; margin: 7px 0 0 0; padding: 0; + + font-family: Helvetica; } #nav, #buttonblock, #content, #footer { @@ -10,6 +12,29 @@ body { text-transform: uppercase; } +#nav ul li { + display: inline; + list-style: none; +} + +.bigbutton { + background: url('../images/bigbutton.png') repeat-x center top; + color: white; + padding: 0.3em 1em 0.3em 1em; + text-decoration: none; + border-radius: 5px; +} + +.smallbutton { + background: url('../images/smallbutton.png') repeat-x center top; + color: white; + padding: 0.3em 1em 0.3em 1em; + text-decoration: none; + border-radius: 5px; + font-size: 75%; +} + + #header { background: url('../images/headerbg.jpg') repeat-x center top; text-align: center; @@ -23,6 +48,10 @@ body { text-align: center; } +#buttonblock div { + display: inline-block; +} + #content { padding: 35px 0 35px 0; } |