Created
February 4, 2018 20:00
-
-
Save markbiek/d5942ae8c43757719db5422793e10f67 to your computer and use it in GitHub Desktop.
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
/* | |
Styles for https://gist.github.com/markbiek/f807dd8235a7fa9c68a6f9862bf4790d | |
*/ | |
* { | |
box-sizing: border-box; | |
} | |
.grid { | |
display: flex; | |
justify-content: flex-start; | |
align-items: center; | |
width: 50%; | |
height: 100px; | |
margin: 0 auto 10px auto; | |
border: 1px solid green; | |
.box { | |
width: 64px; | |
height: 64px; | |
border: 1px solid red; | |
margin: 0 5px 0 5px; | |
text-align: center; | |
padding-top: 19px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment