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.
37 lines
592 B
37 lines
592 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;
|
|
}
|
|
.feeditem p a {
|
|
word-break: break-all;
|
|
}
|
|
img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|