diff options
-rw-r--r-- | static/style/cfbe.css | 10 | ||||
-rw-r--r-- | templates/base.html | 11 |
2 files changed, 12 insertions, 9 deletions
diff --git a/static/style/cfbe.css b/static/style/cfbe.css index 8bcd357..3cd4241 100644 --- a/static/style/cfbe.css +++ b/static/style/cfbe.css @@ -7,13 +7,13 @@ div#header h1 { font-size: 4em; line-height: 1.5em; margin-bottom: 0em; } div#logo { text-align: right; color: #d03; padding-top: 1.5em; } div#logo h1 { margin-top: 0.65em; margin-bottom: 0.15em; } -div.center-column { width: 50em; margin-left: 5em; } +div.center-column { width: 55em; margin-left: 5em; } div#content-wrap { display: inline-block; vertical-align: top; } div#content-pane { background-color: #fbfbfb; padding: 1.5em 2em; } div#external-pane { background-image: url(/static/images/left-arrow.png); background-repeat: no-repeat; width: 24em; padding: 0em; display: inline-block; } div#external-pane-content { margin-left: 18px; background-color: #fbfbfb; padding: 1.5em 1em 1px; } -div#footer { text-align: center; } +div#footer { text-align: center; width: 59em; } div#footer p { font-size: 0.9em; line-height: 1.666em; } div#nav { margin-bottom: 1.5em; } @@ -24,9 +24,9 @@ a:link, a:visited, a:active { color: #d03; text-decoration: none; font-weight: b a:hover { color: #60b305; } -table#bug-list { width: 100%; } -table#bug-list th { text-align: left; } -table tr td, table tr th { padding: 0px 5px; border: 0em; line-height: 2em; } +table#bug-list { width: 100%; border-collapse: collapse; border: 1px solid #ccc; } +table#bug-list td, table#bug-list th { border: 0em; border-bottom: 1px solid #ccc; text-align: left; } +table tr td, table tr th { padding: 0px 5px; line-height: 2.916em; } table { margin-bottom: 1.417em; } tr.stripe { background-color: #f5e5f0; } diff --git a/templates/base.html b/templates/base.html index 97fa453..8f8fb3d 100644 --- a/templates/base.html +++ b/templates/base.html @@ -55,10 +55,13 @@ </div> <div id="footer" class="center-column"> <p> - Site by <a href="http://stevelosh.com">Steve</a>. - Built with <a href="http://cherrypy.org">CherryPy</a>. - Templates by <a href="http://jinja.pocoo.org/2/">Jinja2</a>. - I've asked <a href="http://fecklessmind.com/2009/01/20/aardvark-css-framework/">aardvarks</a> for help. + <a href="">Cherry Flavored Bugs Everywhere</a> + was created by <a href="http://stevelosh.com">Steve</a> + using <a href="http://cherrypy.org">CherryPy</a>, + <a href="http://jinja.pocoo.org/2/">Jinja2</a>, + and <a href="http://jquery.com">jQuery</a>. + <br/> + He asked <a href="http://fecklessmind.com/2009/01/20/aardvark-css-framework/">aardvarks</a> for help. </p> </div> </div> |