This commit is contained in:
sky
2025-10-26 10:27:36 -04:00
parent a043621fff
commit 50372cc7eb
9 changed files with 273 additions and 14 deletions

View File

@ -78,6 +78,37 @@ body {
backdrop-filter: blur(0);
}
}
warnings {
position: absolute;
top: -20px;
left: -20px;
display: flex;
justify-content: center;
align-items: center;
}
warning {
width: 25px;
height: 25px;
color: var(--text-color);
border-radius: 100%;
display: flex;
justify-content: center;
align-items: center;
margin: 4px;
font-size: 12px;
}
.gore {
background-color: rgb(100, 20, 20);
box-shadow: 0 0 10px rgb(100, 20, 20);
}
.thirteen {
background-color: rgb(0, 0, 0);
box-shadow: 0 0 10px rgb(0, 0, 0);
}
.horror {
background-color: rgb(118, 118, 118);
box-shadow: 0 0 10px rgb(193, 193, 193);
}
body[fast] game {
background-color: color-mix(in srgb, var(--color-2) 70%, #000000 30%);
backdrop-filter: blur(0);

View File

@ -94,7 +94,7 @@ results {
overflow-y: scroll;
background-color: color-mix(in srgb, var(--color-3) 50%, #00000000 50%);
box-shadow: 0 0 10px var(--color-3);
bottom: 16px;
margin-top: 12px;
flex-direction: column;
border-radius: 8px;
}

View File

@ -1,13 +1,12 @@
section {
width: 30%;
/* height: 400px; */
height: auto;
min-width: 20%;
height: 400px;
padding: 8px;
margin: 16px;
background-color: color-mix(in srgb, var(--color-2) 40%, #00000000 60%);
display: flex;
flex-direction: column;
justify-content: center;
/* justify-content: center; */
align-items: center;
flex-wrap: wrap;
border-radius: 20px;
@ -17,10 +16,11 @@ section {
box-shadow: 0 0 10px var(--color-2);
}
sections {
width: 90vw;
display: flex;
justify-content: center;
align-items: center;
width: 90vw;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
#colorPicker {

View File

@ -98,4 +98,50 @@ iframe {
bottom: 60px;
filter: drop-shadow(0 0 0 #fff5);
opacity: 0;
}
alert {
border-radius: 4px;
display: flex;
flex-direction: column;
position: absolute;
width: 40%;
justify-content: center;
align-items: center;
padding: 8px;
color: white;
background-color: color-mix(in srgb, #d46c6c 80%, #00000000 20%);
backdrop-filter: blur(2px);
box-shadow: 0 0 10px #d46c6c;
left: 50%;
transform: translateX(-50%);
animation: fadeIn 1s ease-in-out forwards, fadeOut 1s ease-in-out forwards 14s;
cursor: pointer;
}
alert h1 {
font-size: 20px;
margin: 0;
}
alert p {
font-size: 16px;
margin: 0;
}
@keyframes fadeIn {
0% {
opacity: 0;
top: -50px;
}
100% {
opacity: 1;
top: 10px;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
top: 10px;
}
100% {
opacity: 0;
top: -50px;
}
}