A Pen by Andrew Kirchmyer on CodePen.
Created
November 17, 2013 03:36
-
-
Save akirchmyer/7508745 to your computer and use it in GitHub Desktop.
A Pen by Andrew Kirchmyer.
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
| <ul> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| <li></li> | |
| </ul> |
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
| body { | |
| background: | |
| radial-gradient(black 15%, transparent 16%) 0 0, | |
| radial-gradient(black 15%, transparent 16%) 8px 8px, | |
| radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 0 1px, | |
| radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 8px 9px; | |
| background-color:#282828; | |
| background-size:16px 16px; | |
| } | |
| ul li { | |
| display: inline-block; | |
| width: 100px; | |
| height: 100px; | |
| background-color: white; | |
| border-radius: 10px; | |
| position: relative; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment