crunk-columns is a PESOS style website maker
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
549 B

body {
text-rendering: optimizelegibility;
-moz-text-size-adjust: none;
}
.crunkcolumns {
display: grid;
grid-auto-flow: column;
grid-gap: 10px;
grid-template-columns: repeat(auto-fill, 350px);
}
.feed {
grid-template-columns: inherit;
}
.feeditem {
display: flex;
width: 350px;
position: relative;
flex-direction: column;
box-sizing: border-box;
border: 1px solid black;
margin-top: 1px;
padding: 3px;
}
.feeditem h2, p{
margin-bottom: 3px;
margin-top: 3px;
}
img {
max-width: 100%;
max-height: 100%;
}