A Pen by A Non Ymous on CodePen.
Created
March 17, 2014 20:14
-
-
Save anonymous/9607355 to your computer and use it in GitHub Desktop.
A Pen by Captain Anonymous.
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="dice one">1</div> | |
<div class="dice two">2</div> | |
<div class="dice three">3</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
body { | |
background-color:black; | |
color:white; | |
} | |
.dice { | |
background-color:white; | |
width:100px; | |
height:100px; | |
position:relative; | |
} | |
.dice:after { | |
content:""; | |
background: transparent; | |
width:10px; | |
height:10px; | |
border-radius:50%; | |
position:absolute; | |
top:45px; | |
left:45px; | |
} | |
.dice.one:after { | |
box-shadow: inset 10px 10px black; | |
} | |
.dice.two:after { | |
box-shadow: 40px 40px black, | |
-40px -40px black; | |
} | |
.dice.three:after { | |
box-shadow: inset 10px 10px black, | |
40px 40px black, | |
-40px -40px black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment