Ready improving!

This commit is contained in:
The Wobbler 2024-10-22 16:36:30 +02:00
parent 4d0c9e592e
commit fdb74bf44f
3 changed files with 47 additions and 14 deletions

View file

@ -27,8 +27,8 @@ a {
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
min-height: 800px;
border-radius: 16px;
padding: 10px;
}
.text-background {
@ -131,13 +131,13 @@ a {
}
.glass {
backdrop-filter: blur(4px);
backdrop-filter: blur(8px);
border-radius: 16px;
margin: 32px 16px 64px;
}
.glassint {
backdrop-filter: blur(4px);
backdrop-filter: blur(8px);
border-radius: 16px;
margin: 32px 16px 64px;
animation-name: glassdiff;
@ -156,13 +156,13 @@ a {
backdrop-filter: blur(2px);
}
100% {
backdrop-filter: blur(4px);
backdrop-filter: blur(8px);
}
}
@keyframes glassclear {
0% {
backdrop-filter: blur(4px);
backdrop-filter: blur(8px);
}
100% {
backdrop-filter: blur(2px);
@ -231,4 +231,14 @@ a {
.ascii-art {
color: white;
background-color: rgba(51, 51, 51, 0.2);
}
.button {
border: 4px solid rgba(255, 255, 255, 0.5);
border-radius: 16px;
margin: 0px 16px 16px 16px;
padding: 8px;
font-size: 16px;
text-align: center;
font-weight: bold;
}