Add background pattern and smooth scrolling effect to welcome page

This commit is contained in:
Roberto Guagliardo
2025-11-15 14:09:32 +01:00
parent 0336484f34
commit d83fce834a
3 changed files with 61 additions and 9 deletions

View File

@@ -22,3 +22,21 @@
width: auto;
display: block;
}
.bg-pattern {
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='5' r='0.5' fill='%23999'/%3E%3C/svg%3E");
opacity: 0.05;
z-index: -1;
pointer-events: none;
background-repeat: repeat;
background-position: 0 0;
transition: background-position 2s ease-out;
}
@keyframes moveBackground {
from { background-position: 0 0; }
to { background-position: 1000px 1000px; }
}