diff options
author | Blanksøgård <web-bsg@coreander.jones.dk> | 2007-10-28 19:36:51 +0100 |
---|---|---|
committer | Blanksøgård <web-bsg@coreander.jones.dk> | 2007-10-28 19:36:51 +0100 |
commit | 873a1d579357103f1e70e49979aab7dfd1bf0a5d (patch) | |
tree | fcb79b23cfc3548a09dca06bf4d0ea97b00dcb07 | |
parent | 28185280f91ebf22aaf128fcf95e31d9ca683067 (diff) |
Add style to (and around) new container class, and to content.
-rw-r--r-- | local.css | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -3,8 +3,29 @@ /* Add local styling here, instead of modifying style.css. */ /* sidebar left (not right) */ + +body { + background-color: darkgrey; +} + +#container { + background-color:white; + border-style:solid; + border-width:2px; + margin:10px 12%; +} + #sidebar { float: left; margin-left: inherit; margin-right: 40px; } + +#content { + line-height: 3ex; + width: 20ex; + float: right; + margin-left: 40px; + margin-bottom: 40px; + padding: 2ex 2ex; +} |