Skip to content

Commit 1941b45

Browse files
Added navbar to 'Our Contributors' page
1 parent 062bf83 commit 1941b45

File tree

1 file changed

+85
-2
lines changed

1 file changed

+85
-2
lines changed

pages/contributorsSection.html

Lines changed: 85 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,96 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, user-scalable=no" />
56
<meta name="viewport" content="width=device-width, initial-scale=1.0">
67
<title>Contributors</title>
78
<link rel="stylesheet" href="../resources/styles/contributorsSection.css">
9+
<link rel="stylesheet" href="../resources/styles/style.css">
10+
<link rel="preconnect" href="https://fonts.googleapis.com" />
11+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
12+
<link
13+
href="https://fonts.googleapis.com/css2?family=Sometype+Mono:ital,wght@0,400..700;1,400..700&display=swap"
14+
rel="stylesheet"
15+
/>
16+
<link
17+
rel="stylesheet"
18+
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
19+
/>
820
<link rel="icon" href="../image/ml-fusion-lab-logo.png">
921
<link rel="shortcut icon" href="../images/Nomenclature.png" type="image/x-icon" />
1022
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
1123
</head>
12-
<body>
13-
<a href="../index.html"><button class="goBack">Go To Home</button></a>
24+
<body id="body">
25+
<button type="button" class="theme" id="darkThemeBtn" style="display: none">
26+
<img src="../images/moon.png" class="themeLogo" />
27+
</button>
28+
<button type="button" class="theme" id="lightThemeBtn">
29+
<img src="../images/sun.png" class="themeLogo" />
30+
</button>
31+
32+
<div class="top-elements">
33+
<a href="../index.html" class="top-link"
34+
><img
35+
src="../images/Nomenclature.png"
36+
alt="logo"
37+
class="logo"
38+
id="logo"
39+
/>
40+
<p class="codeit">CodeIt</p>
41+
</a>
42+
<nav class="navbar">
43+
<div class="navbar-container">
44+
<div class="fade-wrapper-left"></div>
45+
<div class="fade-wrapper-right"></div>
46+
<table id="navbar_table">
47+
<tr>
48+
<td class="nav-item">
49+
<a href="../index.html" class="home">Home</a>
50+
</td>
51+
<td class="nav-item">
52+
<a href="refine.html" class="competitive">Code Refiner</a>
53+
</td>
54+
<td class="nav-item">
55+
<a href="obfuscation.html" class="obfuscation"
56+
>Code Obfuscator</a
57+
>
58+
</td>
59+
<td class="nav-item">
60+
<a href="timeComplexity.html" class="time"
61+
>Time Complexity Analyser</a
62+
>
63+
</td>
64+
<td class="nav-item">
65+
<a href="../index.html#contributeSection">Contribute!</a>
66+
</td>
67+
<td class="nav-item" id="current">
68+
<a href="contributorsSection.html">Our Contributors!</a>
69+
</td>
70+
<td class="nav-item">
71+
<a href="../index.html#feedback">Give Feedback!</a>
72+
</td>
73+
<div class="highlight"></div>
74+
</tr>
75+
</table>
76+
</div>
77+
</nav>
78+
<!-- Hamburger for smaller screens -->
79+
<div class="hamburger" onclick="toggleSidebar()">
80+
<span class="material-symbols-outlined"> unfold_more </span>
81+
</div>
82+
<!-- Sidebar structure -->
83+
<div id="sidebar" class="sidebar">
84+
<span class="close-btn" onclick="toggleSidebar()">&times;</span>
85+
<a href="../index.html" class="home">Home</a>
86+
<a href="refine.html" class="competitive">Code Refiner</a>
87+
<a href="obfuscation.html" class="obfuscation">Code Obfuscator</a>
88+
<a href="timeComplexity.html" class="time">Time Complexity Analyser</a>
89+
<a href="../index.html#contributeSection">Contribute!</a>
90+
<a href="contributorsSection.html">Our Contributors!</a>
91+
<a href="../index.html#feedback">Give Feedback!</a>
92+
</div>
93+
<div class="gap"></div>
94+
</div>
1495

1596
<section class="contributor-stats">
1697
<p class="title">Project Statistics</p>
@@ -26,5 +107,7 @@
26107
<div id="contributors" class="contributors-grid"></div>
27108

28109
<script src="../resources/scripts/contributorsSection.js"></script>
110+
<script src="../resources/scripts/common_functions.js"></script>
111+
<script src="../resources/scripts/navbar.js"></script>
29112
</body>
30113
</html>

0 commit comments

Comments
 (0)