Skip to content

Instantly share code, notes, and snippets.

@yumyo
Created May 15, 2019 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yumyo/0b2ec68344d6d63df5908105df68bd90 to your computer and use it in GitHub Desktop.
Save yumyo/0b2ec68344d6d63df5908105df68bd90 to your computer and use it in GitHub Desktop.
simple-landing
<div class="img"></div>
<div class="hatch"></div>
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