Skip to content

Instantly share code, notes, and snippets.

@janephilipps
Created February 24, 2018 23:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janephilipps/19de73be24da21e1130a3a9f7805aa55 to your computer and use it in GitHub Desktop.
Save janephilipps/19de73be24da21e1130a3a9f7805aa55 to your computer and use it in GitHub Desktop.
/* ROW STYLES */
.row {
display: block;
}
.row:not(first-child) {
margin-top: -4px; /* display: inline-block fix */
}
.row:nth-child(1) .square {
border-top: none;
}
.row:nth-child(3) .square {
border-bottom: none;
}
/* SQUARE STYLES */
.square {
display: inline-block;
width: 20vmin;
height: 20vmin;
border: 1vmin solid black;
overflow: hidden;
}
.square:nth-child(1) {
border-left: none;
}
.square:nth-child(3) {
border-right: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment