Skip to content

Instantly share code, notes, and snippets.

@conectado
Last active August 3, 2018 21:03
Show Gist options
  • Save conectado/6314cace15ebfb2d78725603cca4f56a to your computer and use it in GitHub Desktop.
Save conectado/6314cace15ebfb2d78725603cca4f56a to your computer and use it in GitHub Desktop.
body {
background-color: rgb(29,30,40);
}
.item-up {
background-color: rgb(189,215,238);
}
.item-down {
background-color: rgb(248,203,173);
}
.sub-grid-wrapper {
display: grid;
grid-template-columns: repeat(2, 200px);
grid-column-gap: 10px;
}
.grid-wrapper {
display: grid;
grid-template-rows: repeat(4, 100px);
grid-template-columns: repeat(auto-fit, 410px);
grid-row-gap: 10px;
grid-column-gap: 10px;
max-width: 830px;
max-height: 210px;
overflow-y: hidden;
margin: 0 auto;
justify-content: space-evenly;
align-content: space-between;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment