Skip to content

Commit

Permalink
Update iso9001-velocity-venture.html
Browse files Browse the repository at this point in the history
Signed-off-by: Raydo Matthee <[email protected]>
  • Loading branch information
burnt-exe authored Jun 12, 2024
1 parent 58e70ca commit 3cbc887
Showing 1 changed file with 46 additions and 8 deletions.
54 changes: 46 additions & 8 deletions docs/iso9001-velocity-venture.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
list-style: none;
display: flex;
justify-content: center;
position: relative;
}
header ul li {
position: relative;
Expand All @@ -50,16 +51,37 @@
padding: 0;
list-style: none;
}
header ul li:hover ul {
display: flex;
}
header ul li ul li {
padding: 10px;
white-space: nowrap;
}
header ul li ul li a {
padding: 0;
}
.dropdown-content {
display: none;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
background: #50b3a2;
padding: 0;
list-style: none;
z-index: 1;
}
.dropdown-content a {
color: #fff;
padding: 10px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #e8491d;
}
.show {
display: flex;
}
.main {
padding: 30px 0;
}
Expand Down Expand Up @@ -105,6 +127,22 @@
margin-left: 20px;
}
</style>
<script>
function toggleDropdown() {
document.getElementById("docsDropdown").classList.toggle("show");
}
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
for (var i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>
</head>
<body>
<header>
Expand All @@ -113,11 +151,11 @@ <h1>ISO9001 Implementation for Velocity Venture</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li>
<a href="#">Doc's</a>
<ul>
<li><a href="iso9001-velocity-venture.html">ISO9001 Implementation for Velocity Venture</a></li>
<li><a href="qms-4levels.html">Quality Management System Development for 4Levels</a></li>
<li><a href="audit-course-monster.html">Internal Audit Report for Course Monster</a></li>
<a href="#" class="dropbtn" onclick="toggleDropdown()">Doc's</a>
<ul id="docsDropdown" class="dropdown-content">
<li><a href="https://github.skunkworks.africa/docs/iso9001-velocity-venture.html">ISO9001 Implementation for Velocity Venture</a></li>
<li><a href="https://github.skunkworks.africa/docs/qms-4levels.html">Quality Management System Development for 4Levels</a></li>
<li><a href="https://github.skunkworks.africa/docs/audit-course-monster.html">Internal Audit Report for Course Monster</a></li>
<li><a href="IBM.html">IBM Documentation</a></li>
<li><a href="faq.md">FAQ</a></li>
<li><a href="index.md">Index</a></li>
Expand Down

0 comments on commit 3cbc887

Please sign in to comment.