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