Skip to content

Instantly share code, notes, and snippets.

Created August 5, 2017 23:17
Show Gist options
  • Save anonymous/7ccf9359c5680a13f324d401dc5e29de to your computer and use it in GitHub Desktop.
Save anonymous/7ccf9359c5680a13f324d401dc5e29de to your computer and use it in GitHub Desktop.
Classical Drawing Value Scale
<div class="container"><div class="one"></div><div class="two"></div><div class="three"></div><div class="four"></div><div class="five"></div><div class="six"></div><div class="seven"></div></div>
div {
display: inline-block;
width: 77.143px;
height: 77.143px;
margin: 0;
}
.container {
display: block;
width: 540px;
margin: 50px;
border: 1px solid #000;
}
.one {
background-color: hsl(0, 0%, 100%);
}
.two {
background-color: hsl(0, 0%, 83.3333%);
}
.three {
background-color: hsl(0, 0%, 66.6667%);
}
.four {
background-color: hsl(0, 0%, 50%);
}
.five {
background-color: hsl(0, 0%, 33.3333%);
}
.six {
background-color: hsl(0, 0%, 16.6667%);
}
.seven {
background-color: hsl(0, 0%, 0%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment