A Pen by Chris Tsongas on CodePen.
Forked from anonymous/classical-drawing-value-scale.markdown
Created
August 5, 2017 23:18
-
-
Save tsongas/e823ed46b944744e198ab8a20f0b3395 to your computer and use it in GitHub Desktop.
Classical Drawing Value Scale
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
<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 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
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