Template:Blog post/tile.css

Revision as of 01:41, 20 May 2021 by Samwilson (talk | contribs)
.blog-post-tiles {
    display: flex;
    flex-wrap: wrap;
}
.blog-post-tile {
    flex: 1;
    text-align: center;
    max-width: 270px;
    margin: 15px;
}
.blog-post-tile .image a {
	position: relative;
    height: 250px;
    width: 250px;
}
.blog-post-tile .image a img {
    display: block;
    position: absolute;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}
.blog-post-tile .title {
    font-size: larger;
}
.blog-post-tile .title a {
    color: inherit;
}
.blog-post-tile .date {
    font-size: smaller;
}
.blog-post-tile .description {
    text-align: left;
}
Discuss this page