1
0
Mathias Wagner 2f92dbbf5f
Some checks failed
Publish Docker image / Push Docker image to Docker Hub (push) Failing after 19m8s
Update website theme
2025-02-16 14:28:32 +01:00

33 lines
656 B
Sass

@use "colors" as *
body, html
font-family: 'Inter', sans-serif
margin: 0
padding: 0
background-color: $background
color: $text
height: 100vh
.glassy
background-color: rgba(183, 174, 160, 0.2)
border: 1px solid rgba(183, 174, 160, 0.2)
backdrop-filter: blur(10px)
border-radius: 10px
::-webkit-scrollbar
width: 13px
::-webkit-scrollbar-thumb
background: lighten($background, 2%)
border-radius: 10px
::-webkit-scrollbar-thumb:hover
background: darken($background, 5%)
@keyframes bounceIn
from
transform: scale(-0.95) rotate(3deg)
50%
transform: scale(1.02) rotate(-3deg)
to
transform: scale(1) rotate(0deg)