diff options
author | raylu <raylu@cmu.edu> | 2011-05-16 01:19:04 -0400 |
---|---|---|
committer | raylu <raylu@cmu.edu> | 2011-05-16 01:19:04 -0400 |
commit | f60a3158947a566518522af14ec4b92acfaea3d1 (patch) | |
tree | 780646d29a8d55bdd8d216b56ab9954ce8b7e710 /static | |
parent | f377715900bb5c95938ef749eeebb944c5c9bd2d (diff) | |
download | pyc-f60a3158947a566518522af14ec4b92acfaea3d1.tar.xz |
Site design
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 47 |
1 files changed, 46 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index 0c37846..395dfd1 100644 --- a/static/style.css +++ b/static/style.css @@ -1,3 +1,42 @@ +body { + background-color: #000; + color: #eee; +} + +a, a:visited, a:active { + color: #08a; + text-decoration: none; +} +a:hover { + color: #0ae; + text-decoration: underline; +} + +#wrap { + width: 1000px; + margin: auto; + margin-top: 25px; +} + +#wrap #content { + width: 750px; + background-color: #111; + padding: 15px; + float: right; +} + +#wrap #nav { + float: left; + width: 175px; +} + +#wrap #nav div.nav { + width: 175px; + background-color: #111; + padding: 15px; + margin-bottom: 15px; +} + table#lab { border-collapse: collapse; border: 1px solid #000; @@ -10,5 +49,11 @@ table#lab { padding: 5px; } #lab tr.staff td { - background-color: #ddd; + color: #888; +} + +input { + background-color: #111; + color: #eee; + border: 1 solid #eee; } |