Template:Blog post/tile.css

Revision as of 07:22, 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: 285px;
    margin: 0 15px 30px 0;
}
.blog-post-tile .image a {
	display: block;
	position: relative;
    height: 200px;
    width: 285px;
    overflow: hidden;
}
.blog-post-tile.featured {
	max-width: 430px;
	background-color: #fff7e5;
}
.blog-post-tile.featured .image a {
    width: 430px;
}
.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;
    font-weight: bolder;
}
.blog-post-tile .date {
    font-size: smaller;
}
.blog-post-tile .description {
    text-align: left;
}
Discuss this page