MediaWiki:Common.css: Difference between revisions

From The Inquisitive Investor
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: .category-table { width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 20px; } .category-card { width: 150px; text-align: center; border: 1px solid #ccc; border-radius: 8px; overflow: hidden; box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); background-color: #f9f9f9; padding: 10px; transition: transform 0.3s ease-in-out; } .ca...")
 
No edit summary
 
Line 13: Line 13:
     width: 150px;
     width: 150px;
     text-align: center;
     text-align: center;
     border: 1px solid #ccc;
     border: 0px solid #ccc;
     border-radius: 8px;
     border-radius: 8px;
     overflow: hidden;
     overflow: hidden;

Latest revision as of 02:34, 17 March 2025

/* CSS placed here will be applied to all skins */

.category-table {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.category-card {
    width: 150px;
    text-align: center;
    border: 0px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    border-radius: 8px 8px 0 0;
}

.category-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 8px;
}