diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-20 00:54:02 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-20 00:54:02 +0000 |
commit | 681197a265f1dd3873780fdcf0b5f1e8fa0150ab (patch) | |
tree | fe8aafe29cf5f3d6d5a285c330147c9e3f3668c0 /installer/install.css | |
parent | d51955c8efa78d7f0a0ca8c138c2eebaf5ecb975 (diff) |
Web based installer. It's still got some rough edges, but you can now
do a complete CLI or web based install.
Diffstat (limited to 'installer/install.css')
-rw-r--r-- | installer/install.css | 51 |
1 files changed, 49 insertions, 2 deletions
diff --git a/installer/install.css b/installer/install.css index 36f7f321..eda3e14a 100644 --- a/installer/install.css +++ b/installer/install.css @@ -1,6 +1,11 @@ +h1, h2, h3 { + margin-bottom: .1em; +} + body { background: #eee; font-family: Trebuchet MS; + font-size: 1.1em; } div#outer { @@ -16,6 +21,48 @@ div#inner { margin: 0px; } -h1, h2, h3 { - margin-bottom: .1em; +div#footer { + border-top: 1px solid #ccc; + margin: 1em; +} + +.error { + border: 1px solid red; + background: #fcc; + padding: 4px; +} + +.success { + border: 1px solid green; + background: #cfc; + padding: 4px; +} + +p { + margin: 0px; + padding: 0px; +} + +fieldset { + border: 0px; + padding-left: 0px; + margin-top: 1em; +} + +fieldset legend { + font-weight: bold; + padding-left: 0px; +} + +table#db_info { + padding-left: 2em; +} + +table td { + padding-right: 1em; +} + +code { + background: #eee; + padding: 2px; } |