client/client.css
author Eugen Sawin <sawine@me73.com>
Fri, 19 Aug 2011 03:21:12 +0200
changeset 1 cd4dfa7418ef
parent 0 db2e8b9145a6
child 2 50a5b0e15092
permissions -rw-r--r--
Layout.
     1 body
     2 {
     3     background-color: gray;
     4     color: white;
     5     font-family: monospace;
     6     border-style: none;    
     7     margin: 0px;
     8 }
     9 
    10 view-area
    11 {
    12     position: absolute;
    13     width: 100%;  
    14     height: 100%;
    15     background-color: #0a0a0a;     
    16 }
    17 
    18 view-area li
    19 {
    20     list-style-type: square;
    21 }
    22 
    23 view-area h2
    24 {
    25     
    26 }
    27 
    28 view-area p
    29 {
    30     color: #d0d0d0; 
    31 }
    32 
    33 view-area view-left
    34 {
    35     position: absolute;
    36     right: 52%;
    37     text-align: justify;
    38     color: orange; 
    39 }
    40 
    41 view-area view-right
    42 {
    43     position: absolute;
    44     left: 52%;
    45     text-align: justify;
    46     color: orange; 
    47 }
    48 
    49 command-area input
    50 {
    51     position: absolute;
    52     width: 100%; 
    53     height: 2em;
    54     border-style: none;
    55     background-color: #060606;
    56     color: #00bb00;
    57     font-family: monospace;    
    58     bottom: 0px;
    59     outline: none;
    60 }