Skip to content

Commit

Permalink
Incorporated IBM Carbon Design System for the dropdown menu
Browse files Browse the repository at this point in the history
  • Loading branch information
burnt-exe committed Jun 14, 2024
1 parent 1fa9c68 commit c1ab6c3
Showing 1 changed file with 19 additions and 43 deletions.
62 changes: 19 additions & 43 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/footer.css">
<link rel="stylesheet" href="./css/forms.css">
<link rel="stylesheet" href="./css/header.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/sidebar.css">
<link rel="stylesheet" href="https://unpkg.com/@carbon/[email protected]/css/index.min.css">
<title>Welcome to Skunkworks: Innovative Technology and Education Solutions</title>
<style>
/* General Styles */
Expand All @@ -24,21 +20,6 @@
color: #fff;
padding: 10px 0;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
.section {
padding: 20px;
margin: 10px 0;
Expand Down Expand Up @@ -119,12 +100,6 @@
.grid-container {
grid-template-columns: 1fr;
}
nav ul {
flex-direction: column;
}
nav ul li {
margin: 10px 0;
}
.partners-list {
grid-template-columns: 1fr;
}
Expand All @@ -134,22 +109,23 @@
<body>
<header>
<nav>
<ul>
<li><a href="./AWS.html">AWS</a></li>
<li><a href="./CISCO.html">CISCO</a></li>
<li><a href="./GitHub.html">GitHub</a></li>
<li><a href="./Google.html">Google</a></li>
<li><a href="./HashiCorp.html">HashiCorp</a></li>
<li><a href="./IBM-Maximo-Manage-v8.x-Certified-Administrator-Preparation-and-Certification-Learning-Path.html">IBM Maximo</a></li>
<li><a href="./ibm-qradar.html">IBM QRadar</a></li>
<li><a href="./ibm-security-verify-access.html">IBM Security</a></li>
<li><a href="./Microsoft.html">Microsoft</a></li>
<li><a href="./Oracle.html">Oracle</a></li>
<li><a href="./Palo Alto.html">Palo Alto</a></li>
<li><a href="./RedHat.html">RedHat</a></li>
<li><a href="./SAP.html">SAP</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="bx--dropdown bx--dropdown--inline bx--dropdown--light">
<button class="bx--dropdown-text" aria-haspopup="listbox" aria-expanded="false">
<span class="bx--dropdown-text__inner">Menu</span>
<span class="bx--dropdown-text__icon bx--dropdown-text__icon--caret-down"></span>
</button>
<ul class="bx--dropdown-list" role="listbox">
<li class="bx--dropdown-item" role="option" tabindex="0">
<a href="./AWS.html">AWS</a>
</li>
<li class="bx--dropdown-item" role="option" tabindex="0">
<a href="./CISCO.html">CISCO</a>
</li>
<li class="bx--dropdown-item" role="option" tabindex="0">
<a href="./GitHub.html">GitHub</a>
</li>
</ul>
</div>
</nav>
</header>
<section id="welcome" class="section welcome-section">
Expand Down Expand Up @@ -299,6 +275,6 @@ <h1>Contact Us</h1>
<footer>
<p>© 2024 Skunkworks. All rights reserved.</p>
</footer>
<script src="./js/formHandler.js"></script>
<script src="https://unpkg.com/@carbon/[email protected]/js/index.min.js"></script>
</body>
</html>

0 comments on commit c1ab6c3

Please sign in to comment.