Skip to content

Instantly share code, notes, and snippets.

@markbiek
Created February 4, 2018 20:00
Show Gist options
  • Save markbiek/d5942ae8c43757719db5422793e10f67 to your computer and use it in GitHub Desktop.
Save markbiek/d5942ae8c43757719db5422793e10f67 to your computer and use it in GitHub Desktop.
/*
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