Added contact us successful image

This commit was merged in pull request #75.
This commit is contained in:
victorAnumudu
2023-02-03 08:18:48 +01:00
parent ddb5cab8b2
commit 350da5a215
3 changed files with 116 additions and 109 deletions
+9 -8
View File
@@ -3609,11 +3609,11 @@ header.fix_style.white_header {
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
justify-items: center;
gap: 10px;
}
.contact_body {
/* .contact_body {
display: flex;
flex-direction: column;
align-content: center;
@@ -3622,24 +3622,25 @@ header.fix_style.white_header {
font-size: 20px;
font-weight: 800;
text-align: center;
}
} */
/* Animations */
.animate.pop {
.animate-image {
animation-name: animate-pop;
animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
animation-duration: 0.5s;
animation-timing-function: linear;
animation-duration: 1s;
animation-fill-mode: forwards;
}
@keyframes animate-pop {
0% {
opacity: 0;
transform: scale(0.5, 0.5);
transform: scale(0.5);
}
100% {
opacity: 1;
transform: scale(1, 1);
transform: scale(1);
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB