Created
May 15, 2019 10:21
-
-
Save yumyo/0b2ec68344d6d63df5908105df68bd90 to your computer and use it in GitHub Desktop.
simple-landing
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="img"></div> | |
<div class="hatch"></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
html, body, img { | |
margin: 0; | |
padding: 0; | |
width: 100%; | |
height: 100%; | |
background-color: #000; | |
} | |
img { | |
width: 100%; | |
height: auto; | |
} | |
.img, | |
.hatch { | |
position: absolute; | |
top: 0; | |
right: 0; | |
left: 0; | |
bottom: 0; | |
} | |
.img { | |
background-image: | |
url('https://media.giphy.com/media/tL5HmgfZi0Qow/giphy.gif'); | |
background-repeat: no-repeat; | |
background-position: center center; | |
background-size: cover; | |
} | |
.hatch { | |
background-image: linear-gradient(0deg, | |
#223 25%, #450 25%, #410 50%, | |
#230 50%, #210 75%, #200 75%, #190); | |
background-size:6px 6px; | |
opacity:.3; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment