Skip to content

Instantly share code, notes, and snippets.

@conectado
Created June 28, 2018 04:24
Show Gist options
  • Save conectado/eff3e1e00fe1fc0a3c25c3f691a046db to your computer and use it in GitHub Desktop.
Save conectado/eff3e1e00fe1fc0a3c25c3f691a046db to your computer and use it in GitHub Desktop.
body {
background-color: rgb(29,30,40);
}
.item {
background-color: #3f4d72;
color: #7c5c48;
font-size: xx-large;
text-align: center;
font-weight: bold;
padding-top: 30px;
}
.sub-grid-wrapper {
display: grid;
grid-template-columns: repeat(2, 200px);
grid-column-gap: 10px;
}
.grid-wrapper {
display: grid;
grid-template-rows: repeat(2, 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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment