Implementierung - SEO - 01.08.2025
This commit is contained in:
+36
-1
@@ -19,8 +19,17 @@ html.fonts-fallback body {
|
||||
font-family: Inter, system-ui, sans-serif;
|
||||
}
|
||||
|
||||
html {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
body {
|
||||
@apply bg-background text-foreground antialiased;
|
||||
@apply text-foreground antialiased;
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
#root {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
@@ -78,6 +87,32 @@ html.fonts-fallback body {
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slide-right {
|
||||
0% {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
100% {
|
||||
transform: translateX(100%);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slide-down {
|
||||
0% {
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(100%);
|
||||
}
|
||||
}
|
||||
|
||||
.animate-slide-right {
|
||||
animation: slide-right 8s linear infinite;
|
||||
}
|
||||
|
||||
.animate-slide-down {
|
||||
animation: slide-down 8s linear infinite;
|
||||
}
|
||||
|
||||
/* Prevent hover flickering */
|
||||
* {
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
|
||||
Reference in New Issue
Block a user