A Pen by punleu chomnan on CodePen.
Created
October 8, 2016 15:46
-
-
Save CHOMNANP/3d4daae172e2dd25c1353eb08de99a7a to your computer and use it in GitHub Desktop.
404 cool display
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
<h1>404</h1> | |
<a style="font-weight: normal !important;position:absolute;Top:10px;right:10px" target="_blank" href="http://cur.lv/12rxa1">Don't Click Me !</a> |
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
<script src="https://kushalexpert.github.io/webgl/profile.js"></script> |
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
html, | |
body { | |
height: 100%; | |
width: 100%; | |
overflow: hidden; | |
} | |
body { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
background: #fff; | |
} | |
h1 { | |
font-size: 30vw; | |
font-family: sans-serif; | |
position: relative; | |
color: black; | |
margin: 0; | |
padding: 0; | |
overflow: hidden; | |
&:before { | |
content: ''; | |
display: block; | |
position: absolute; | |
-webkit-filter: blur(20px); | |
filter: blur(20px); | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
mix-blend-mode: screen; | |
background-image: repeating-linear-gradient(-45deg, transparent, transparent 1em, #00c07f 1em, #e0474c 50%), | |
repeating-linear-gradient(45deg, #21A8A3, #111626 1em, #E5446D 1em, #571B3D 50%), ; | |
background-size: 3em 3em, 2em 2em; | |
animation-name: bg; | |
animation-duration: 8s; | |
animation-timing-function: linear; | |
animation-iteration-count: infinite; | |
animation-direction: alternate; | |
} | |
} | |
@keyframes bg { | |
from { background-position: 0 0; } | |
to { background-position: 400% 0; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment