webclient/style.css
author Eugen Sawin <sawine@me73.com>
Fri, 21 Oct 2011 12:08:06 +0200
changeset 1 93aa0c0f3c53
parent 0 d7bbef8dce52
child 2 72adcefd5f86
permissions -rw-r--r--
Arrow.
     1 /* 
     2    suesskeks stylesheet
     3    Author: Eugen Sawin <sawine@me73.com>
     4 */
     5 
     6 html, body 
     7 {
     8     margin: 0;
     9     padding: 0;
    10     height: 100%;
    11     width: 100%;
    12 }
    13 
    14 body
    15 {
    16     font-family: sans-serif;   
    17     background:-moz-linear-gradient(top, #fff, #ddd); /* Firefox */
    18     background:-webkit-gradient(linear, left top, left bottom, from(#fff), to(#ddd)); /* Safari, Chrome */
    19     background:-webkit-linear-gradient(top, #fff, #ddd); /* Safari, Chrome - neue Syntax! */
    20     background:-o-linear-gradient(top, #fff, #ddd); /* Opera */
    21     background:-ms-linear-gradient(top, #fff, #ddd); /* IE */
    22     background:linear-gradient(top, #fff, #ddd); /* W3C Standard */
    23 }
    24 
    25 footer
    26 {
    27     position: relative;   
    28     top: 250px;
    29 }
    30 
    31 footer :hover 
    32 {
    33     color: #f44296;
    34 }
    35 
    36 footer :hover a
    37 {
    38     color: #f44296;
    39 }
    40 
    41 address
    42 {
    43     /*background: #f44296;*/
    44     border-style: dotted none none none;
    45     border-width: 2px;
    46     border-color: #1e1108;
    47     padding-top: 5px;
    48     margin-bottom: 0px;
    49     font-size: 0.9em;
    50     font-style: normal;
    51     color: #412410;
    52     font-weight: bold;
    53     text-transform: uppercase;
    54     height: 18px;
    55     text-shadow: -1px -1px 0px #1e1108, 1px 1px 0px #522e15;
    56 }
    57 
    58 address a
    59 {
    60     text-decoration: none;
    61     color: #412410;
    62     text-shadow: -1px -1px 0px #1e1108, 1px 1px 0px #522e15;
    63 }
    64 
    65 #floater
    66 {
    67     background: red;
    68     position: relative;  
    69     height: 50%;
    70     float: left;
    71     margin-bottom: -235px;
    72     width: 0px;
    73 }
    74 
    75 #content
    76 { /*1e1108 27150a 311b0c 372601 412410 4e2b14 522e15 5C3317 7b441f*/
    77     background: #412410;
    78     position: relative;
    79     text-align: center;
    80     clear: left;
    81     height: 370px;
    82     width: 100%;
    83     min-width: 800px;
    84     margin: 0 auto;    
    85     padding-top: 70px;
    86     /*border-style: solid none none none;
    87     border-width: 2px;
    88     border-color: #311b0c;/*#372601;#281b00;*/    */
    89     box-shadow: 0px 2px 4px 2px #311b0c;
    90     -moz-box-shadow: 0px 2px 4px 2px #311b0c;
    91     -webkit-box-shadow: 0px 2px 4px 2px #311b0c;
    92     
    93 }
    94 
    95 #postcontent
    96 {
    97     position: relative;
    98     text-align: center;    
    99     width: 100%;
   100     min-width: 800px;
   101     margin: 5px auto;
   102 }
   103