diff --git a/Website/index.html b/Website/index.html index 95c417a93..bab28d29a 100644 --- a/Website/index.html +++ b/Website/index.html @@ -26,17 +26,136 @@

Welcome to the Machine Learning Repositories

This website provides an overview of various machine learning repositories available on GitHub, brought to you by the RecodeHive organization.

Visit the Repository . + + +
+

Repository Information

+
+

+

Owner:

+ Owner Avatar +

View on GitHub

+
+
+ + +
+

Repository Statistics

+
+
+

Total Stars

+
0
+
+
+

Total Forks

+
0
+
+
+

Open Issues

+
0
+
+
+

License

+
No License
+
+
+

Repository Size

+
0 MB
+
+
+

Total Contributors

+
0
+
+
+

Total Projects

+
10
+
+
+

Most Used Language

+
N/A
+
+
+
+ + +
+

Languages Used

+ +
+

Repositories

+ - + diff --git a/Website/styles.css b/Website/styles.css index 413899aa5..b122f297e 100644 --- a/Website/styles.css +++ b/Website/styles.css @@ -3,34 +3,18 @@ body { margin: 0; padding: 0; background-color: #f4f4f4; - overflow-y: auto; /* Ensure vertical scrollbar appears if needed */ + overflow-y: auto; } -::-webkit-scrollbar { - width: 10px; /* Set the width of the scrollbar */ -} - -::-webkit-scrollbar-track { - background: #f4f4f4; /* Background color of the track */ -} - -::-webkit-scrollbar-thumb { - background: #007bff; /* Color of the scrollbar thumb */ - border-radius: 5px; /* Round the corners of the scrollbar thumb */ -} - -::-webkit-scrollbar-thumb:hover { - background: #0056b3; /* Darker color on hover */ -} +/* Header Styles */ header { background-color: #333; color: white; - padding: 10px 0; + padding: 20px 20px; display: flex; justify-content: space-between; align-items: center; - padding: 20px 20px; } header h1 { @@ -55,6 +39,7 @@ nav ul li a { font-weight: bold; } +/* Main Section Styles */ main { padding: 20px; text-align: center; @@ -70,6 +55,58 @@ main { margin-top: 20px; } +/* Statistics Cards Styles */ +.stats-grid { + display: grid; + grid-template-columns: repeat(4, 1fr); + gap: 1rem; + margin-top: 2rem; + padding: 20px; +} + +.stat-card { + background-color: #fff; + padding: 20px; + border-radius: 10px; + text-align: center; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} + +.stat-card h3 { + margin-bottom: 0.5rem; + color: #007bff; +} + +/* Responsive Adjustments */ +@media (max-width: 768px) { + .stats-grid, + .contributors-grid { + grid-template-columns: 1fr; + } +} + +/* Language List Styles */ +#languages ul { + list-style: none; + padding: 0; + margin: 0; +} + +#languages li { + margin-bottom: 0.5rem; + display: flex; + align-items: center; +} + +.language-bar { + flex-grow: 1; + height: 10px; + border-radius: 5px; + margin-left: 0.5rem; + background-color: #007bff; +} + +/* Footer Styles */ footer { background-color: #333; color: white; @@ -140,4 +177,14 @@ footer a { flex: 1 1 100%; max-width: 100%; } -} \ No newline at end of file +} +/* Additional Styles for Responsiveness */ +@media (max-width: 768px) { + .stats-grid { + grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); + } + + .contributors-grid { + grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); + } +}