Initial.
authorEugen Sawin <sawine@me73.com>
Fri, 21 Oct 2011 04:18:07 +0200
changeset 0d7bbef8dce52
child 1 93aa0c0f3c53
Initial.
dev/logo/logo1.xcf
webclient/images/logo1.png
webclient/index.html
webclient/style.css
     1.1 Binary file dev/logo/logo1.xcf has changed
     2.1 Binary file webclient/images/logo1.png has changed
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/webclient/index.html	Fri Oct 21 04:18:07 2011 +0200
     3.3 @@ -0,0 +1,22 @@
     3.4 +<!doctype html>
     3.5 +<html lang="de">
     3.6 +  <head>
     3.7 +    <title>Suesskeks Backwaren</title>
     3.8 +    <link href="style.css" rel="stylesheet" type="text/css" />
     3.9 +  </head>
    3.10 +  <body>
    3.11 +    <div id="floater"></div>    
    3.12 +    <div id="content">
    3.13 +      <div id="logo">
    3.14 +	<img src="images/logo1.png" alt="Suesskeks Backwaren" />
    3.15 +      </div>
    3.16 +      <footer>
    3.17 +	<address>
    3.18 +	  <a href="mailto:sam@suesskeks.de">sam@suesskeks.de</a>
    3.19 +	  &nbsp;&nbsp;&nbsp;&nbsp;
    3.20 +	  Tel: 0175 2724729
    3.21 +	</address>
    3.22 +      </footer>      
    3.23 +    </div>
    3.24 +  </body>
    3.25 +</html>
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/webclient/style.css	Fri Oct 21 04:18:07 2011 +0200
     4.3 @@ -0,0 +1,72 @@
     4.4 +/* 
     4.5 +   suesskeks stylesheet
     4.6 +   Author: Eugen Sawin <sawine@me73.com>
     4.7 +*/
     4.8 +
     4.9 +html, body 
    4.10 +{
    4.11 +    margin: 0;
    4.12 +    padding: 0;
    4.13 +    height: 100%;
    4.14 +    width: 100%;
    4.15 +}
    4.16 +
    4.17 +body
    4.18 +{
    4.19 +    font-family: sans-serif;   
    4.20 +    background: #fff;
    4.21 +}
    4.22 +
    4.23 +footer
    4.24 +{
    4.25 +    position: relative;   
    4.26 +    top: 250px;
    4.27 +}
    4.28 +
    4.29 +address
    4.30 +{
    4.31 +    /*background: #f44296;*/
    4.32 +    border-style: dotted none none none;
    4.33 +    border-width: 2px;
    4.34 +    padding-top: 5px;
    4.35 +    margin-bottom: 0px;
    4.36 +    font-size: 0.75em;
    4.37 +    font-style: normal;
    4.38 +    color: white;
    4.39 +    font-weight: 700;
    4.40 +    text-transform: uppercase;
    4.41 +    height: 18px;
    4.42 +}
    4.43 +
    4.44 +address a
    4.45 +{
    4.46 +    text-decoration: none;
    4.47 +    color: white;
    4.48 +}
    4.49 +
    4.50 +#floater
    4.51 +{
    4.52 +    background: red;
    4.53 +    position: relative;  
    4.54 +    height: 50%;
    4.55 +    float: left;
    4.56 +    margin-bottom: -235px;
    4.57 +    width: 0px;
    4.58 +}
    4.59 +
    4.60 +#content
    4.61 +{
    4.62 +    background: #372601;
    4.63 +    position: relative;
    4.64 +    text-align: center;
    4.65 +    clear: left;
    4.66 +    height: 370px;
    4.67 +    width: 100%;
    4.68 +    min-width: 800px;
    4.69 +    margin: 0 auto;    
    4.70 +    padding-top: 70px;
    4.71 +    border-style: inset none;
    4.72 +    border-width: 0px;
    4.73 +    border-color: #372601;/*#281b00;*/    
    4.74 +}
    4.75 +