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

Updated Feedback/Contact form #324

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
83 changes: 77 additions & 6 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1375,9 +1375,21 @@ div.card {
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#about,
#services {
background: #ffffff;
}

/* Padding for #about, #services, and footer */
#about,
#services,
footer {
padding-top: 100px;
padding-bottom: 100px;
}

/* Adding Pulsing Animation */
@keyframes pulse
{
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.7);
}
Expand All @@ -1389,8 +1401,7 @@ div.card {
}
}

.btn-custom:hover
{
.btn-custom:hover {
animation: pulse 1.5s infinite;
}

Expand Down Expand Up @@ -2142,16 +2153,75 @@ div.card {
color: #0082e6;
}

/* Contact section */
#contact {
background-color: #f1c11a;
padding-top: 60px;
padding-bottom: 100px;
}

.section-title h1 {
font-size: 50px;
letter-spacing: normal;
font-weight: 700;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.section-title h1:hover {
font-size: 52px;
}

.section-title p {
font-size: 20px;
}

#contact .form-control {
background-color: cornsilk;
border: 2px solid #e0e0e0;
border-radius: 18px;
font-size: 18px;
margin-bottom: 16px;
transition: all 0.4s ease-in-out;
}

#contact .form-control:active {
box-shadow: 1px 0px 5px black;
}

#contact input {
height: 55px;
}

#contact input[type="submit"] {
border: none;
background: #242424;
color: white;
font-size: 20px;
font-weight: 600;
letter-spacing: 1px;
transition: all 0.4s ease-in-out;
margin-top: 10px;
}

#contact input[type="submit"]:hover {
font-size: 22px;
transition: font-size 0.3s linear 0.1s;
}

/* Service cards hover effect */
.service-cards:hover .heading-hover {
color: white;
}

/* Icons */
.icon1 {
position: absolute;
top: calc(42%);
left: 4.2%;
font-size: 30px;
color: white;
}

.icon2 {
position: absolute;
top: calc(21%);
Expand All @@ -2160,8 +2230,9 @@ div.card {
color: white;
}

/* Submit button style */
.submit {
font-size: 100 px;
font-size: 100px; /* Fixed typo by removing space between 100 and px */
font-weight: bold;
letter-spacing: 2px;
}
Expand Down Expand Up @@ -2249,7 +2320,7 @@ i {
display: flex;
align-items: center;
justify-content: left;
padding: 50px 0px 0 0px;
padding: 50px 0px 40px 0px; /* 50px top, 0px right, 40px bottom, 0px left */
}

h3 {
Expand Down
Loading