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

Enhanced the heading in Contact form #812

Merged
merged 3 commits into from
May 25, 2024
Merged
Changes from 1 commit
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
17 changes: 8 additions & 9 deletions assets/contact/contact.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,24 @@ header {
margin: 0 auto;
padding: 25px;
padding-top: 10px;
background: rgb(245, 230, 230);
background: linear-gradient(177deg, rgba(245, 230, 230, 0.7232142857142857) 40%, rgba(249, 249, 249, 0.21621148459383754) 100%, rgba(0, 0, 0, 1) 100%);
background: linear-gradient(177deg, rgba(58, 83, 114, 0.7) 40%, rgba(124, 85, 127, 0.5) 100%);
border-radius: 20px;
display: grid;
justify-content: center;
align-items: center;
box-shadow: -10px -10px 50px #b400a5;
box-shadow: -10px -10px 50px #6278da;
}

.contact-container h2 {
font-family: Ubuntu;
font-size: 4rem;
text-shadow: 2px 2px 10px var(--light);
text-shadow: 2px 2px 10px #1d243b;
margin-top: 16px;
color: white;
color: #fff;
}

.contact-container p {
color: black;
color: #ddd;
font-size: 17px;
font-weight: 500;
margin-bottom: 28px;
Expand Down Expand Up @@ -81,7 +80,7 @@ textarea {

input:hover,
textarea:hover {
box-shadow: 5px 5px 10px black;
box-shadow: 5px 5px 10px rgb(19, 28, 112);
}

button {
Expand All @@ -93,14 +92,14 @@ button {
border: none;
border-radius: 15px;
color: #ffffff;
background: #ff1b82;
background: #820f3f;
cursor: pointer;
transition: 0.5s ease-in-out;
}

button:hover {
transform: scale(1.02);
background: #ff6984;
background: #60094e;
}

/*----------------------------------------------- Updated Footer Styling ---------------------------------------*/
Expand Down