front-page main content changed
authorstetrabby <info@trabucchi.de>
Sat, 18 Jan 2014 12:34:36 +0100
changeset 1146093dda9fe38
parent 113 928cccb0b8de
child 115 a9d04f5f5650
front-page main content changed
static/css/bootstrap.css
static/less/bootstrap.less
static/less/pymove3d.less
static/less/variables.less
templates/de/index.html
templates/en/index.html
     1.1 --- a/static/css/bootstrap.css	Sat Jan 18 12:31:21 2014 +0100
     1.2 +++ b/static/css/bootstrap.css	Sat Jan 18 12:34:36 2014 +0100
     1.3 @@ -1,3 +1,4 @@
     1.4 +@import url(http://fonts.googleapis.com/css?family=Ubuntu:400,700);
     1.5  /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
     1.6  article,
     1.7  aside,
     1.8 @@ -255,7 +256,7 @@
     1.9    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    1.10  }
    1.11  body {
    1.12 -  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    1.13 +  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
    1.14    font-size: 14px;
    1.15    line-height: 1.428571429;
    1.16    color: #333333;
    1.17 @@ -337,7 +338,7 @@
    1.18  .h4,
    1.19  .h5,
    1.20  .h6 {
    1.21 -  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    1.22 +  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
    1.23    font-weight: 500;
    1.24    line-height: 1.1;
    1.25    color: inherit;
    1.26 @@ -6006,6 +6007,9 @@
    1.27    margin-bottom: 0px;
    1.28    border-bottom: 3px solid #f0f0f0;
    1.29  }
    1.30 +.navbar-nav {
    1.31 +  margin-top: 24px;
    1.32 +}
    1.33  a.link-yellow {
    1.34    color: #fdc91a !important;
    1.35    text-decoration: underline;
    1.36 @@ -6019,12 +6023,14 @@
    1.37  .module-gallery {
    1.38    background: url('../images/python_blender.jpg') no-repeat 0px -200px;
    1.39    background-size: 2000px 884px;
    1.40 -  max-width: 100% !important;
    1.41  }
    1.42  .module-gallery .module-content {
    1.43    height: 300px;
    1.44    position: relative;
    1.45  }
    1.46 +.module-cite h1 {
    1.47 +  color: #125883;
    1.48 +}
    1.49  .col-yellow {
    1.50    background: rgba(253, 201, 26, 0.6);
    1.51  }
    1.52 @@ -6034,6 +6040,22 @@
    1.53  .module-course {
    1.54    background-color: #f5f5f5;
    1.55  }
    1.56 +.module-cite {
    1.57 +  border-bottom: 1px solid #fdc91a;
    1.58 +  padding-bottom: 20px;
    1.59 +}
    1.60 +.cite {
    1.61 +  position: relative;
    1.62 +}
    1.63 +.cite-left {
    1.64 +  top: 6px;
    1.65 +}
    1.66 +.cite-right {
    1.67 +  top: 48px;
    1.68 +}
    1.69 +.cite-right svg {
    1.70 +  margin-top: -48px;
    1.71 +}
    1.72  /* Footer
    1.73  ------------------------------------ */#footer {
    1.74    height: 60px;
     2.1 --- a/static/less/bootstrap.less	Sat Jan 18 12:31:21 2014 +0100
     2.2 +++ b/static/less/bootstrap.less	Sat Jan 18 12:34:36 2014 +0100
     2.3 @@ -50,3 +50,4 @@
     2.4  
     2.5  // Pymove3d classes
     2.6  @import "pymove3d.less";
     2.7 +@import url(http://fonts.googleapis.com/css?family=Ubuntu:400,700);
     3.1 --- a/static/less/pymove3d.less	Sat Jan 18 12:31:21 2014 +0100
     3.2 +++ b/static/less/pymove3d.less	Sat Jan 18 12:34:36 2014 +0100
     3.3 @@ -59,22 +59,31 @@
     3.4  margin-bottom: 0px;
     3.5  border-bottom:3px solid #f0f0f0;
     3.6  }
     3.7 +.navbar-nav {margin-top:24px;}
     3.8  a.link-yellow {color:@yellow !important;text-decoration:underline;}
     3.9  a.link-yellow:hover {color:@gray-dark !important;text-decoration:none;}
    3.10 +
    3.11  /* Module
    3.12  ------------------------------------ */
    3.13  .module-gallery {
    3.14      background: url('../images/python_blender.jpg') no-repeat 0px -200px;
    3.15      background-size: 2000px 884px;
    3.16 -    max-width: 100% !important;
    3.17  }
    3.18  .module-gallery .module-content {
    3.19      height: 300px;
    3.20      position: relative;
    3.21  }
    3.22 +.module-cite h1 {color:@blue;}
    3.23  .col-yellow {background:@yellow-light;}
    3.24  li.module-language a:first-child {border-right:1px solid @blue;}
    3.25  .module-course {background-color: #f5f5f5;}
    3.26 +
    3.27 +.module-cite {border-bottom:1px solid @yellow;padding-bottom:20px;}
    3.28 +
    3.29 +.cite {position:relative;}
    3.30 +.cite-left {top: 6px;}
    3.31 +.cite-right {top:48px;}
    3.32 +.cite-right svg {margin-top: -48px;}
    3.33  /* Footer
    3.34  ------------------------------------ */ 
    3.35  #footer {
     4.1 --- a/static/less/variables.less	Sat Jan 18 12:31:21 2014 +0100
     4.2 +++ b/static/less/variables.less	Sat Jan 18 12:34:36 2014 +0100
     4.3 @@ -47,7 +47,7 @@
     4.4  // Typography
     4.5  // -------------------------
     4.6  
     4.7 -@font-family-sans-serif:  "Helvetica Neue", Helvetica, Arial, sans-serif;
     4.8 +@font-family-sans-serif:  "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
     4.9  @font-family-serif:       Georgia, "Times New Roman", Times, serif;
    4.10  @font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace;
    4.11  @font-family-base:        @font-family-sans-serif;
     5.1 --- a/templates/de/index.html	Sat Jan 18 12:31:21 2014 +0100
     5.2 +++ b/templates/de/index.html	Sat Jan 18 12:34:36 2014 +0100
     5.3 @@ -20,9 +20,34 @@
     5.4  
     5.5  <div class="module module-course">
     5.6  	<div class="container">
     5.7 -		<div class="col-md-8 col-md-offset-2">
     5.8 -			<div class="module-cite text-center">
     5.9 -			<h1>Blender und Python sind einfach genial, endlich fun, fun, fun beim programmieren</h1>
    5.10 +		<div class="col-md-8 col-md-offset-2 module-cite">
    5.11 +			<div class="text-center">
    5.12 +				<h1>
    5.13 +					<span class="cite cite-left">
    5.14 +						<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
    5.15 +						width="84px" height="84px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
    5.16 +						<g id="Ebene_2">
    5.17 +							<path fill="#FDC91A" d="M16.75,9.188c-2.59,1.824-5.273,4.605-5.273,7.628c0,0.384,0.047,0.673,0.094,0.91
    5.18 +							c0.625-0.43,1.438-0.574,1.871-0.574c1.777,0,3.309,1.488,3.309,3.263s-1.531,3.358-3.309,3.358c-3.07,0-4.27-3.312-4.27-5.805
    5.19 +							c0-4.078,3.648-7.965,7.055-9.742L16.75,9.188z M22.828,9.188c-2.594,1.824-5.281,4.605-5.281,7.628
    5.20 +							c0,0.384,0.051,0.673,0.098,0.91c0.625-0.43,1.441-0.574,1.871-0.574c1.773,0,3.312,1.488,3.312,3.263s-1.539,3.358-3.312,3.358
    5.21 +							c-3.07,0-4.27-3.312-4.27-5.805c0-4.078,3.645-7.965,7.051-9.742L22.828,9.188z"/>
    5.22 +						</g>
    5.23 +					</svg>
    5.24 +				</span>Blender und Python sind einfach genial, endlich fun, fun, fun beim programmieren
    5.25 +				<span class="cite cite-right">
    5.26 +					<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
    5.27 +					width="84px" height="84px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
    5.28 +					<g>
    5.29 +						<path fill="#FDC91A" d="M9.172,22.811c2.59-1.821,5.277-4.604,5.277-7.626c0-0.383-0.049-0.672-0.096-0.91
    5.30 +						c-0.625,0.432-1.439,0.574-1.871,0.574c-1.775,0-3.311-1.486-3.311-3.262s1.535-3.357,3.311-3.357c3.07,0,4.27,3.311,4.27,5.805
    5.31 +						c0,4.077-3.646,7.965-7.053,9.737L9.172,22.811z M15.248,22.811c2.592-1.821,5.277-4.604,5.277-7.626
    5.32 +						c0-0.383-0.049-0.672-0.096-0.91c-0.623,0.432-1.439,0.574-1.871,0.574c-1.775,0-3.312-1.486-3.312-3.262s1.535-3.357,3.312-3.357
    5.33 +						c3.069,0,4.27,3.311,4.27,5.805c0,4.077-3.646,7.965-7.053,9.737L15.248,22.811z"/>
    5.34 +					</g>
    5.35 +				</svg>
    5.36 +			</span>
    5.37 +		</h1>
    5.38  			<p class="pull-right">__Florian, Berlin</p>
    5.39  			</div>
    5.40  		</div>
    5.41 @@ -32,7 +57,7 @@
    5.42  					<h3 class="module-title">Einsendeschluss</h3>
    5.43  				</div>
    5.44  				<div class="module-body">
    5.45 -					<ul>
    5.46 +					<ul class="list-unstyled">
    5.47  						<li>1. Mai 2014</li>
    5.48  					</ul>
    5.49  				</div>
    5.50 @@ -43,11 +68,10 @@
    5.51  					<h3 class="module-title">Folgen Sie uns auch auf</h3>
    5.52  				</div>
    5.53  				<div class="module-body">
    5.54 -					<ul>
    5.55 -						<li><a href="#">Twitter</a></li>
    5.56 -						<li><a href="#">Facebook</a></li>
    5.57 -						<li><a href="#">Google+</a></li>
    5.58 -						<li><a href="#">YouTube</a></li>
    5.59 +					<ul class="list-unstyled">
    5.60 +						<li><a href="https://twitter.com/pymove3d">Twitter</a></li>
    5.61 +						<li><a href="https://www.facebook.com/pages/pymove3D/676872565661173">Facebook</a></li>
    5.62 +						<li><a href="https://plus.google.com/u/0/communities/107654933404793509482">Google+</a></li>
    5.63  					</ul>
    5.64  				</div>
    5.65  			</div>
     6.1 --- a/templates/en/index.html	Sat Jan 18 12:31:21 2014 +0100
     6.2 +++ b/templates/en/index.html	Sat Jan 18 12:34:36 2014 +0100
     6.3 @@ -21,8 +21,33 @@
     6.4  <div class="module module-course">
     6.5  	<div class="container">
     6.6  		<div class="col-md-8 col-md-offset-2">
     6.7 -			<div class="module-cite text-center">
     6.8 -			<h1>Blender und Python sind einfach genial, endlich fun, funf, fun beim programmieren</h1>
     6.9 +			<div class="text-center">
    6.10 +				<h1>
    6.11 +					<span class="cite cite-left">
    6.12 +						<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
    6.13 +						width="84px" height="84px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
    6.14 +						<g id="Ebene_2">
    6.15 +							<path fill="#FDC91A" d="M16.75,9.188c-2.59,1.824-5.273,4.605-5.273,7.628c0,0.384,0.047,0.673,0.094,0.91
    6.16 +							c0.625-0.43,1.438-0.574,1.871-0.574c1.777,0,3.309,1.488,3.309,3.263s-1.531,3.358-3.309,3.358c-3.07,0-4.27-3.312-4.27-5.805
    6.17 +							c0-4.078,3.648-7.965,7.055-9.742L16.75,9.188z M22.828,9.188c-2.594,1.824-5.281,4.605-5.281,7.628
    6.18 +							c0,0.384,0.051,0.673,0.098,0.91c0.625-0.43,1.441-0.574,1.871-0.574c1.773,0,3.312,1.488,3.312,3.263s-1.539,3.358-3.312,3.358
    6.19 +							c-3.07,0-4.27-3.312-4.27-5.805c0-4.078,3.645-7.965,7.051-9.742L22.828,9.188z"/>
    6.20 +						</g>
    6.21 +					</svg>
    6.22 +				</span>Blender und Python sind einfach genial, endlich fun, fun, fun beim programmieren
    6.23 +				<span class="cite cite-right">
    6.24 +					<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
    6.25 +					width="84px" height="84px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
    6.26 +					<g>
    6.27 +						<path fill="#FDC91A" d="M9.172,22.811c2.59-1.821,5.277-4.604,5.277-7.626c0-0.383-0.049-0.672-0.096-0.91
    6.28 +						c-0.625,0.432-1.439,0.574-1.871,0.574c-1.775,0-3.311-1.486-3.311-3.262s1.535-3.357,3.311-3.357c3.07,0,4.27,3.311,4.27,5.805
    6.29 +						c0,4.077-3.646,7.965-7.053,9.737L9.172,22.811z M15.248,22.811c2.592-1.821,5.277-4.604,5.277-7.626
    6.30 +						c0-0.383-0.049-0.672-0.096-0.91c-0.623,0.432-1.439,0.574-1.871,0.574c-1.775,0-3.312-1.486-3.312-3.262s1.535-3.357,3.312-3.357
    6.31 +						c3.069,0,4.27,3.311,4.27,5.805c0,4.077-3.646,7.965-7.053,9.737L15.248,22.811z"/>
    6.32 +					</g>
    6.33 +				</svg>
    6.34 +			</span>
    6.35 +		</h1>
    6.36  			<p class="pull-right">__Florian, Berlin</p>
    6.37  			</div>
    6.38  		</div>
    6.39 @@ -34,7 +59,6 @@
    6.40  				<div class="module-body">
    6.41  					<ul>
    6.42  						<li>1. Mai 2014</li>
    6.43 -							<li>Anmelden</li>
    6.44  					</ul>
    6.45  				</div>
    6.46  			</div>
    6.47 @@ -44,11 +68,10 @@
    6.48  					<h3 class="module-title">Folgen Sie uns auch auf</h3>
    6.49  				</div>
    6.50  				<div class="module-body">
    6.51 -					<ul>
    6.52 -						<li><a href="#">Twitter</a></li>
    6.53 -						<li><a href="#">Facebook</a></li>
    6.54 -						<li><a href="#">Google+</a></li>
    6.55 -						<li><a href="#">YouTube</a></li>
    6.56 +					<ul class="list-unstyled">
    6.57 +						<li><a href="https://twitter.com/pymove3d">Twitter</a></li>
    6.58 +						<li><a href="https://www.facebook.com/pages/pymove3D/676872565661173">Facebook</a></li>
    6.59 +						<li><a href="https://plus.google.com/u/0/communities/107654933404793509482">Google+</a></li>
    6.60  					</ul>
    6.61  				</div>
    6.62  			</div>
Impressum Datenschutzerklärung