Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Last active January 5, 2018 11:38
Show Gist options
  • Save ScarletPonytail/da9083d9230cd729e8930370b9a16cb3 to your computer and use it in GitHub Desktop.
Save ScarletPonytail/da9083d9230cd729e8930370b9a16cb3 to your computer and use it in GitHub Desktop.
CSS - Transparent background only
// Background image
.logo-section {
min-height: 250px;
&::after {
content: "";
background: url(keyboard-886462_1920.jpg) no-repeat center center;
@include background-cover;
opacity: 0.5;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}
}
// Background colour
background-color: rgba(208,170,87,0.5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment