Initial-Version
This commit is contained in:
3340
www/css/animate.css
vendored
Normal file
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
43
www/css/style.css
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user