Fix core WST file
[jabaws.git] / statpages / screen.css
index 9f4c984..16c1964 100644 (file)
@@ -3,6 +3,19 @@
 @import url("alternative.css");
 
 
+#mainpage {
+       margin-left: auto;
+       margin-right: auto;
+}
+
+.center { 
+       margin: 0 auto;
+}
+
+h2 {
+       font-size: 1.5em; line-height: 1em; margin-bottom: -0.3em;
+       }
+       
 body,input,select,td,textarea {
        font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
        font-size: 11px;
@@ -114,4 +127,40 @@ hr {
        border-top: 1px dotted #ccc;
        margin: 20px 0 20px 0;
        width: 50%;
-}
\ No newline at end of file
+}
+
+/* open/closed box related styles */
+
+.source { 
+       display:block;
+       margin:15px 0;
+       overflow:visible;
+}
+
+/* OPEN state styles */
+.source .body {
+       padding:7px 15px;
+/*     white-space:pre-wrap; */
+       white-space:normal;
+/*     word-wrap:break-word; # this prop does not exits*/
+}
+
+.source .header {
+       cursor:pointer;
+       font-weight:bold;
+       padding:0 15px 0 15px;
+       text-decoration: underline ;
+}
+
+
+/* CLOSED state styles */
+.source .body.collapsed {
+       display:none;
+}
+
+.source .header.collapsed  {
+       padding:0 15px 0 15px;
+       text-decoration: underline;
+}
+
+