Version 44

This commit is contained in:
2023-12-03 22:37:02 +01:00
parent ae96d63ab2
commit fad9967928
26 changed files with 1103 additions and 110 deletions

View File

@@ -149,6 +149,32 @@ button{
}
}
.upwards{
position: fixed;
bottom: 16px;
right: 32px;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
filter: drop-shadow(10px 8px 6px #333);
background: #999;
opacity: 0;
pointer-events: none;
transition: all .4s;
}
.upwards.active{
bottom: 32px;
opacity: 1;
pointer-events: auto;
}
.upwards img{
width: 1.25em;
filter: drop-shadow(10px 8px 6px #333);
}
::-webkit-scrollbar{
background: transparent;
width: 5px;