implement scroll to top function

This commit is contained in:
Michi 2025-03-10 21:31:28 +01:00
parent 03ff2ec08f
commit 112f84b1ca
3 changed files with 52 additions and 5 deletions

View file

@ -420,3 +420,37 @@ nav.small img{
}
}
/* SCROLL TOP */
.scroll-top{
width: 40px;
height: 40px;
margin: 15px;
background: var(--primary);
color: var(--color);
border-radius: var(--baseRadius);
position: fixed;
bottom: 0;
right: 0;
display: flex;
justify-content: center;
font-size: 28px;
transition: var(--baseTransition);
}
.scroll-top a{
text-decoration: none;
color: var(--color);
margin-top: 0;
transition: var(--baseTransition);
}
.scroll-top a:hover,
.scroll-top a:focus{
margin-top: -5px;
}
.scroll-top i{
stroke-width: 3px;
}