Skip to content

Instantly share code, notes, and snippets.

@gavinanderegg
Created October 25, 2017 14:34
Show Gist options
  • Save gavinanderegg/eb421ee44109117429561feeea89a942 to your computer and use it in GitHub Desktop.
Save gavinanderegg/eb421ee44109117429561feeea89a942 to your computer and use it in GitHub Desktop.
Colour Overlays
<!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