X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/e37dd15bbf8683bab8454ea0eec8e9968ce982b2..6d5f36a90fb9691f1ae26ff82db51b45ce8652a9:/code/static/layout.css diff --git a/code/static/layout.css b/code/static/layout.css index e5cc071..d579a93 100644 --- a/code/static/layout.css +++ b/code/static/layout.css @@ -1,3 +1,30 @@ -html,body { - height: 100%; +/* + Good layout ideas stolen from Debathena. + Hey, we use some different fonts (in style.css.) + And the background color is unmistakably different. + Some other things are tweaked too. +*/ + +/* This file contains screen-only layout declarations that won't be + used for printing. */ + +/* Make show up as a centered white box with rounded border, + over the darker enclosing . */ +html { + padding: .75em; + background: #09c; +} +body { + position: relative; + margin: 0 auto; + padding: 1.2em; + border: 1px solid black; + -moz-border-radius: .4em; + -webkit-border-radius: .4em; + border-radius: .4em; + background: #fff; +} + +body.help { + max-width: 50em; }