Skip to content

Instantly share code, notes, and snippets.

@tario
Created July 18, 2016 00:45
Show Gist options
  • Save tario/54f9f5ec8334524850e3ee7e3daf4a94 to your computer and use it in GitHub Desktop.
Save tario/54f9f5ec8334524850e3ee7e3daf4a94 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
.overlay {
position: absolute;
top: 0;
width: 100%;
height: 100%;
}
body {
margin: 0;
position: relative;
background-color: #000084;
}
.maingrid {
background-size: 120px 120px;
background-image: linear-gradient(to right, white 2px, transparent 1px), linear-gradient(to bottom, white 2px, transparent 1px);
}
.innergrid {
background-size: 10px 10px;
background-image: linear-gradient(to right, grey 1px, transparent 1px), linear-gradient(to bottom, grey 1px, transparent 1px);
}
</style>
</head>
<body>
<div>
<div class="overlay innergrid">
</div>
<div class="overlay maingrid">
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment