|
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, user-scalable=no" /> |
5 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
6 | 7 | <title>Contributors</title> |
7 | 8 | <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 | + /> |
8 | 20 | <link rel="icon" href="../image/ml-fusion-lab-logo.png"> |
9 | 21 | <link rel="shortcut icon" href="../images/Nomenclature.png" type="image/x-icon" /> |
10 | 22 | <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" /> |
11 | 23 | </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()">×</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> |
14 | 95 |
|
15 | 96 | <section class="contributor-stats"> |
16 | 97 | <p class="title">Project Statistics</p> |
|
26 | 107 | <div id="contributors" class="contributors-grid"></div> |
27 | 108 |
|
28 | 109 | <script src="../resources/scripts/contributorsSection.js"></script> |
| 110 | + <script src="../resources/scripts/common_functions.js"></script> |
| 111 | + <script src="../resources/scripts/navbar.js"></script> |
29 | 112 | </body> |
30 | 113 | </html> |
0 commit comments