Add error and info popups
[infodrom.org/service.infodrom.org] / src / infodrom.css
index 5e3c364..bc5cb1a 100644 (file)
@@ -27,6 +27,10 @@ a:visited {
 .font {
   font-size: 13px;
 }
+.smallfont {
+  font-size: 11px;
+  line-height: 14px;
+}
 .height {
   line-height: 15px;
 }
@@ -34,19 +38,31 @@ a:visited {
   display: none;
 }
 .border {
-  border: 1px solid black;
+  border: 1px solid #9b9b9b;
 }
 h3.bar {
   padding-left: 5px;
   padding-bottom: 2px;
-  font-size: 15px;
+  font-size: 14px;
   background: #98c5e5;
 }
+.jsaction {
+    color: #666;
+}
 img.border {
   border: 2px solid #e5e5e5;
 }
-ul.webgraph li {
-  list-style: none;
+div.webgraph {
+  margin-left: 20px;
+  margin-bottom: 15px;
+}
+table.webgraph td {
+  border: 1px solid #CCC;
+  font-size: small;
+  text-align: center;
+}
+table.webgraph td:hover {
+  background: #DDD;
 }
 td.leftcol {
   padding-left: 2px;
@@ -55,7 +71,7 @@ td.rightcol {
   padding-right: 2px;
 }
 tr.head {
-  background: #abdcfc;
+  background: #a7ddff;
 }
 tr.t0 {
   background: #ffffff;
@@ -63,12 +79,46 @@ tr.t0 {
 tr.t1 {
   background: #d9e2ea;
 }
+tr.t2 {
+  background: #ffff00;
+}
 td.in {
-  color: #00ff00;
+  color: #2f9a00;
 }
 td.out {
   color: #ff0000;
 }
+.left {
+  text-align: left;
+}
+.right {
+  text-align: right;
+}
+
+pre {
+  border: 1pt solid #cfcfcf;
+  background-color: #F3F5F7;
+  padding: 2px;
+  padding-left: 2px;
+  font-family: courier, monospace;
+  white-space: pre;
+  /* begin css 3 or browser specific rules - do not remove!
+   * see: http://forums.techguy.org/archive/index.php/t-249849.html
+   */
+  white-space: pre-wrap;
+  word-wrap: break-word;
+  white-space: -moz-pre-wrap;
+  white-space: -pre-wrap;
+  white-space: -o-pre-wrap;
+  /* end css 3 or browser specific rules */
+}
+
+p.img img {
+  display: block;
+  margin-left: auto;
+  margin-right: auto;
+  border: 1px solid #cfcfcf;
+}
 
 /*
  * Menu
@@ -82,6 +132,84 @@ p.menurule {
   margin-bottom: 7px;
 }
 
+/*
+ * Formulare
+ */
+input, select, textarea {
+  border: 1px solid #aaaaaa;
+  font-size: inherit;
+}
+input.button {
+  width: auto;
+  display: inline;
+  border: 1px solid #aaaaaa;
+}
+input.button:hover {
+  border: 1px solid #9b9b9b;
+  background-color: #bfbfbf;
+}
+
+/*
+ * Popups
+ */
+div.popup {
+  background: white;
+  border: 1px solid #CCC;
+  height: auto;
+  position: absolute;
+}
+div.popup_title {
+  width: 100%;
+  cursor: move;
+  background: #EEE;
+  margin-bottom: 5px;
+  font-weight: bold;
+  padding-bottom: 1px;
+}
+div.popup_body {
+  padding-left: 2px;
+  padding-right: 2px;
+  padding-bottom: 4px;
+}
+div.popup label {
+  margin-top: 2px;
+  display: block;
+}
+
+/*
+ * Calendar
+ */
+table#fc {
+  z-index: 100;
+}
+
+/*
+ * jQuery & Co.
+ */
+div#message_div {
+    background: #ffffcd;
+    color: #555;
+    border: 1px solid limegreen;
+    font-size: 120%;
+    padding: 5px;
+}
+div#error_div {
+    background: #ddd;
+    color: #555;
+    border: 1px solid red;
+}
+div#error_div div {
+    font-size: 120%;
+    font-weight: bold;
+    padding: 5px;
+}
+div#error_div p {
+    text-align: right;
+    padding: 2px;
+    margin: 0;
+    border-bottom: 1px solid #CCC;
+}
+
 /*
  * Footer
  */
@@ -98,9 +226,3 @@ div.footerright {
   font-size: xx-small;
 }
 
-/*
- * Local variables:
- * mode: indented-text
- * mode: auto-fill
- * End:
-*/