reverted last 3 commits

This commit is contained in:
asus
2024-01-21 12:16:30 +01:00
parent ed75f330a1
commit ac1d84fc9a
10 changed files with 18 additions and 384 deletions

View File

@@ -1,21 +0,0 @@
.banner_svg {
width: 100%;
height: 150px;
height: min(26vw, 150px);
background-image: url(../img/banner.svg);
background-size: contain;
background-repeat: no-repeat;
background-repeat: repeat;
background-position-x: 0%;
animation-name: slide_svg;
animation-iteration-count: infinite;
animation-duration: 30s;
animation-timing-function: linear;
animation-direction: normal;
}
@keyframes slide_ssvg {
from {background-position-x: 0%;}
to {background-position-x: 100%;}
}