Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[style]: Adding hover effect on "Enter your email ID" box #1330

Merged
merged 1 commit into from
Nov 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12043,3 +12043,22 @@ section .container2 {
margin-bottom: 20px;
}

.email-input {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
outline: none;
}

.email-input:hover {
transform: translateZ(5px) scale(1.02); /* Creates a 3D lift effect */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adds shadow for depth */
}

.email-input:focus {
border-color: #4a90e2; /* Optional: Changes border color on focus */
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3); /* Slightly more intense shadow on focus */
}
Loading