Update v1.0.1

Took 1 hour 27 minutes
This commit is contained in:
2022-11-23 23:56:46 +01:00
parent 6446896565
commit 1b8376644e
63 changed files with 146 additions and 50 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1020 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 611 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 611 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 817 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 353 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 640 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 921 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 938 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 688 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 353 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 640 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 817 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 938 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 688 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 921 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

View File

@ -12,6 +12,19 @@
}
.btn-blendout {
animation: 1s blendOut forwards;
}
@keyframes blendOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.inputGroup {
margin-bottom: 1.5%;
}
@ -107,6 +120,7 @@ label {
margin-right: 1%;
margin-bottom: 2%;
border: 0;
background-color: #e9e9ed;
border-radius: 3px;
}

View File

@ -88,7 +88,7 @@ body {
top: -90%;
left: -50%;
border-radius: 40%;
animation: animWater 8s linear infinite, animFillIn var(--fillTime) linear forwards;
animation: animWater 7s linear infinite, animFillIn var(--fillTime) linear forwards;
}
.water::after {
@ -100,7 +100,7 @@ body {
top: -100%;
left: -52%;
border-radius: 40%;
animation: animWater 8s linear infinite, animFillIn var(--fillTime) linear forwards;
animation: animWater 7s linear infinite, animFillIn var(--fillTime) linear forwards;
animation-delay: 0.4s;
}
@ -109,6 +109,11 @@ body {
transition: background-color 1s;
}
.waterFinished {
background-color: green;
transition: background-color 2s;
}
@keyframes animFillIn {
0% {
top: -100%;

View File

@ -63,12 +63,12 @@
.modalBlendIn {
animation: modalBlendIn 0.5s ease;
animation: modalBlendIn 0.5s forwards;
}
.modalBlendOut {
animation: modalBlendOut 0.8s ease;
animation: modalBlendOut 0.8s forwards;
}

View File

@ -23,7 +23,7 @@ html * {
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
cursor: none;
}
@ -55,6 +55,12 @@ h1 {
}
h2 {
font-size: 1.45em;
font-weight: 500;
margin-bottom: 2%;
}
#overlay {
color: white;