A Pen by Alex Porter on CodePen.
Last active
October 8, 2016 16:12
-
-
Save TheAlexPorter/f5bf5700159dc93afab4f82b85b414bf to your computer and use it in GitHub Desktop.
404 cool display
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
<h1>404</h1> |
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
<script src="https://kushalexpert.github.io/webgl/profile.js"></script> |
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
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