diff options
author | Arne Babenhauserheide <arne_bab@web.de> | 2009-06-08 09:29:52 +0200 |
---|---|---|
committer | Arne Babenhauserheide <arne_bab@web.de> | 2009-06-08 09:29:52 +0200 |
commit | c1b2cfe77067e78a90d4f33cc84d476292ff6928 (patch) | |
tree | 41cf29958ef6cf4a2b36763caeef76bc5cc1d1f8 /local.css | |
parent | 54c7b02daed090c93612231503b321c01f903c6f (diff) | |
download | web-c1b2cfe77067e78a90d4f33cc84d476292ff6928.tar.gz web-c1b2cfe77067e78a90d4f33cc84d476292ff6928.tar.bz2 web-c1b2cfe77067e78a90d4f33cc84d476292ff6928.zip |
Switched the layout of the statements from a table to css.
Diffstat (limited to 'local.css')
-rw-r--r-- | local.css | 43 |
1 files changed, 28 insertions, 15 deletions
@@ -258,19 +258,32 @@ a:hover border-style: dotted; } -#what-is { - width: 50%; - vertical-align: top; - text-align: justify; - padding-right: 1ex; - padding-top: 0.3em; - padding-bottom: 0.3em; -} - -#mission { - vertical-align: top; - text-align: justify; - padding-left: 1em; - padding-top: 0.3em; - padding-bottom: 0.3em; +#statements +{ + display: table; +} +.statement-title +{ + text-align: center; + font-weight: bold; +} +#what-is +{ + display: table-cell; + width: 50%; + vertical-align: top; + text-align: justify; + padding-right: 1ex; + padding-top: 0.3em; + padding-bottom: 0.3em; +} + +#mission +{ + display: table-cell; + vertical-align: top; + text-align: justify; + padding-left: 1em; + padding-top: 0.3em; + padding-bottom: 0.3em; } |