Skip to content

Instantly share code, notes, and snippets.

@captn3m0
Created March 7, 2014 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save captn3m0/9415230 to your computer and use it in GitHub Desktop.
Save captn3m0/9415230 to your computer and use it in GitHub Desktop.
A basic mockup of our new status page.
.header{
position: fixed;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -100px;
}
.min{
font-family: 'Simonetta', cursive;
}
body{
background:white;
font-family:sans-serif;
}
.anim{
display:none;
}
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
<meta charset="utf-8">
<title>SDSLabs Status Page</title>
<link href='http://fonts.googleapis.com/css?family=Simonetta' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="header"><h1 class="min">Everything's Up!</h1><small class="anim">Show More</small></div>
</body>
</html>
$(document).mousemove(function(){
$('.anim').fadeIn();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment