Last active
January 5, 2018 11:38
-
-
Save ScarletPonytail/da9083d9230cd729e8930370b9a16cb3 to your computer and use it in GitHub Desktop.
CSS - Transparent background only
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
// 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