MediaWiki:Common.css: Difference between revisions

From semantic-hub.io
No edit summary
mNo edit summary
Line 5: Line 5:


/* Page title h1 */
/* Page title h1 */
.mw-heading mw-heading1 {
h1 {
     background: #1e293b;
    font-size: 2.2rem;
     padding: 15px;
    font-weight: 600;
     border-radius: 10px;
     color: #1e3a8a; /* Dunkelblau */
}
      
    margin-bottom: 15px;
     padding-bottom: 8px;


.mw-heading mw-heading1  h1 {
    border-bottom: 2px solid #3b82f6; /* helleres Blau */
    color: #38bdf8;
      
     margin: 0;
     letter-spacing: 0.5px;
}
 
h1 {
     color: red !important;
}
}

Revision as of 17:29, 12 April 2026

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

/* Backgroundcolor footer */
body { background: #1e293b; }

/* Page title h1 */
h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e3a8a; /* Dunkelblau */
    
    margin-bottom: 15px;
    padding-bottom: 8px;

    border-bottom: 2px solid #3b82f6; /* helleres Blau */
    
    letter-spacing: 0.5px;
}