diff options
-rw-r--r-- | src/static/site2.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/static/site2.css b/src/static/site2.css index 5d66016e..c28ca192 100644 --- a/src/static/site2.css +++ b/src/static/site2.css @@ -916,31 +916,31 @@ img { @keyframes carousel-marquee1 { 0% { - transform: translateX(0%) translateX(-70px); + transform: translateX(-100%) translateX(70px); } 100% { - transform: translateX(-100%) translateX(-70px); + transform: translateX(-200%) translateX(70px); } } @keyframes carousel-marquee2 { 0% { - transform: translateX(100%) translateX(-70px); + transform: translateX(0%) translateX(70px); } 100% { - transform: translateX(0%) translateX(-70px); + transform: translateX(-100%) translateX(70px); } } @keyframes carousel-marquee3 { 0% { - transform: translateX(200%) translateX(-70px); + transform: translateX(100%) translateX(70px); } 100% { - transform: translateX(100%) translateX(-70px); + transform: translateX(0%) translateX(70px); } } |