updated website

This commit is contained in:
Nathanwoodburn
2021-08-19 11:01:15 +10:00
parent 1a8a1b51a5
commit 086f961577
101 changed files with 5173 additions and 163 deletions

File diff suppressed because one or more lines are too long

7
assets/bootstrap/js/bootstrap.min.js vendored Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

4
assets/fonts/font-awesome.min.css vendored Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 434 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/fonts/ionicons.eot Normal file

Binary file not shown.

11
assets/fonts/ionicons.min.css vendored Normal file

File diff suppressed because one or more lines are too long

2230
assets/fonts/ionicons.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 326 KiB

BIN
assets/fonts/ionicons.ttf Normal file

Binary file not shown.

BIN
assets/fonts/ionicons.woff Normal file

Binary file not shown.

BIN
assets/img/NJW Icon 16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 323 B

BIN
assets/img/NJW Icon 180.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 918 B

BIN
assets/img/NJW Icon 192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
assets/img/NJW Icon 32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 371 B

BIN
assets/img/NJW Icon 512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 KiB

BIN
assets/img/downloads-bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

BIN
assets/img/intro-bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

43
assets/js/grayscale.js Normal file
View File

@@ -0,0 +1,43 @@
(function() {
"use strict"; // Start of use strict
var mainNav = document.querySelector('#mainNav');
if (mainNav) {
var navbarCollapse = mainNav.querySelector('.navbar-collapse');
if (navbarCollapse) {
var collapse = new bootstrap.Collapse(navbarCollapse, {
toggle: false
});
var navbarItems = navbarCollapse.querySelectorAll('a');
// Closes responsive menu when a scroll trigger link is clicked
for (var item of navbarItems) {
item.addEventListener('click', function (event) {
collapse.hide();
});
}
}
// Collapse Navbar
var collapseNavbar = function() {
var scrollTop = (window.pageYOffset !== undefined) ? window.pageYOffset : (document.documentElement || document.body.parentNode || document.body).scrollTop;
if (scrollTop > 100) {
mainNav.classList.add("navbar-shrink");
} else {
mainNav.classList.remove("navbar-shrink");
}
};
// Collapse now if page is not at top
collapseNavbar();
// Collapse the navbar when page is scrolled
document.addEventListener("scroll", collapseNavbar);
}
})(); // End of use strict