Template: Blog post/tile.css

No edit summary
No edit summary
Line 7: Line 7:
     text-align: center;
     text-align: center;
     max-width: 270px;
     max-width: 270px;
    padding: 10px;
     margin: 15px;
     margin: 15px;
     border: 1px solid #c8c8c8;
}
.blog-post-tile .image {
     display: block;
    position: absolute;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}
}
.blog-post-tile .title {
.blog-post-tile .title {

Revision as of 01:39, 20 May 2021

.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 {
    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