Skip to content

Instantly share code, notes, and snippets.

@proxymoron
Created July 24, 2015 17:07
Show Gist options
  • Save proxymoron/2284cac0cda62b4a50ce to your computer and use it in GitHub Desktop.
Save proxymoron/2284cac0cda62b4a50ce to your computer and use it in GitHub Desktop.
404
<div class="pagenotfound">
<div class="wrap">
<div class="content">
<h1>Oops, page was not found.</h1>
</div>
</div>
</div>
@import "compass/css3";
.pagenotfound {
width: 100vw;
height: 100vh;
background: url(http://media2.giphy.com/media/258KoczzDzsbK/giphy.gif) no-repeat;
background-size: cover;
background-position: 50% 50%;
}
.wrap {
width: 100%;
height: 100%;
background: rgba(black, 0.3);
}
.content {
background: rgba(black, 0.3);
margin: 0 auto;
width: 96%;
position: relative;
top: 70%;
}
/**********************************
BEAUTY STUFF
**********************************/
h1 {
color: #BADA55;
text-transform: uppercase;
margin: 0;
padding: 1em 0;
text-align: center;
text-shadow: 0 0 2px rgba(black, 0.8);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment