diff --git a/index.html b/index.html index 07accce0..7d53b024 100755 --- a/index.html +++ b/index.html @@ -123,12 +123,8 @@

Our Projects

alt="ScholarX" >

ScholarX is an exclusive 6-month mentoring program - aimed - at a - selected - pool of undergraduate students based in Sri Lanka.

-
- 5000+
+ aimed at a selected pool of undergraduate students based in Sri Lanka.

+
5000+

hours of mentoring provided via our ScholarX program

@@ -139,11 +135,8 @@
IRC

The International Research Council (IRC) is a - community - created by - SEF to - showcase the work in various fields of Sri Lankan researchers.

-
100+
+ community created by SEF to showcase the work in various fields of Sri Lankan researchers.

+
100+

researchers of Sri Lankan origin representing the world's top universities

@@ -155,11 +148,9 @@
100+
class="card-img-top project-img img-center" alt="OneLive">

"OneLive" is an interactive webinar series done - every weekend with the - experts in their fields to expand - the knowledge of Sri Lankan students. + every weekend with the experts in their fields to expand the knowledge of Sri Lankan students.

-
275 000+
+
275 000+

students reached via our Onelive interactive webinar series

@@ -175,11 +166,9 @@
275 000+
Academix

AcadeMix aims to curate a collection of free - education resources - for Sri Lankan students to maximise their learning + education resources for Sri Lankan students to maximise their learning potential from Primary through to Post Graduate education.

-
- 100+
+
100+

free online resources to learn from home

@@ -193,21 +182,20 @@

A 12 week program aimed at creating a non-competitive safe environment to develop English speaking skills for Sri Lankan undergraduates.

-
- 09
+
09

students improved their English speaking skills

- + +
Student Ambassador

Student Ambassadors (SA) of the Sustainable Education Foundation (SEF) will act as a liaison for SEF while also acting as an - Evangelist for the Sustainable - Education Foundation.

-
100+
+ Evangelist for the Sustainable Education Foundation.

+
100+

students trained with soft skills required for the industry

@@ -538,4 +526,68 @@
Sanmugathasan Prasanthan
) }) + + + diff --git a/scholarx/past-programs/index.html b/scholarx/past-programs/index.html index 2e04a74c..be25a77b 100644 --- a/scholarx/past-programs/index.html +++ b/scholarx/past-programs/index.html @@ -88,9 +88,8 @@

Take a look at our past

ScholarX

-
-
- + -
diff --git a/scholarx/past-programs/style.css b/scholarx/past-programs/style.css index eb2581ba..3484563a 100644 --- a/scholarx/past-programs/style.css +++ b/scholarx/past-programs/style.css @@ -2,3 +2,74 @@ height: 140px; object-fit: cover; } + +.scholarx-card-deck{ + display: flex; + flex-wrap: wrap; + justify-content: space-between; + gap: 15px; +} +.scholarx-card-deck .scholarx-card{ + width: calc(100%/3 - 10px) !important; + display: flex; + flex-direction: column; + box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07) !important; + border-radius: 25px; + min-height: 325px; +} + +.scholarx-card-deck .scholarx-card .card-img{ + border-top-left-radius: 25px; + border-top-right-radius: 25px; + height: 100px; + object-fit: cover; + width: 100%; + border-bottom: 1px solid #f1f1f1; +} + +.scholarx-card-deck .scholarx-card .card-body{ + padding: 0 !important; + display: flex; + flex-direction: column; + padding: 20px !important; + gap: 10px; + +} + +.scholarx-card-deck .scholarx-card .card-body .card-title{ + font-size: 1.3rem; + font-weight: 600; + color: #333; + margin-bottom: 0; +} + +.scholarx-card-deck .scholarx-card .card-body .card-text{ + font-size: 0.9rem; + color: #666; + margin-bottom: 0; +} + +@media (max-width: 768px) { + .scholarx-card-deck .scholarx-card{ + width: calc(100%/2 - 15px/2) !important; + gap: 0; + } + + .scholarx-card-deck .scholarx-card .card-img{ + height: 100px; + } + + .scholarx-card-deck .scholarx-card .card-body .card-title{ + font-size: 1.2rem; + } + + .scholarx-card-deck .scholarx-card .card-body .card-text{ + font-size: 0.85rem; + } +} + +@media (max-width: 494px) { + .scholarx-card-deck .scholarx-card{ + width: 100% !important; + } +}