From 517beccb4063d27ef0bc8b1f69c558a467ef1aae Mon Sep 17 00:00:00 2001 From: hendr-ik Date: Sun, 22 Sep 2019 19:56:50 +0200 Subject: [PATCH] fix icon and update index title --- homepage/content/pages/index.md | 2 +- homepage/theme/static/scripts/fade.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/homepage/content/pages/index.md b/homepage/content/pages/index.md index 5cfaa7c..dabaf9e 100644 --- a/homepage/content/pages/index.md +++ b/homepage/content/pages/index.md @@ -1,4 +1,4 @@ -Title: Transparent web analytics | offen +Title: Transparent web analytics for everyone | offen description: offen is a free and open source analytics software for websites and web applications that allows respectful handling of data. save_as: index.html href: / diff --git a/homepage/theme/static/scripts/fade.js b/homepage/theme/static/scripts/fade.js index 6768680..da01b69 100644 --- a/homepage/theme/static/scripts/fade.js +++ b/homepage/theme/static/scripts/fade.js @@ -1,7 +1,7 @@ ;(function ($) { $(document).ready(function () { $(window).scroll(function () { - if ($(window).width() > 960) { + if ($(window).width() > 480) { var scrollProgress = parseInt($(window).scrollTop(), 10) $('body.index .icon').css('opacity', Math.min(scrollProgress / 100, 1)) }