webclient/style.css
changeset 1 93aa0c0f3c53
parent 0 d7bbef8dce52
child 2 72adcefd5f86
     1.1 --- a/webclient/style.css	Fri Oct 21 04:18:07 2011 +0200
     1.2 +++ b/webclient/style.css	Fri Oct 21 12:08:06 2011 +0200
     1.3 @@ -14,7 +14,12 @@
     1.4  body
     1.5  {
     1.6      font-family: sans-serif;   
     1.7 -    background: #fff;
     1.8 +    background:-moz-linear-gradient(top, #fff, #ddd); /* Firefox */
     1.9 +    background:-webkit-gradient(linear, left top, left bottom, from(#fff), to(#ddd)); /* Safari, Chrome */
    1.10 +    background:-webkit-linear-gradient(top, #fff, #ddd); /* Safari, Chrome - neue Syntax! */
    1.11 +    background:-o-linear-gradient(top, #fff, #ddd); /* Opera */
    1.12 +    background:-ms-linear-gradient(top, #fff, #ddd); /* IE */
    1.13 +    background:linear-gradient(top, #fff, #ddd); /* W3C Standard */
    1.14  }
    1.15  
    1.16  footer
    1.17 @@ -23,25 +28,38 @@
    1.18      top: 250px;
    1.19  }
    1.20  
    1.21 +footer :hover 
    1.22 +{
    1.23 +    color: #f44296;
    1.24 +}
    1.25 +
    1.26 +footer :hover a
    1.27 +{
    1.28 +    color: #f44296;
    1.29 +}
    1.30 +
    1.31  address
    1.32  {
    1.33      /*background: #f44296;*/
    1.34      border-style: dotted none none none;
    1.35      border-width: 2px;
    1.36 +    border-color: #1e1108;
    1.37      padding-top: 5px;
    1.38      margin-bottom: 0px;
    1.39 -    font-size: 0.75em;
    1.40 +    font-size: 0.9em;
    1.41      font-style: normal;
    1.42 -    color: white;
    1.43 -    font-weight: 700;
    1.44 +    color: #412410;
    1.45 +    font-weight: bold;
    1.46      text-transform: uppercase;
    1.47      height: 18px;
    1.48 +    text-shadow: -1px -1px 0px #1e1108, 1px 1px 0px #522e15;
    1.49  }
    1.50  
    1.51  address a
    1.52  {
    1.53      text-decoration: none;
    1.54 -    color: white;
    1.55 +    color: #412410;
    1.56 +    text-shadow: -1px -1px 0px #1e1108, 1px 1px 0px #522e15;
    1.57  }
    1.58  
    1.59  #floater
    1.60 @@ -55,8 +73,8 @@
    1.61  }
    1.62  
    1.63  #content
    1.64 -{
    1.65 -    background: #372601;
    1.66 +{ /*1e1108 27150a 311b0c 372601 412410 4e2b14 522e15 5C3317 7b441f*/
    1.67 +    background: #412410;
    1.68      position: relative;
    1.69      text-align: center;
    1.70      clear: left;
    1.71 @@ -65,8 +83,21 @@
    1.72      min-width: 800px;
    1.73      margin: 0 auto;    
    1.74      padding-top: 70px;
    1.75 -    border-style: inset none;
    1.76 -    border-width: 0px;
    1.77 -    border-color: #372601;/*#281b00;*/    
    1.78 +    /*border-style: solid none none none;
    1.79 +    border-width: 2px;
    1.80 +    border-color: #311b0c;/*#372601;#281b00;*/    */
    1.81 +    box-shadow: 0px 2px 4px 2px #311b0c;
    1.82 +    -moz-box-shadow: 0px 2px 4px 2px #311b0c;
    1.83 +    -webkit-box-shadow: 0px 2px 4px 2px #311b0c;
    1.84 +    
    1.85  }
    1.86  
    1.87 +#postcontent
    1.88 +{
    1.89 +    position: relative;
    1.90 +    text-align: center;    
    1.91 +    width: 100%;
    1.92 +    min-width: 800px;
    1.93 +    margin: 5px auto;
    1.94 +}
    1.95 +