Initial-Version

This commit is contained in:
Carsten Hilmer
2016-10-28 01:10:26 +02:00
parent 5af479ec4e
commit 4535d7751f
214 changed files with 211578 additions and 1 deletions

3340
www/css/animate.css vendored Normal file

File diff suppressed because it is too large Load Diff

43
www/css/style.css Normal file
View File

@@ -0,0 +1,43 @@
/* Empty. Add your own CSS if you like
.scroll-content{
background: url("../img/background.svg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
}
*/
.scroll-content {
background: url("../img/background.svg");
-webkit-animation: backgroundScroll 50s linear infinite;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
animation: backgroundScroll 50s linear infinite;
}
@-webkit-keyframes backgroundScroll {
from {background-position: 0 0;}
to {background-position: -2000px 0;}
}
@keyframes backgroundScroll {
from {background-position: 0 0;}
to {background-position: -2000px 0;}
}
.myborder{
display: inline-block;
border-radius: 6px;
color: black;
border-style: solid;
border-color:black;
border-width: 2px;
}
.myborder:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}