MediaWiki:Common.css: Difference between revisions

From CoraTO Wiki - Official Wiki
Jump to navigation Jump to search
trying this out
 
Blanked the page
Tags: Blanking Manual revert
 
(100 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
.portal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


.portal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.portal-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.portal-box h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}
@media (max-width: 768px) {
    .portal-grid {
        grid-template-columns: 1fr;
    }
}

Latest revision as of 12:11, 2 January 2026