diff --git a/assets/bgpattern.png b/assets/bgpattern.png index 13da430..c6ce57b 100644 Binary files a/assets/bgpattern.png and b/assets/bgpattern.png differ diff --git a/style.css b/style.css index 83103c2..98bbc73 100644 --- a/style.css +++ b/style.css @@ -20,8 +20,13 @@ html { } body { - margin: 0px; background-image: url(/assets/bgpattern.png); + animation: scrolling 20s linear 1; + animation-direction: forward; + animation-iteration-count: infinite; + + + margin: 0px; color: var(--foreground); font-family: monospace; font-size: 13px; @@ -219,3 +224,13 @@ only screen and (max-width:1000px) { } + +@-webkit-keyframes scrolling { + from { + background-position: 0 0; + } + to { + background-position: -300px 300px; + } +} +