Template:Main page/featured/styles.css

Template page
Revision as of 15:41, 4 June 2024 by Ethar (talk | contribs) (Created page with ".featured1 { font-weight: 500; width: 170px; height: 265px; text-align: center; font-size: 24px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 16px 0; margin-bottom: 10px; user-select: none; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; border-radius: 10px; background-size: cover; background-position: center; transition: transform...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.featured1 {
    font-weight: 500;
    width: 170px;
    height: 265px;
    text-align: center;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 10px;
    user-select: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    transition: transform 0.25s;
}

.featured:hover {
    color: #8993ff;
    transform: scale(1.1);
}