diff --git a/pages/landing.html b/pages/landing.html index 9dce47d..6aa07fc 100644 --- a/pages/landing.html +++ b/pages/landing.html @@ -828,7 +828,8 @@
+
IOSC
GDSC-ABESEC
ALGOCS
GDSC-ABESIT
- LOOP-GCET
+
+ LOOP-GCET
GDSC-GCET
+ OS community
+
+ GDSC-GL BAJAJ
+
+
diff --git a/public/css/leaderboard.css b/public/css/leaderboard.css
index 85fb1c1..23bc077 100644
--- a/public/css/leaderboard.css
+++ b/public/css/leaderboard.css
@@ -1434,6 +1434,7 @@ body {
.table-hover.table-mc-light-blue>tbody>tr:hover>td,
.table-hover.table-mc-light-blue>tbody>tr:hover>th {
background-color: #b3e5fc;
+ border-radius: 20px;
}
@media screen and (max-width: 767px) {
diff --git a/public/css/sponsor.css b/public/css/sponsor.css
index 0763230..3f974a5 100644
--- a/public/css/sponsor.css
+++ b/public/css/sponsor.css
@@ -145,4 +145,12 @@
.ag-courses-item_date-box {
font-size: 16px;
}
- }
\ No newline at end of file
+ }
+
+ /* From https://css.glass */
+/* background: rgba(255, 255, 255, 0.2);
+border-radius: 16px;
+box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
+backdrop-filter: blur(5px);
+-webkit-backdrop-filter: blur(5px);
+border: 1px solid rgba(255, 255, 255, 0.3); */
\ No newline at end of file
diff --git a/public/img/Season_2/login-image.png b/public/img/Season_2/login-image.png
new file mode 100644
index 0000000..84bdf7c
Binary files /dev/null and b/public/img/Season_2/login-image.png differ
diff --git a/public/img/sponsors/os-dev.png b/public/img/sponsors/os-dev.png
new file mode 100644
index 0000000..7840cf8
Binary files /dev/null and b/public/img/sponsors/os-dev.png differ
diff --git a/public/img/sponsors/replit_new-removebg-preview.png b/public/img/sponsors/replit_new-removebg-preview.png
index 55fbf69..8d0dd7b 100644
Binary files a/public/img/sponsors/replit_new-removebg-preview.png and b/public/img/sponsors/replit_new-removebg-preview.png differ
diff --git a/views/project.ejs b/views/project.ejs
index e978dbf..aed69b5 100644
--- a/views/project.ejs
+++ b/views/project.ejs
@@ -61,9 +61,21 @@
<%= project[i].projectName %>
- + +
+ <% + const description = project[i].description; + const words = description.split(' '); + const newWord = words.slice(0, 15).join(' '); + + const dots = words.length > 15; + + %> + <%= newWord %><%= dots ? '...' : '' %>
+