Actions

MediaWiki

Common.css: Difference between revisions

From Jedisaber Wiki

Created page with "CSS placed here will be applied to all skins: Format headings: h1 { text-align: left; font-weight: bold; font-size: 2.5em; background: #55aaff; border: 1px #55aaff; padding-top: 1em; padding-bottom: 2em; }"
 
mNo edit summary
Line 3: Line 3:
/* Format headings */
/* Format headings */
h1 {
h1 {
     text-align: left;
     text-align: center;
     font-weight: bold;
     font-weight: bold;
     font-size: 2.5em;
     font-size: 2.5em;
     background: #55aaff;
     background: #003eaa;
     border: 1px #55aaff;
     border: 1px #003eaa;
     padding-top: 1em;
     padding-top: 1em;
     padding-bottom: 2em;
     padding-bottom: 2em;
}
h2 {
    text-align: left;
    font-weight: bold;
    font-size: 2em;
    text-decoration: underline;
    background: #003eaa;
    border: 1px #003eaa;
    padding-top: 1em;
    padding-bottom: 1.5em;
}
}

Revision as of 18:55, 14 April 2025

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

/* Format headings */
h1 {
    text-align: center;
    font-weight: bold;
    font-size: 2.5em;
    background: #003eaa;
    border: 1px #003eaa;
    padding-top: 1em;
    padding-bottom: 2em;
}

h2 {
    text-align: left;
    font-weight: bold;
    font-size: 2em;
    text-decoration: underline;
    background: #003eaa;
    border: 1px #003eaa;
    padding-top: 1em;
    padding-bottom: 1.5em;
}