Template:MainPage/Vector/Featured article/styles.css

From IxWiki
Jump to navigation Jump to search
#featured_article.card {
    width: calc(100% / 6 * 5 - 0.4rem);
    min-width: calc(860px / 6 * 5 - 0.4rem);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    background-color: #f8f9fa;
    border-radius: 8px;
}

#featured_article .card-image {
    width: 33%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

#featured_article .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#featured_article .card-text {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#featured_article .byline {
    font-size: 0.9em;
    color: #72777d;
    margin-bottom: 0.5em;
}

#featured_article h3 {
    margin: 0 0 0.5em 0;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    #featured_article.card {
        flex-direction: column;
    }

    #featured_article .card-image {
        width: 100%;
    }
}