updated the 404 page
This commit is contained in:
parent
1a4330ec19
commit
b70681ea6e
3 changed files with 108 additions and 10 deletions
BIN
app/assets/images/monkeyselfie.jpg
Normal file
BIN
app/assets/images/monkeyselfie.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 198 KiB |
|
@ -1813,7 +1813,7 @@ float: left;
|
|||
}
|
||||
|
||||
#colophoneHeader {
|
||||
padding-bottom:40px;
|
||||
padding-bottom:12px;
|
||||
}
|
||||
|
||||
#about > p, #getInvolved > p, #invite > p, #colophon p {
|
||||
|
|
116
public/404.html
116
public/404.html
|
@ -3,24 +3,122 @@
|
|||
<head>
|
||||
<title>The page you were looking for doesn't exist (404)</title>
|
||||
<style type="text/css">
|
||||
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
||||
|
||||
@font-face {
|
||||
font-family: 'din-medium';
|
||||
src: url('/assets/Fonts/din.eot');
|
||||
src: url('/assets/Fonts/din.eot?#iefix') format('embedded-opentype'),
|
||||
url('/assets/Fonts/din.woff') format('woff'),
|
||||
url('/assets/Fonts/din.ttf') format('truetype'),
|
||||
url('/assets/Fonts/din.svg#din-medium') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'din-regular';
|
||||
src: url('/assets/Fonts/din-reg.eot');
|
||||
src: url('/assets/Fonts/din-reg.eot?#iefix') format('embedded-opentype'),
|
||||
url('/assets/Fonts/din-reg.woff') format('woff'),
|
||||
url('/assets/Fonts/din-reg.ttf') format('truetype'),
|
||||
url('/assets/Fonts/din-reg.svg#din-reg') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #d8d9da url(shattered_@2X.png);
|
||||
font-family: 'din-regular', helvetica, sans-serif;
|
||||
color: #424242;
|
||||
text-align: justify;
|
||||
font-size: 18px;
|
||||
line-height: 18px;
|
||||
}
|
||||
.title a {
|
||||
color:#c04f4f;
|
||||
}
|
||||
.title{
|
||||
font-size:50px;
|
||||
line-height: 50px;
|
||||
text-align: left;
|
||||
font-family: 'din-medium', helvetica, sans-serif;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
div.dialog {
|
||||
width: 25em;
|
||||
padding: 0 4em;
|
||||
margin: 4em auto 0 auto;
|
||||
border: 1px solid #ccc;
|
||||
width: 500px;
|
||||
border: 0px;
|
||||
border-right-color: #999;
|
||||
border-bottom-color: #999;
|
||||
float: left;
|
||||
margin-right: 100px;
|
||||
padding-top: 150px;
|
||||
}
|
||||
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
||||
.picture {
|
||||
width: 500px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.picture img {
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
margin: 0 auto;
|
||||
width: 1100px;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline-block;
|
||||
width: 220px;
|
||||
height: 14px;
|
||||
padding: 16px 0;
|
||||
text-align: center;
|
||||
border-radius: 2px;
|
||||
font-size: 14px;
|
||||
box-shadow: 0px 1px 1.5px rgba(0,0,0,0.12), 0 1px 1px rgba(0,0,0,0.24);
|
||||
margin: 0 auto;
|
||||
text-decoration: none;
|
||||
color: #FFFFFF;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.blogCTA {
|
||||
background-color: #4fc059;
|
||||
|
||||
}
|
||||
|
||||
.blogCTA:hover {
|
||||
background-color: #49ad4e;
|
||||
}
|
||||
|
||||
.exploreFeaturedCTA {
|
||||
background-color: #a354cd;
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
.exploreFeaturedCTA:hover {
|
||||
background-color: #9150bc;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- This file lives in public/404.html -->
|
||||
<div class="dialog">
|
||||
<h1>The page you were looking for doesn't exist.</h1>
|
||||
<p>You may have mistyped the address or the page may have moved.</p>
|
||||
<div class="wrapper">
|
||||
<div class="dialog">
|
||||
<h1 class="title">404 - You've Found Nothing</h1>
|
||||
<p>Nothing is here!</p>
|
||||
<p>There are nothings that inspire and nothings that motivate, but there are no nothings that cannot stir your experience of nothing.</p>
|
||||
<p>Therefore there is nothing to see here, nothing to behold here, nothing to be here, maybe there is but definitely not here.</p>
|
||||
<p>Therefore, move along! Nothing is ending here<a href="http://spacecollective.org/Wildcat/8942/Some-nothings-are-like-elephants-really-big-elephants" target="_blank">...</a></p>
|
||||
<a href="/explore/featured" class="button exploreFeaturedCTA">EXPLORE FEATURED MAPS</a>
|
||||
<a href="http://blog.metamaps.cc" class="button blogCTA">GO TO OUR BLOG</a>
|
||||
|
||||
</div>
|
||||
<div class="picture">
|
||||
<img src="/assets/monkeyselfie.jpg"/>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue