imprint and privacy link added, padding and view fixed
authorstetrabby <info@trabucchi.de>
Sat, 18 Jan 2014 10:49:41 +0100
changeset 104f30cccb86f7f
parent 102 d1524a27c8be
child 105 5a24b0072800
imprint and privacy link added, padding and view fixed
static/css/bootstrap.css
static/less/pymove3d.less
templates/footer.html
     1.1 --- a/static/css/bootstrap.css	Sat Jan 18 10:22:25 2014 +0100
     1.2 +++ b/static/css/bootstrap.css	Sat Jan 18 10:49:41 2014 +0100
     1.3 @@ -6019,12 +6019,26 @@
     1.4  .col-yellow {
     1.5    background: rgba(253, 201, 26, 0.6);
     1.6  }
     1.7 +.module-course {
     1.8 +  background-color: #f5f5f5;
     1.9 +}
    1.10  /* Footer
    1.11  ------------------------------------ */#footer {
    1.12    height: 60px;
    1.13 -  background-color: #f5f5f5;
    1.14  }
    1.15  #footer > .container {
    1.16    padding-left: 15px;
    1.17    padding-right: 15px;
    1.18  }
    1.19 +.carousel-control.left {
    1.20 +  background-image: none;
    1.21 +  filter: 0;
    1.22 +}
    1.23 +.carousel-control.right {
    1.24 +  background-image: none;
    1.25 +  filter: 0;
    1.26 +}
    1.27 +.module-imprint {
    1.28 +  border-top: 1px solid #f5f5f5;
    1.29 +  padding: 20px 0;
    1.30 +}
     2.1 --- a/static/less/pymove3d.less	Sat Jan 18 10:22:25 2014 +0100
     2.2 +++ b/static/less/pymove3d.less	Sat Jan 18 10:49:41 2014 +0100
     2.3 @@ -70,13 +70,22 @@
     2.4      position: relative;
     2.5  }
     2.6  .col-yellow {background:@yellow-light;}
     2.7 +.module-course {background-color: #f5f5f5;}
     2.8  /* Footer
     2.9  ------------------------------------ */ 
    2.10  #footer {
    2.11    height: 60px;
    2.12 -  background-color: #f5f5f5;
    2.13  }
    2.14  #footer > .container {
    2.15    padding-left: 15px;
    2.16    padding-right: 15px;
    2.17 -}
    2.18 \ No newline at end of file
    2.19 +}
    2.20 +.carousel-control.left {
    2.21 +  background-image: none;
    2.22 +  filter: 0;
    2.23 +}
    2.24 +.carousel-control.right {
    2.25 +  background-image:none;
    2.26 +  filter: 0;
    2.27 +}
    2.28 +.module-imprint {border-top:1px solid #f5f5f5; padding:20px 0;}
    2.29 \ No newline at end of file
     3.1 --- a/templates/footer.html	Sat Jan 18 10:22:25 2014 +0100
     3.2 +++ b/templates/footer.html	Sat Jan 18 10:49:41 2014 +0100
     3.3 @@ -1,7 +1,9 @@
     3.4  <div id="footer">
     3.5      <div class="container">
     3.6 -        <img src="./static/images/python-logo.png" alt="python-logo" />
     3.7 -        <h3>Sponsors</h3>
     3.8 +        <div class="text-center"><a href="http://python.org/" alt="Python Programming Language website" title="Python Programming Language"><img src="./static/images/python-logo.png" alt="python-logo" /></a>
     3.9 +         <h3>Sponsors</h3>
    3.10 +        </div>
    3.11 +
    3.12          <div class="container">
    3.13              <div class="col-md-12">
    3.14                  <div id="myCarousel" class="carousel slide">
    3.15 @@ -24,13 +26,13 @@
    3.16                          <!--/item-->
    3.17                          <div class="item">
    3.18                              <div class="row">
    3.19 -                                <div class="col-sm-3"><a href="#x" class="thumbnail"><img src="./static/images/sponsors/sponsor-medialinx_ag.png" alt="Image" class="img-responsive"></a>
    3.20 +                                <div class="col-sm-3"><a href="#x"><img src="./static/images/sponsors/sponsor-medialinx_ag.png" alt="Image" class="img-responsive"></a>
    3.21                                  </div>
    3.22 -                                <div class="col-sm-3"><a href="#x" class="thumbnail"><img src="./static/images/sponsors/sponsor-oreilly.png" alt="Image" class="img-responsive"></a>
    3.23 +                                <div class="col-sm-3"><a href="#x"><img src="./static/images/sponsors/sponsor-oreilly.png" alt="Image" class="img-responsive"></a>
    3.24                                  </div>
    3.25 -                                <div class="col-sm-3"><a href="#x" class="thumbnail"><img src="./static/images/sponsors/sudile.jpg" alt="Image" class="img-responsive"></a>
    3.26 +                                <div class="col-sm-3"><a href="#x"><img src="./static/images/sponsors/sudile.jpg" alt="Image" class="img-responsive"></a>
    3.27                                  </div>
    3.28 -                                <div class="col-sm-3"><a href="#x" class="thumbnail"><img src="./static/images/sponsors/trabucchi.png" alt="Image" class="img-responsive"></a>
    3.29 +                                <div class="col-sm-3"><a href="#x"><img src="./static/images/sponsors/trabucchi.png" alt="Image" class="img-responsive"></a>
    3.30                                  </div>
    3.31                              </div>
    3.32                              <!--/row-->
    3.33 @@ -44,5 +46,11 @@
    3.34                  <!--/myCarousel-->
    3.35              </div>
    3.36          </div>
    3.37 +        <div class="text-center module-imprint">
    3.38 +            <ul class="list-inline">
    3.39 +              <li><a href="/privacy">Datenschutzerklärung</a></li>
    3.40 +              <li><a href="/imprint">Impressum</a></li>
    3.41 +            </ul>
    3.42 +        </div>
    3.43      </div>
    3.44  </div>
    3.45 \ No newline at end of file
Impressum Datenschutzerklärung