fix 404 and redundant shit
This commit is contained in:
parent
7d1bd7883d
commit
18c6c9b2c0
4 changed files with 3 additions and 72 deletions
|
|
@ -1,18 +0,0 @@
|
|||
---
|
||||
---
|
||||
@import 'colors.css';
|
||||
@import 'libs/vars';
|
||||
|
||||
@import 'libs/reset';
|
||||
|
||||
// sethy stuff
|
||||
@import 'layout';
|
||||
@import 'libs/animations';
|
||||
@import 'elements';
|
||||
@import 'navigation';
|
||||
@import 'zafari';
|
||||
@import 'videos';
|
||||
@import 'cookies';
|
||||
@import 'player';
|
||||
@import 'trackplayer';
|
||||
@import 'set';
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
---
|
||||
---
|
||||
@import 'libs/vars';
|
||||
|
||||
@import 'libs/reset';
|
||||
|
||||
// sethy stuff
|
||||
@import 'libs/animations';
|
||||
@import 'layout';
|
||||
@import 'elements';
|
||||
@import 'navigation';
|
||||
@import 'zafari';
|
||||
@import 'videos';
|
||||
@import 'cookies';
|
||||
@import 'player';
|
||||
@import 'trackplayer';
|
||||
@import 'set';
|
||||
@import 'noscripts';
|
||||
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
// When the user scrolls the page, execute scrollMenu
|
||||
window.onscroll = function () { scrollMenu() };
|
||||
|
||||
// Get the navbar
|
||||
var navbar = document.getElementById("logo");
|
||||
var hider = document.getElementById("sticky");
|
||||
// Get the offset position of the navbar
|
||||
var sticky = navbar.offsetTop;
|
||||
|
||||
|
||||
|
||||
// Add the sticky class to the navbar when you reach its scroll position. Remove "sticky" when you leave the scroll position
|
||||
function scrollMenu() {
|
||||
if (window.pageYOffset >= sticky) {
|
||||
hider.classList.add("sticky")
|
||||
} else {
|
||||
hider.classList.remove("sticky")
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// Make a pretty background when menu is open
|
||||
var bodyBluring = document.getElementById("main-wrapper")
|
||||
|
||||
function blurBody() {
|
||||
bodyBluring.classList.toggle("blurredout");
|
||||
}
|
||||
function removeBlur() {
|
||||
bodyBluring.classList.remove("blurredout")
|
||||
}
|
||||
|
||||
/// request permission to autoplay
|
||||
Loading…
Add table
Add a link
Reference in a new issue