Add support for password fields
[misc/kostenrechnung] / stylesheet.css
index 60c31ec..4d30c6a 100644 (file)
@@ -1,7 +1,7 @@
 body {
     font-family: Verdana, Helvetica, Arial, sans-serif;
     font-size: 10px;
-    background-color: #f7f7f7;
+    background: #e3f0ff;
     color: #000000;
 }
 
@@ -21,12 +21,48 @@ div.form {
     padding: 2px;
     background-color: #DDD;
     border: 1px solid #AAA;
+    color: #555;
 }
 
-div.form input {
-    border: 1px solid #AAA;
+input, select {
+    border: 1px solid #CCC;
+    color: inherit;
+    background: white;
 }
 
-div.form button {
-    border: 1px solid #AAA;
+button {
+    border: 1px solid #CCC;
+    color: inherit;
+}
+
+div.form div.buttons {
+    text-align: center;
+    padding-bottom: 10px;
+}
+
+div.form div.buttons span {
+    margin-left: 10px;
+}
+
+div.login {
+    background-image: url('lib/login.jpg');
+    background-repeat: no-repeat;
+    background-position: center center;
+    margin: -15px;
+    height: 600px;
+}
+
+table.login {
+    border: 1px solid #7b7b7b;
+    background: #f7f7f7;
+    position: relative;
+    top: 290px;
+}
+
+span.status_ok {
+    color: green;
+}
+
+span.status_error {
+    color: red;
 }