MediaWiki:Common.css: Difference between revisions
From Prince Vault
Jump to navigationJump to search
No edit summary |
No edit summary |
||
(88 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
/** Princevault special CSS ********************************************************** | |||
/** Princevault special CSS********************************************************** | |||
* | * | ||
* These are the changes from the original mediawiki monobook CSS that are specific to Princevault. | * These are the changes from the original mediawiki monobook CSS that are specific to Princevault. | ||
* | * | ||
*/ | */ | ||
/* | /* all pages */ | ||
body { | |||
background-color: #4f4f4f; | |||
background-image: none; | |||
} | } | ||
/* | /* hide page title */ | ||
. | .firstHeading { display: none; } | ||
} | |||
/* | /* nav links top right */ | ||
#p-personal li a { | |||
color: white !important; | |||
# | |||
} | } | ||
# | /* left sidebar */ | ||
color: | #sidebar .portlet h3 { | ||
color: white; | |||
} | } | ||
. | #sidebar .portlet .pBody { | ||
background-color: white; | |||
border: medium none; | |||
border-radius: 3px; | |||
padding: 0 0.8em 0.3em; | |||
} | } | ||
/* content tabs */ | |||
#ca-talk, #ca-viewsource { | |||
display: none !important; | |||
} | } | ||
. | /* content */ | ||
.mw-body { | |||
padding: 0 1em 1em 1em; | |||
} | } | ||
/* | /* section headings */ | ||
.mw-body h1 { | |||
color: #795290; | |||
font-size: 2.5em; | |||
font-weight: bold; | |||
} | } | ||
.mw-body h2 { | |||
color: #DE8300; | |||
font-size: 2em; | |||
color: # | |||
font-size: | |||
font-weight: bold; | font-weight: bold; | ||
} | } | ||
/* tables */ | |||
/* | |||
table.wikitable > tr > th, table.wikitable > tr > td, table.wikitable > * > tr > th, table.wikitable > * > tr > td { | table.wikitable > tr > th, table.wikitable > tr > td, table.wikitable > * > tr > th, table.wikitable > * > tr > td { | ||
border: 0; | border: 0; | ||
Line 272: | Line 68: | ||
background-color: #ffffff; | background-color: #ffffff; | ||
text-align: left; | text-align: left; | ||
} | |||
/* flex fixups */ | |||
.flex-container h3, b { | |||
line-height: .9em; | |||
} | } |
Latest revision as of 20:01, 14 June 2024
/** Princevault special CSS ********************************************************** * * These are the changes from the original mediawiki monobook CSS that are specific to Princevault. * */ /* all pages */ body { background-color: #4f4f4f; background-image: none; } /* hide page title */ .firstHeading { display: none; } /* nav links top right */ #p-personal li a { color: white !important; } /* left sidebar */ #sidebar .portlet h3 { color: white; } #sidebar .portlet .pBody { background-color: white; border: medium none; border-radius: 3px; padding: 0 0.8em 0.3em; } /* content tabs */ #ca-talk, #ca-viewsource { display: none !important; } /* content */ .mw-body { padding: 0 1em 1em 1em; } /* section headings */ .mw-body h1 { color: #795290; font-size: 2.5em; font-weight: bold; } .mw-body h2 { color: #DE8300; font-size: 2em; font-weight: bold; } /* tables */ table.wikitable > tr > th, table.wikitable > tr > td, table.wikitable > * > tr > th, table.wikitable > * > tr > td { border: 0; } table.wikitable { background-color: #fff; border: 0; } table.wikitable > tr > th, table.wikitable > * > tr > th { background-color: #ffffff; text-align: left; } /* flex fixups */ .flex-container h3, b { line-height: .9em; }