Skip to content

Instantly share code, notes, and snippets.

@erwstout
Created April 1, 2015 02:34
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 erwstout/3528cb23d3e831231949 to your computer and use it in GitHub Desktop.
Save erwstout/3528cb23d3e831231949 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="container">
<div class="row hero"></div>
</div>
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
.hero {
width: 100%;
height: 500px;
background: url('http://placesheen.com/1200/500') center center no-repeat;
background-size:cover;
&:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 508px;
background-image: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,1));
}
}
.container{
max-width: 900px;
margin: 0 auto;
height:800px;
}
.hero {
width: 100%;
height: 500px;
background: url("http://placesheen.com/1200/500") center center no-repeat;
background-size: cover;
}
.hero:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 508px;
background-image: linear-gradient(rgba(255, 255, 255, 0.2), white);
}
.container {
max-width: 900px;
margin: 0 auto;
height: 800px;
}
<div class="container">
<div class="row hero"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment