Last active
August 29, 2015 14:13
-
-
Save bmvakili/6665ce80d83cc6c51643 to your computer and use it in GitHub Desktop.
25x25 checker board css
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
.box-wrapper { | |
width: 250px; | |
height: 250px; | |
} | |
.box-wrapper > .box{ | |
background: #000; | |
width: 8px; | |
height: 8px; | |
float: left; | |
margin: 1px; | |
} | |
.box-wrapper > .box-alt { | |
background: #999; | |
} | |
.box-wrapper > .box:hover { | |
background: #00ff00; | |
} | |
.box-wrapper > .highlight { | |
background: #00ff00 !important; | |
} | |
.box-wrapper > .box.highlight-locked { | |
background-color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment