Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed f2014/bg.jpg
Binary file not shown.
10 changes: 10 additions & 0 deletions f2014/css/splash.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ img{
margin-top: 1%;
}
.afterSignup{
visibility: hidden;
position: absolute;
left: 50%;
top: 50%;
Expand All @@ -105,6 +106,15 @@ img{
}


@media screen and (max-width: 1000px) {
footer {
visibility: hidden;
}
.afterSignup{
text-align: justify;
}
}

footer{
font-size: 150%;
color: gray;
Expand Down
2 changes: 2 additions & 0 deletions f2014/js/splash.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ function afterSignup() {
$('footer').fadeOut(1000);
$('.header').fadeOut(1000, function(){
$('.afterSignup').fadeIn(1000);
$('.afterSignup').css('visibility', 'visible');

});
}

Expand Down