diff --git a/static/src/js/utils.js b/static/src/js/utils.js index c651ba4..547ab5d 100644 --- a/static/src/js/utils.js +++ b/static/src/js/utils.js @@ -15,3 +15,8 @@ $(function() { // https://css-tricks.com/snippets/jquery/smooth-scrolling/ } }); }); + +$('a[href="soon"]').click(function (e) { + e.preventDefault(); + alert("Content coming soon, stand by!"); +}); diff --git a/static/src/less/style.less b/static/src/less/style.less index 14d80b6..0c5c40b 100644 --- a/static/src/less/style.less +++ b/static/src/less/style.less @@ -48,7 +48,7 @@ footer { padding-top: 10px; padding-bottom: 50px; color: white; - font-size: 14px; + font-size: 16px; background-color: #232323; a { color: #ff7f00; diff --git a/templates/base.html b/templates/base.html index 5483aa7..dbb6208 100644 --- a/templates/base.html +++ b/templates/base.html @@ -23,10 +23,10 @@