43 lines
985 B
CSS
43 lines
985 B
CSS
/* 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);
|
|
} |