MediaWiki:Common.css: Difference between revisions

From DBWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:
     font-size: 14px; /* Adjust the font size as needed */
     font-size: 14px; /* Adjust the font size as needed */
     color: #000; /* Adjust color as needed */
     color: #000; /* Adjust color as needed */
   
    font-weight: bold; /* Makes the subtitle bold */
     text-align: center;
     text-align: center;
     margin-top: 5px; /* Space between the logo and the subtitle */
     margin-top: 5px; /* Space between the logo and the subtitle */
    margin-bottom: 10px;
}
}

Revision as of 18:08, 10 October 2024

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

#p-logo::after {
    content: "DBWiki"; /* Replace with your actual subtitle */
    display: block;
    font-size: 14px; /* Adjust the font size as needed */
    color: #000; /* Adjust color as needed */
    
    font-weight: bold; /* Makes the subtitle bold */
    text-align: center;
    margin-top: 5px; /* Space between the logo and the subtitle */
    margin-bottom: 10px;
}