Skip to content

Instantly share code, notes, and snippets.

@KaushikShivam
Created December 3, 2019 14:30
Barebone Css file
* {
margin: 0;
padding: 0;
box-sizing: inherit;
}
body {
box-sizing: border-box;
font-size: 62.5%;
}
.masonry {
background-color: white;
width: 100vw;
height: 100vh;
padding: 1rem;
display: grid;
grid-template-columns: repeat(16, 1fr);
grid-template-rows: repeat(14, 1fr);
row-gap: 1rem;
column-gap: 1rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment