Added baby Shiba + added heal boy function and choice window (needs to be implemented)

This commit is contained in:
2024-09-12 23:01:15 +02:00
parent eece543199
commit 9b3e7ecaa1
8 changed files with 60 additions and 11 deletions

View File

@@ -136,4 +136,49 @@ span p{
main{
border-radius: 0;
}
}
#blurs{
z-index: 68;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
backdrop-filter: blur(10px);
}
#chui{
z-index: 69;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
height: 400px;
padding: 1.5rem;
border: none;
border-radius: 1.5rem;
background-color: #333333dd;
color: #fff;
transition: .5s;
overflow: hidden;
}
#chui::backdrop{
content: '';
position: absolute;
background: #3c3;
width: 200px;
height: 300px;
border: red 2px solid;
}