diff --git a/f2014/bg.jpg b/f2014/bg.jpg deleted file mode 100644 index 2509195..0000000 Binary files a/f2014/bg.jpg and /dev/null differ diff --git a/f2014/css/splash.css b/f2014/css/splash.css index 21653fd..5a5e579 100644 --- a/f2014/css/splash.css +++ b/f2014/css/splash.css @@ -80,6 +80,7 @@ img{ margin-top: 1%; } .afterSignup{ + visibility: hidden; position: absolute; left: 50%; top: 50%; @@ -105,6 +106,15 @@ img{ } +@media screen and (max-width: 1000px) { + footer { + visibility: hidden; + } + .afterSignup{ + text-align: justify; + } +} + footer{ font-size: 150%; color: gray; diff --git a/f2014/js/splash.js b/f2014/js/splash.js index c76b49b..2fc7678 100644 --- a/f2014/js/splash.js +++ b/f2014/js/splash.js @@ -2,6 +2,8 @@ function afterSignup() { $('footer').fadeOut(1000); $('.header').fadeOut(1000, function(){ $('.afterSignup').fadeIn(1000); + $('.afterSignup').css('visibility', 'visible'); + }); }