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

background gradient added, box hadow added, contact card bg modified #244

Merged
merged 1 commit into from
Oct 31, 2022
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
27 changes: 21 additions & 6 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -603,6 +603,7 @@ body.dark {
/* About Us section Styles goes here */

.aboutus-section-wrapper {
background-image: linear-gradient(white, #cee1e8);
width: 100%;
/* height: 100vh; */
margin-top: 4rem;
Expand Down Expand Up @@ -849,7 +850,8 @@ body.dark {

/* Past Events section Styles goes here */
.past-events {
margin: 100px 0;
background-color: #cee1e8;
padding: 100px 0;
}

.events-title {
Expand Down Expand Up @@ -973,6 +975,12 @@ body.dark {
font-family: "Playfair Display SC", serif;
}

.swiper-slide:hover {
transform: scale(1.02);
box-shadow: #537185 0px 0px 20px 1px;
transition: transform 0.3s ease;
}

/* @media (max-width: 768px) {
.past-events-card {
display: none;
Expand Down Expand Up @@ -1103,7 +1111,8 @@ body.dark {

/* Achievements section styles goes here */
.achievement-section {
margin: 100px 0;
background-color: #cee1e8;
padding: 0 0 100px 0;
}

.achievement-section {
Expand Down Expand Up @@ -1221,7 +1230,12 @@ span.text {
/* Our Team section Styles goes here */

/* FAQ section Styles goes here */
.faq-section h1 {

.faq-section{
background-image: linear-gradient(#cee1e8, #fff);
}

.faq-section h1 {
text-align: center;
/* font-family: "Lato", sans-serif; */
font-family: "Playfair Display SC", serif;
Expand Down Expand Up @@ -1307,6 +1321,7 @@ span.text {
/* Contact Us section Styles goes here */

.contact-container {
background-image: linear-gradient(#fff, #e7f4f9);
position: relative;
width: 100%;
min-height: 100vh;
Expand All @@ -1315,7 +1330,7 @@ span.text {
display: flex;
align-items: center;
justify-content: center;
margin: 160px 0 100px;
padding: 160px 0 100px;
}

@media (max-width: 768px) {
Expand All @@ -1331,7 +1346,7 @@ span.text {
.form {
width: 100%;
max-width: 820px;
background-color: #fff;
background-color: #c5e0ed;
border-radius: 10px;
box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
z-index: 1;
Expand Down Expand Up @@ -1371,7 +1386,7 @@ span.text {
position: absolute;
width: 26px;
height: 26px;
background-color: #fff;
background-color: #c5e0ed;
transform: rotate(45deg);
top: 50px;
left: -13px;
Expand Down