This commit is contained in:
Markus 2025-07-23 16:46:21 +02:00
parent 861bb178f1
commit 9df489d983
33 changed files with 1067 additions and 240 deletions

View file

@ -677,18 +677,20 @@ span.cloaked-e-mail:before {
}
/* copy from here */
.scrolldown {
--color: white;
--sizeX: 30px;
--sizeY: 50px;
position: relative;
width: var(--sizeX);
height: var(--sizeY);
margin-left: calc(50% - var(--sizeX) / 2); /* Korrigiert für Zentrierung */
margin-left: calc(50% - var(--sizeX) / 2);
margin-top: 100px;
border: calc(var(--sizeX) / 10) solid var(--color);
border: calc(var(--sizeX) / 10) solid currentColor;
border-radius: 50px;
box-sizing: border-box;
margin-bottom: 16px;
color: white; /* Anfangsfarbe */
transition: color 0.3s;
}
.scrolldown::before {
@ -699,13 +701,17 @@ span.cloaked-e-mail:before {
width: 6px;
height: 6px;
margin-left: -3px;
background-color: var(--color);
background-color: currentColor;
border-radius: 100%;
animation: scrolldown-anim 2s infinite;
box-sizing: border-box;
box-shadow: 0px -5px 3px 1px #ffffff66;
}
.scrolldown:hover {
color: #F5A623; /* Neue Farbe beim Hover */
}
@keyframes scrolldown-anim {
0% {
opacity: 0;
@ -739,15 +745,20 @@ span.cloaked-e-mail:before {
.chevrondown {
margin-top: -6px;
position: relative;
border: solid var(--color);
border: solid currentColor;
border-width: 0 3px 3px 0;
display: inline-block;
padding: 0; /* Stellt sicher, dass kein zusätzliches Padding hinzugefügt wird */
width: 10px;
height: 10px;
transform: rotate(45deg);
}
.chevrondown:hover {
color: #F5A623;
}
.chevrondown:nth-child(odd) {
animation: pulse 500ms ease infinite alternate;
}
@ -756,6 +767,16 @@ span.cloaked-e-mail:before {
animation: pulse 500ms ease infinite alternate 250ms;
}
.scrolldown {
color: rgb(0, 0, 0);
transition: color 0.3s;
}
.scrolldown:hover {
color: #F5A623;
}
@keyframes pulse {
from {
opacity: 0;