Skip to content

Commit 0183d00

Browse files
committed
First Release
0 parents  commit 0183d00

File tree

121 files changed

+19322
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+19322
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/node_modules
2+
/__MACOSX
3+
._*
4+
5+

404.html

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Page Not Found</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800" rel="stylesheet">
8+
<style>
9+
*, body {
10+
-webkit-font-smoothing: antialiased;
11+
text-rendering: optimizeLegibility;
12+
-moz-osx-font-smoothing: grayscale;
13+
}
14+
* {
15+
line-height: 1.2;
16+
margin: 0;
17+
}
18+
19+
html {
20+
color: #888;
21+
display: table;
22+
font-family: 'Nunito Sans', sans-serif;
23+
height: 100%;
24+
text-align: center;
25+
width: 100%;
26+
}
27+
28+
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
29+
font-family: 'Nunito Sans', sans-serif;
30+
}
31+
32+
body {
33+
display: table-cell;
34+
vertical-align: middle;
35+
margin: 2em auto;
36+
}
37+
38+
h1 {
39+
color: #ef4153;
40+
text-shadow: rgba(235, 82, 93, 0.3) 5px 1px, rgba(235, 82, 93, 0.2) 10px 3px;
41+
font-size: 150px;
42+
font-weight: 800;
43+
margin-bottom: 10px;
44+
letter-spacing: 2px;
45+
}
46+
h4 {
47+
color: #4a5361;
48+
text-transform: capitalize;
49+
font-size: 28px;
50+
}
51+
52+
p {
53+
margin: 0 auto;
54+
max-width: 790px;
55+
margin-top: 20px;
56+
color: #666 ;
57+
margin-bottom: 10px;
58+
font-size: 15px;
59+
line-height: 20px;
60+
}
61+
a {
62+
display: inline-block;
63+
padding: 8px 15px;
64+
background-color: #ef4153;
65+
color: #fff;
66+
text-decoration: none;
67+
border-radius: 4px;
68+
margin-top: 20px;
69+
}
70+
71+
@media only screen and (max-width: 280px) {
72+
73+
body, p {
74+
width: 95%;
75+
}
76+
77+
h1 {
78+
font-size: 1.5em;
79+
margin: 0 0 0.3em;
80+
}
81+
82+
}
83+
84+
</style>
85+
</head>
86+
<body>
87+
<h1>404</h1>
88+
<h4>Page Not Found</h4>
89+
<p>It's looking like you may have taken a wrong turn. Don't worry... it happens to the best of us. Here's a little tip that might help you get back on track.</p>
90+
<a href="index.html">Return to Home</a>
91+
</body>
92+
</html>
93+
<!-- IE needs 512+ bytes: http://blogs.msdn.com/b/ieinternals/archive/2010/08/19/http-error-pages-in-internet-explorer.aspx -->

apple-touch-icon-114x114.png

4.63 KB
Loading

apple-touch-icon-120x120.png

4.66 KB
Loading

apple-touch-icon-144x144.png

5.12 KB
Loading

apple-touch-icon-152x152.png

5.3 KB
Loading

apple-touch-icon-180x180.png

5.71 KB
Loading

apple-touch-icon-57x57.png

3.69 KB
Loading

apple-touch-icon-72x72.png

3.94 KB
Loading

apple-touch-icon-76x76.png

4.02 KB
Loading

0 commit comments

Comments
 (0)