first initial commit
This commit is contained in:
13
assets/css/screen.css
Normal file
13
assets/css/screen.css
Normal file
@@ -0,0 +1,13 @@
|
||||
@keyframes marquee-custom {
|
||||
0% { transform: translateX(0); }
|
||||
100% { transform: translateX(-100%); }
|
||||
}
|
||||
.animate-marquee-custom { animation: marquee-custom 20s linear infinite; }
|
||||
@keyframes slide-down {
|
||||
from { opacity: 0; transform: translateY(-10px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
.animate-slide-down {
|
||||
animation: slide-down 0.2s ease-out forwards;
|
||||
}
|
||||
Reference in New Issue
Block a user