Created
July 29, 2018 20:29
-
-
Save marcobraghim/85bb7b63a392543700bb29c2fe470aad to your computer and use it in GitHub Desktop.
Error Page 404
This file contains hidden or 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
<div class="info"> | |
follow me : | |
<a href="https://codepen.io/mo7hamed/pens/public/#" target="_blank">codepen</a> | |
<a href="https://plus.google.com/u/0/115875826373261470610" target="_blank">gmail</a> | |
</div> | |
<div class="box"> | |
<div> | |
close ! | |
</div> | |
<p><span>error 404 !</span> sorry page isn't found for one of the reformes </p> | |
</div> |
This file contains hidden or 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
body{ | |
margin: 0; | |
padding: 20px; | |
background-color:#FFC900; | |
font-family: arial; | |
height: 700px | |
} | |
.info{ | |
position: absolute; | |
top:0; | |
left:0; | |
padding: 10px 0; | |
font-size: 110%; | |
text-transform: capitalize; | |
color:#FFC900; | |
font-weight: 700; | |
background-color:#fff; | |
width:100%; | |
text-align:center | |
} | |
.info a{ | |
text-decoration: none; | |
color:#333 | |
} | |
.info a:after{ | |
content:" | "; | |
color:#FFC900 | |
} | |
.info a:last-of-type:after{content:""} | |
.box{ | |
text-align: center; | |
position: relative; | |
} | |
.box div{ | |
width: 250px; | |
height: 80px; | |
line-height: 80px; | |
color:#ffc900; | |
background-color: #fff; | |
font-size: 280%; | |
position: absolute; | |
top:490px; | |
left:40%; | |
text-transform: capitalize; | |
animation: moving 8s linear infinite; | |
-webkit-animation: moving 8s linear infinite; | |
-moz-animation: moving 8s linear infinite; | |
-o-animation: moving 8s linear infinite; | |
transform-origin: 50% -400%; | |
-webkittransform-origin: 50% -400%; | |
-moz-transform-origin: 50% -400%; | |
-o-transform-origin: 50% -400%; | |
} | |
.box div:before{ | |
content: ""; | |
width: 25px; | |
height: 25px; | |
background-color:#fff; | |
border-radius: 50%; | |
display: block; | |
position: absolute; | |
left:45%; | |
top:-350px; | |
} | |
.box div:after{ | |
content: ""; | |
width: 3px; | |
height: 335px; | |
background-color: #fff; | |
display: block; | |
position: absolute; | |
left: 50%; | |
top: -330px; | |
} | |
.box p{ | |
position: absolute; | |
top:560px; | |
left:38%; | |
font-weight: 700; | |
text-transform: uppercase; | |
color:#fff; | |
width: 300px | |
} | |
.box p span{ | |
display: block; | |
font-size:300% | |
} | |
@keyframes moving{ | |
0%,100%{ | |
transform: rotate(0) | |
} | |
25%{ | |
transform: rotate(3deg); | |
} | |
50%{ | |
transform: rotate(-3deg) | |
} | |
} | |
@-webkit-keyframes moving{ | |
0%,100%{ | |
transform: rotate(0) | |
} | |
25%{ | |
transform: rotate(3deg); | |
} | |
50%{ | |
transform: rotate(-3deg) | |
} | |
} | |
@-moz-keyframes moving{ | |
0%,100%{ | |
transform: rotate(0) | |
} | |
25%{ | |
transform: rotate(3deg); | |
} | |
50%{ | |
transform: rotate(-3deg) | |
} | |
} | |
@-o-keyframes moving{ | |
0%,100%{ | |
transform: rotate(0) | |
} | |
25%{ | |
transform: rotate(3deg); | |
} | |
50%{ | |
transform: rotate(-3deg) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment