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 |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 3: | Line 3: | ||
/* Format headings */ | /* Format headings */ | ||
h1 { | h1 { | ||
text-align: | text-align: center; | ||
font-weight: bold; | font-weight: bold; | ||
font-size: 2.5em; | font-size: 2.5em; | ||
background: # | text-decoration: none; | ||
border: 1px # | color: white; | ||
background: #517397; | |||
border: 1px #517397; | |||
padding-top: 1em; | padding-top: 1em; | ||
padding-bottom: 2em; | padding-bottom: 1em; | ||
} | |||
h2 { | |||
text-align: left; | |||
font-weight: bold; | |||
font-size: 2em; | |||
color: white; | |||
background: #517397; | |||
border: 1px #517397; | |||
padding-top: 0.5em; | |||
padding-bottom: 0.5em; | |||
} | |||
h3 { | |||
text-align: left; | |||
font-weight: bold; | |||
font-size: 1.5em; | |||
color: white; | |||
background: #517397; | |||
border: 1px #517397; | |||
padding-top: 0.25em; | |||
padding-bottom: 0.25em; | |||
} | |||
h4 { | |||
text-align: left; | |||
font-weight: bold; | |||
font-size: 1.25em; | |||
} | } | ||
Latest revision as of 19:09, 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;
text-decoration: none;
color: white;
background: #517397;
border: 1px #517397;
padding-top: 1em;
padding-bottom: 1em;
}
h2 {
text-align: left;
font-weight: bold;
font-size: 2em;
color: white;
background: #517397;
border: 1px #517397;
padding-top: 0.5em;
padding-bottom: 0.5em;
}
h3 {
text-align: left;
font-weight: bold;
font-size: 1.5em;
color: white;
background: #517397;
border: 1px #517397;
padding-top: 0.25em;
padding-bottom: 0.25em;
}
h4 {
text-align: left;
font-weight: bold;
font-size: 1.25em;
}
