Skip to content

Commit e3ece3e

Browse files
authored
Merge pull request #244 from 8-bit-souvik/main
background gradient added, box hadow added, contact card bg modified
2 parents 24995a7 + 615ef19 commit e3ece3e

File tree

1 file changed

+21
-6
lines changed

1 file changed

+21
-6
lines changed

styles.css

+21-6
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,7 @@ body.dark {
603603
/* About Us section Styles goes here */
604604

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

850851
/* Past Events section Styles goes here */
851852
.past-events {
852-
margin: 100px 0;
853+
background-color: #cee1e8;
854+
padding: 100px 0;
853855
}
854856

855857
.events-title {
@@ -973,6 +975,12 @@ body.dark {
973975
font-family: "Playfair Display SC", serif;
974976
}
975977

978+
.swiper-slide:hover {
979+
transform: scale(1.02);
980+
box-shadow: #537185 0px 0px 20px 1px;
981+
transition: transform 0.3s ease;
982+
}
983+
976984
/* @media (max-width: 768px) {
977985
.past-events-card {
978986
display: none;
@@ -1103,7 +1111,8 @@ body.dark {
11031111

11041112
/* Achievements section styles goes here */
11051113
.achievement-section {
1106-
margin: 100px 0;
1114+
background-color: #cee1e8;
1115+
padding: 0 0 100px 0;
11071116
}
11081117

11091118
.achievement-section {
@@ -1221,7 +1230,12 @@ span.text {
12211230
/* Our Team section Styles goes here */
12221231

12231232
/* FAQ section Styles goes here */
1224-
.faq-section h1 {
1233+
1234+
.faq-section{
1235+
background-image: linear-gradient(#cee1e8, #fff);
1236+
}
1237+
1238+
.faq-section h1 {
12251239
text-align: center;
12261240
/* font-family: "Lato", sans-serif; */
12271241
font-family: "Playfair Display SC", serif;
@@ -1307,6 +1321,7 @@ span.text {
13071321
/* Contact Us section Styles goes here */
13081322

13091323
.contact-container {
1324+
background-image: linear-gradient(#fff, #e7f4f9);
13101325
position: relative;
13111326
width: 100%;
13121327
min-height: 100vh;
@@ -1315,7 +1330,7 @@ span.text {
13151330
display: flex;
13161331
align-items: center;
13171332
justify-content: center;
1318-
margin: 160px 0 100px;
1333+
padding: 160px 0 100px;
13191334
}
13201335

13211336
@media (max-width: 768px) {
@@ -1331,7 +1346,7 @@ span.text {
13311346
.form {
13321347
width: 100%;
13331348
max-width: 820px;
1334-
background-color: #fff;
1349+
background-color: #c5e0ed;
13351350
border-radius: 10px;
13361351
box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
13371352
z-index: 1;
@@ -1371,7 +1386,7 @@ span.text {
13711386
position: absolute;
13721387
width: 26px;
13731388
height: 26px;
1374-
background-color: #fff;
1389+
background-color: #c5e0ed;
13751390
transform: rotate(45deg);
13761391
top: 50px;
13771392
left: -13px;

0 commit comments

Comments
 (0)