From 3c8b9dba04da6d66f7e592c3c1367a2367e1c5a5 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Mon, 3 Sep 2012 00:05:22 +0200 Subject: Domain edition. --- css/style.css | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 64 insertions(+), 3 deletions(-) (limited to 'css') diff --git a/css/style.css b/css/style.css index 87b0275..390a634 100644 --- a/css/style.css +++ b/css/style.css @@ -1,6 +1,6 @@ /* Global */ body { - font-family: "DejaVu Sans", Helvetica, Arial, sans-serif; + font-family: Helvetica, Arial, sans-serif; font-size: 11pt; line-height: 140%; color: #1a1a1a; @@ -8,6 +8,10 @@ body { .error { color: #FF0040; } +tt { + font-family: Inconsolata, "Lucida Console", "Droid Sans Mono", Cousine, monospace; +} + /* Login form */ @@ -30,8 +34,9 @@ table.loginform td { text-align: center; font-size: 12pt; } -.label { +td.label { text-align: right; + vertical-align: top; } @@ -56,6 +61,27 @@ table.loginform td { text-align: right; } +#columns { + width: 100%; +} +#columns .column { + position: relative; + padding: 0pt; + border: 0pt; +} +#columns .left { + width: 50%; + padding: 0 0 0 30pt; + float: left; + text-align: left; +} +#columns .right { + width: 50%; + padding: 0 0 0 30pt; + float: right; + text-align: right; +} + /* Listing table */ table.list { @@ -89,7 +115,7 @@ table.list thead th { font-weight:bold; color:#66a3d3 } -.nonactive { +.inactive { color: #FF0040; } .active { @@ -99,3 +125,38 @@ table.list thead th { font-size: 6pt; color: lightgray; } +.help { + font-size: 8pt; + text-align: justify; + color: #6A6A6A; + padding: 0 50pt; +} +h4.label { + font-weight: bold; + text-align: center; + font-size: 12pt; +} + +/* Edit forms */ +form.editform { + margin: 0px auto; + border: 1px solid #cccccc; + padding: 10pt; + position: relative; + width: 80ex; + background:#E7EFF7; +} +table.editform { + margin:0 auto 5pt auto; + border-collapse:collapse; +} +table.editform td { + padding:0 5pt 0 0; +} +div.editform { + text-align: center; +} +.ack { + font-weight: bold; + color: #32CD32; +} -- cgit v1.2.3