Skip to content

Commit

Permalink
Merge pull request #1282 from sakeel-103/main
Browse files Browse the repository at this point in the history
Feat: Contact Us section UI design CSS style improving.
  • Loading branch information
arghadipmanna101 authored Jul 4, 2024
2 parents 14425d0 + 2ab1603 commit 3021e0d
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion css/contactus.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,33 @@ text-align: left;
::placeholder{
color: #0000006B;
}

@keyframes blink {
0% {
box-shadow: 0 4px 8px rgba(255, 255, 255, 0.25);
}
50% {
box-shadow: 0 4px 8px rgba(255, 255, 255, 1);
}
100% {
box-shadow: 0 4px 8px rgba(255, 255, 255, 0.25);
}
}

.form-container {
background: #FF7D1F63;

padding: 20px;
border-radius: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
box-shadow: 0 4px 8px rgba(255, 255, 255, 2.5);
width: 400px;
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.form-container:hover {
transform: scale(1.05); /* Slightly enlarge the element */
animation: blink 1.5s infinite;
}

.form-container h1 {
Expand Down

0 comments on commit 3021e0d

Please sign in to comment.