-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Uploading redeveloped personal website
- Loading branch information
Showing
173 changed files
with
4,087 additions
and
5,576 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<IfModule mod_deflate.c> | ||
AddOutputFilterByType DEFLATE text/plain | ||
AddOutputFilterByType DEFLATE text/html | ||
AddOutputFilterByType DEFLATE text/xml | ||
AddOutputFilterByType DEFLATE text/css | ||
AddOutputFilterByType DEFLATE application/xml | ||
AddOutputFilterByType DEFLATE application/xhtml+xml | ||
AddOutputFilterByType DEFLATE application/rss+xml | ||
AddOutputFilterByType DEFLATE application/javascript | ||
AddOutputFilterByType DEFLATE application/x-javascript | ||
AddOutputFilterByType DEFLATE image/jpg | ||
AddOutputFilterByType DEFLATE image/png | ||
AddOutputFilterByType DEFLATE image/gif | ||
AddOutputFilterByType DEFLATE image/jpeg | ||
AddOutputFilterByType DEFLATE image/svg+xml | ||
</IfModule> |
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,7 +1,149 @@ | ||
--- | ||
layout: page | ||
title: "404" | ||
permalink: /404 | ||
--- | ||
<p>There doesn't appear to be anything here. Sorry about that.</p> | ||
<p>If you've followed a link expecting something to be here, you can <a href="mailto:{{ site.email }}?subject=Page%20not%20found">contact me</a>.</p> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
|
||
<title>:( 404 Page Not Found</title> | ||
|
||
|
||
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css?family=Passion+One:900" rel="stylesheet"> | ||
|
||
|
||
|
||
|
||
|
||
<style> | ||
* { | ||
-webkit-box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
#notfound { | ||
position: relative; | ||
height: 100vh; | ||
} | ||
|
||
#notfound .notfound { | ||
position: absolute; | ||
left: 50%; | ||
top: 50%; | ||
-webkit-transform: translate(-50%, -50%); | ||
-ms-transform: translate(-50%, -50%); | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
.notfound { | ||
max-width: 710px; | ||
width: 100%; | ||
padding-left: 190px; | ||
line-height: 1.4; | ||
} | ||
|
||
.notfound .notfound-404 { | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
width: 150px; | ||
height: 150px; | ||
} | ||
|
||
.notfound .notfound-404 h1 { | ||
font-family: 'Passion One', cursive; | ||
color: #0068c3; | ||
font-size: 150px; | ||
letter-spacing: 15.5px; | ||
margin: 0px; | ||
font-weight: 900; | ||
position: absolute; | ||
left: 50%; | ||
top: 50%; | ||
-webkit-transform: translate(-50%, -50%); | ||
-ms-transform: translate(-50%, -50%); | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
.notfound h2 { | ||
font-family: 'Raleway', sans-serif; | ||
color: #292929; | ||
font-size: 28px; | ||
font-weight: 700; | ||
text-transform: uppercase; | ||
letter-spacing: 2.5px; | ||
margin-top: 0; | ||
} | ||
|
||
.notfound p { | ||
font-family: 'Raleway', sans-serif; | ||
font-size: 14px; | ||
font-weight: 400; | ||
margin-top: 0; | ||
margin-bottom: 15px; | ||
color: #333; | ||
} | ||
|
||
.notfound a { | ||
font-family: 'Raleway', sans-serif; | ||
font-size: 14px; | ||
text-decoration: none; | ||
text-transform: uppercase; | ||
background: #fff; | ||
display: inline-block; | ||
padding: 15px 30px; | ||
border-radius: 40px; | ||
color: #292929; | ||
font-weight: 700; | ||
-webkit-box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3); | ||
box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3); | ||
-webkit-transition: 0.2s all; | ||
transition: 0.2s all; | ||
} | ||
|
||
.notfound a:hover { | ||
color: #fff; | ||
background-color: #0068c3; | ||
} | ||
|
||
@media only screen and (max-width: 480px) { | ||
.notfound { | ||
text-align: center; | ||
} | ||
.notfound .notfound-404 { | ||
position: relative; | ||
width: 100%; | ||
margin-bottom: 15px; | ||
} | ||
.notfound { | ||
padding-left: 15px; | ||
padding-right: 15px; | ||
} | ||
} | ||
</style> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<div id="notfound"> | ||
<div class="notfound"> | ||
<div class="notfound-404"> | ||
<h1>:(</h1> | ||
</div> | ||
<h2>404 - Page not found</h2> | ||
<p>The page you are looking for might have been removed had its name changed or is temporarily unavailable.</p> | ||
<a href="http://ud4ra.github.io">home page</a> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.