Created
October 25, 2017 14:34
-
-
Save gavinanderegg/eb421ee44109117429561feeea89a942 to your computer and use it in GitHub Desktop.
Colour Overlays
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
html, body { | |
margin: 0; | |
padding: 0; | |
} | |
#background { | |
background: #575757; | |
} | |
#overlay { | |
background: rgba(0, 0, 0, 0.6) | |
} | |
.layer { | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="background" class="layer"> | |
<div id="overlay" class="layer"> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment