Files
ptp/static/css/posts-single-column.css

28 lines
727 B
CSS
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* Посты на главной: две колонки, но фото крупнее и единого формата */
/* Все фото постов — единый aspect ratio 16:9 с cover */
#main > .posts > article .image.main img {
border-radius: 10px;
width: 100%;
height: auto;
aspect-ratio: 16/9;
object-fit: cover;
}
/* Featured пост сверху — чуть выделить */
article.post.featured {
border-bottom: 1px solid rgba(0,0,0,0.08);
padding-bottom: 3rem;
margin-bottom: 1rem;
}
article.post.featured .image.main img {
border-radius: 12px;
aspect-ratio: 16/9;
object-fit: cover;
}
article.post.featured header.major h2 {
font-size: 1.8em;
}