diff --git a/Website/index.html b/Website/index.html index 8ad76b4d6..ff8867768 100644 --- a/Website/index.html +++ b/Website/index.html @@ -117,8 +117,76 @@

Our Contributors

+
+

Milestones Progress

+
+
+

Algorithms and Deep Learning Models

+

This milestone enhances the website's performance and design by integrating advanced algorithms and Deep Learning models.

+
+
+
+

34 closed / 34 total

+
+
+

Classification Models

+

This Milestone focuses on improving the website's performance and design by implementing and optimizing various classification models.

+
+
+
+

23 closed / 23 total

+
+
+

Data Analysis

+

This milestone is dedicated to enhancing the website's performance and design through the integration and application of data analysis techniques.

+
+
+
+

20 closed / 20 total

+
+
+

NLP Models

+

This milestone focuses on integrating NLP models to enhance website functionality and user interaction, improving performance and design through advanced natural language processing techniques.

+
+
+
+

5 closed / 10 total

+
+
+

Computer Vision Models

+

This milestone focuses on integrating computer vision models to improve website performance and design by enabling advanced image and video analysis capabilities.

+
+
+
+

10 closed / 20 total

+
+
+

Detection Models

+

This milestone involves improving the website's performance and design by implementing advanced detection models to enhance functionality and accuracy.

+
+
+
+

34 closed / 34 total

+
+
+

Prediction Models

+

This milestone aims to integrate advanced prediction models to boost website performance and user experience with cutting-edge algorithms and machine learning techniques.

+
+
+
+

60 closed / 60 total

+
+
+

Recommendation Models

+

This milestone focuses on integrating advanced recommendation models to improve website performance and deliver personalized user experiences.

+
+
+
+

4 closed / 4 total

+
+
+
- @@ -145,13 +213,10 @@

Our Contributors

- - - diff --git a/Website/styles.css b/Website/styles.css index ff4c6ddda..12b35db2b 100644 --- a/Website/styles.css +++ b/Website/styles.css @@ -659,6 +659,74 @@ button#toggle-languages:hover { } +/* Milestones Progress Section */ +#milestones-progress { + margin: 50px 0; + padding: 20px; + background-color: #f9f9f9; +} + +#milestones-progress h2 { + text-align: center; + font-size: 2em; + margin-bottom: 20px; + color: #333; +} + +.milestones-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); + gap: 20px; +} + +.milestone-card { + background-color: rgb(87, 251, 248); + padding: 20px; + border-radius: 10px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + border-left: 5px solid #054ffd; + transition: transform 0.3s ease; +} + +.milestone-card:hover { + transform: translateY(-5px); +} + +.milestone-card h3 { + color: #333; + font-size: 1.25em; + margin-bottom: 10px; +} + +.milestone-card p { + color: #666; + font-size: 0.9em; + margin-bottom: 15px; + line-height: 1.5; +} + +.progress-bar { + background-color: rgb(116, 243, 209); + border-radius: 5px; + overflow: hidden; + margin-bottom: 10px; + height: 8px; +} + +.progress { + height: 100%; + background-color: #0366d6; + transition: width 0.4s ease; +} + +/* Optional: Media Query for Responsive Design */ +@media (max-width: 600px) { + .milestones-grid { + grid-template-columns: 1fr; + } +} + + /* Loading Animation CSS */ .loading-container { position: fixed; @@ -757,3 +825,4 @@ body.dark-mode { +