Initial Commit
This commit is contained in:
commit
f54d97e4a9
30 changed files with 2532 additions and 0 deletions
14
static/css/main.css
Normal file
14
static/css/main.css
Normal file
|
@ -0,0 +1,14 @@
|
|||
@import "https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.0/css/bulma.min.css";
|
||||
|
||||
.inline {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.linkButton {
|
||||
background: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
ul.noStyle li {
|
||||
list-style-type: none;
|
||||
}
|
BIN
static/img/logo.png
Normal file
BIN
static/img/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 98 KiB |
8
static/js/nav.js
Normal file
8
static/js/nav.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
window.onload = () => {
|
||||
const burger = document.getElementById('navBarBurger');
|
||||
const navBarMenu = document.getElementById('navBarMenu');
|
||||
burger.addEventListener('click', () => {
|
||||
burger.classList.toggle('is-active');
|
||||
navBarMenu.classList.toggle('is-active');
|
||||
});
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue