first commit

This commit is contained in:
vincent 2019-04-14 15:55:02 +02:00
commit 893ff79322
5 changed files with 89 additions and 0 deletions

33
404.html Executable file
View File

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Simple 404 Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Lato:100,300'>
<link rel="stylesheet" href="/404/css/style.css">
</head>
<body>
<div id="main">
<div class="fof">
<h1>Error 404</h1>
</div>
</div>
<script src="/404/js/index.js"></script>
</body>
</html>

3
README.txt Normal file
View File

@ -0,0 +1,3 @@
A Pen created at CodePen.io. You can find this one at https://codepen.io/akashrajendra/pen/JKKRvQ.
A simple 404 error page with CSS3 Animation

37
css/style.css Normal file
View File

@ -0,0 +1,37 @@
*{
transition: all 0.6s;
}
html {
height: 100%;
}
body{
font-family: 'Lato', sans-serif;
color: #888;
margin: 0;
}
#main{
display: table;
width: 100%;
height: 100vh;
text-align: center;
}
.fof{
display: table-cell;
vertical-align: middle;
}
.fof h1{
font-size: 50px;
display: inline-block;
padding-right: 12px;
animation: type .5s alternate infinite;
}
@keyframes type{
from{box-shadow: inset -3px 0px 0px #888;}
to{box-shadow: inset -3px 0px 0px transparent;}
}

3
js/index.js Normal file
View File

@ -0,0 +1,3 @@
/*
<3 You xD
*/

13
license.txt Normal file
View File

@ -0,0 +1,13 @@
<!--
Copyright (c) 2019 by Akash Rajendra (https://codepen.io/akashrajendra/pen/JKKRvQ)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-->