Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save alexanderkustov/7618803 to your computer and use it in GitHub Desktop.

Select an option

Save alexanderkustov/7618803 to your computer and use it in GitHub Desktop.
A Pen by Alexander.
<div class="bg-img"></div>
@import "compass";
html, body {
width: 100%;
height: 100%;
}
.bg-img {
width: 100%;
height: 100%;
background: url('http://i.imgur.com/lpNa36T.jpg') center center no-repeat;
background-size: cover;
&:before {
content: '';
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to bottom right,rgb(92, 187, 82),#2d72d9);
opacity: .6;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment