A Pen by Chris Tsongas on CodePen.
Created
August 5, 2017 23:17
-
-
Save anonymous/7ccf9359c5680a13f324d401dc5e29de to your computer and use it in GitHub Desktop.
Classical Drawing Value Scale
This file contains 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
<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> |
This file contains 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
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