This repository has been archived by the owner on May 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
188 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
body[data-page="error"] { | ||
background-image: url(/assets/img/cover.jpg); | ||
background-size: cover; | ||
width: 100%; | ||
height: 100%; | ||
font-size: 16px; | ||
line-height: 25px; | ||
font-weight: normal; | ||
} | ||
|
||
.mayday { | ||
font-size: 34px; | ||
color: white; | ||
animation: flicker 2s ease infinite; | ||
padding: 0 21rem; | ||
margin: 9% auto 50px auto; | ||
} | ||
|
||
.astro-wrap { | ||
width: 175px; | ||
height: 283px; | ||
margin: 0 auto; | ||
position: relative; | ||
} | ||
|
||
.astronaut { | ||
background: url(/assets/img/astronaut.png); | ||
width: 175px; | ||
height: 283px; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
transform: translate(0, 50px); | ||
animation: move 10s infinite; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.text-center { | ||
text-align: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +0,0 @@ | ||
/* | ||
(TEXT) PARAMS | ||
================= | ||
1. Namespace | ||
2. Intensity | ||
3. Text color | ||
4. Background color (flat) | ||
5. Highlight #1 color | ||
6. Highlight #2 color | ||
7. Width (px) | ||
8. Height (px) | ||
*/ | ||
|
||
@mixin textGlitch($name, $intensity, $textColor, $background, $highlightColor1, $highlightColor2, $width, $height) { | ||
|
||
color: $textColor; | ||
position: relative; | ||
$steps: $intensity; | ||
|
||
// Ensure the @keyframes are generated at the root level | ||
@at-root { | ||
// We need two different ones | ||
@for $i from 1 through 2 { | ||
@keyframes #{$name}-anim-#{$i} { | ||
@for $i from 0 through $steps { | ||
#{percentage($i*(1/$steps))} { | ||
clip: rect( | ||
random($height)+px, | ||
$width+px, | ||
random($height)+px, | ||
0 | ||
); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
&:before, | ||
&:after { | ||
content: attr(data-text); | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
background: $background; | ||
clip: rect(0, 0, 0, 0); | ||
} | ||
&:after { | ||
left: 2px; | ||
text-shadow: -1px 0 $highlightColor1; | ||
animation: #{$name}-anim-1 2s infinite linear alternate-reverse; | ||
} | ||
&:before { | ||
left: -2px; | ||
text-shadow: 2px 0 $highlightColor2; | ||
animation: #{$name}-anim-2 3s infinite linear alternate-reverse; | ||
} | ||
|
||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
|
||
{{! Meta }} | ||
<title>Page not Found - {{@blog.title}}</title> | ||
|
||
<meta name="HandheldFriendly" content="True"> | ||
<meta name="MobileOptimized" content="320"> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> | ||
|
||
<meta name="description" content="{{meta_description}}"> | ||
|
||
<meta name="twitter:card" content="summary"> | ||
<meta name="twitter:title" content="{{meta_title}}"> | ||
<meta name="twitter:description" content="{{meta_description}}"> | ||
|
||
<meta property="og:type" content="article"> | ||
<meta property="og:title" content="{{meta_title}}"> | ||
<meta property="og:description" content="{{meta_description}}"> | ||
|
||
{{!-- Favicon --}} | ||
<link rel="shortcut icon" href="/assets/img/favicon.ico"> | ||
<link rel="apple-touch-icon" sizes="57x57" href="/assets/img/apple-touch-icon-57x57.png"> | ||
<link rel="apple-touch-icon" sizes="114x114" href="/assets/img/apple-touch-icon-114x114.png"> | ||
<link rel="apple-touch-icon" sizes="72x72" href="/assets/img/apple-touch-icon-72x72.png"> | ||
<link rel="apple-touch-icon" sizes="144x144" href="/assets/img/apple-touch-icon-144x144.png"> | ||
<link rel="apple-touch-icon" sizes="60x60" href="/assets/img/apple-touch-icon-60x60.png"> | ||
<link rel="apple-touch-icon" sizes="120x120" href="/assets/img/apple-touch-icon-120x120.png"> | ||
<link rel="apple-touch-icon" sizes="76x76" href="/assets/img/apple-touch-icon-76x76.png"> | ||
<link rel="apple-touch-icon" sizes="152x152" href="/assets/img/apple-touch-icon-152x152.png"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/apple-touch-icon-180x180.png"> | ||
<link rel="icon" type="image/png" href="/assets/img/favicon-192x192.png" sizes="192x192"> | ||
<link rel="icon" type="image/png" href="/assets/img/favicon-160x160.png" sizes="160x160"> | ||
<link rel="icon" type="image/png" href="/assets/img/favicon-96x96.png" sizes="96x96"> | ||
<link rel="icon" type="image/png" href="/assets/img/favicon-16x16.png" sizes="16x16"> | ||
<link rel="icon" type="image/png" href="/assets/img/favicon-32x32.png" sizes="32x32"> | ||
<meta name="msapplication-TileColor" content="#00a300"> | ||
<meta name="msapplication-TileImage" content="/assets/img/mstile-144x144.png"> | ||
<meta name="msapplication-config" content="/assets/img/browserconfig.xml"> | ||
|
||
{{! Styles and Scripts }} | ||
<link rel="stylesheet" type="text/css" href="{{asset "css/uno.css"}}" /> | ||
|
||
{{! Ghost Magic }} | ||
{{ghost_head}} | ||
|
||
</head> | ||
<body data-page="error" class="text-center no-js"> | ||
<div class="panel-cover--overlay"> | ||
<div class="astro-wrap"> | ||
<a class="astronaut" href="#" title="return to base"></a> | ||
</div> | ||
<h1 class="mayday"> | ||
..shhh....houston...404. ..shhhh...lost...in...space. .shhhhh... | ||
</h1> | ||
|
||
<a id="panic-button" class="btn btn-small" href="#">Panic button</a> | ||
|
||
</div> | ||
|
||
{{! Ghost Footer Magic }} | ||
{{ghost_foot}} | ||
{{! The main JavaScript file for Casper }} | ||
<script type="text/javascript" src="{{asset "js/uno.js"}}"></script> | ||
{{> google-analytics}} | ||
</body> | ||
</html> |