diff options
-rw-r--r-- | www/static/static.css | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/www/static/static.css b/www/static/static.css index 472d158..1915ed2 100644 --- a/www/static/static.css +++ b/www/static/static.css @@ -50,7 +50,7 @@ hr { height: 3px; } .error { - height: 0px; +/* height: 0px; */ font-size: 11pt; font-weight: bold; color: #f33; @@ -290,6 +290,7 @@ body { padding: 0px 10px 0px 5px; } #content h1 { + display: block; clear: both; height: 18px; padding: 2px 0px 0px 5px; @@ -306,6 +307,7 @@ body { } #content h2 { + display: block; clear: both; height: 18px; padding: 2px 0px 0px 10px; @@ -321,10 +323,11 @@ body { color: #5c7b99; } #content h3 { + display: block; clear: both; height: 14px; padding: 0px 0px 0px 15px; - margin: 0px 0px 2px -5px; + margin: 20px 0px 2px -5px; text-decoration: none; font-size: 12px; font-weight: thin; @@ -338,6 +341,11 @@ body { #content p { clear: both; + display: block; +} +#content p.error { + clear: both; + display: block; } #content dt { @@ -356,6 +364,7 @@ body { } #content dd { + display: block; float: left; width: 68%; color: #444; @@ -365,6 +374,9 @@ body { font-weight: light; /* background: green; */ } +#content dd.error { + color: red; +} #content textarea { width: 99%; |