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.
 
 
 

39 lines
626 B

body {
text-rendering: optimizelegibility;
-moz-text-size-adjust: none;
margin: 0px;
}
.crunkcolumns {
display: grid;
grid-auto-flow: column;
grid-gap: 1px;
grid-template-columns: repeat(auto-fill, 336px);
margin-left: 6px;
}
.feed {
grid-template-columns: inherit;
}
.feeditem {
display: flex;
width: 336px;
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;
}
.feeditem p a {
word-break: break-all;
}
img {
max-width: 100%;
max-height: 100%;
}