MediaWiki:Common.css: Difference between revisions
No edit summary |
extract messagebox template styles to use TemplateStyles css in the template namespace |
||
| (10 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /** CSS placed here will be applied to all skins */ | ||
// | /** Make it so the search box does not collapse (Chameleon-only?) */ | ||
@media (min-width: 768px) { | |||
.p-search { | |||
width: max-content; | |||
} | |||
} | |||
// | /** make lists more like Microsoft Word | ||
. | https://www.mediawiki.org/wiki/Help:Lists#Site-wide */ | ||
.mw-body ol { | |||
list-style-type:decimal; | |||
} | |||
.mw-body ol li > ol { | |||
list-style-type:lower-alpha; | |||
} | |||
.mw-body ol li > ol li > ol { | |||
list-style-type:lower-roman | |||
} | |||
// | /** | ||
. | * Adaptions for the main table class | ||
*/ | |||
table.smworgtable-v2 { | |||
background-color:# | background-color: #fff; | ||
border:1px solid # | border: 1px solid #5e9dc8; | ||
margin: 0 0 0.5em 1em; | |||
padding: | padding: 0; | ||
-moz-border-radius: 3px; | |||
border-radius: 3px; | |||
} | } | ||
. | table.smworgtable-v2 tr { | ||
color:# | background-color: #ffffff; | ||
} | } | ||
. | table.smworgtable-v2 td { | ||
padding: 5px; | |||
vertical-align: top !important; | |||
} | } | ||
. | table.smworgtable-v2 th { | ||
background-color: #5e9dc8; | |||
border: | border: 0px; | ||
padding: 3px; | |||
font-size: 100%; | |||
font-weight: normal; | |||
font-family: "Source Sans Pro", Calibri, Candara, Arial, sans-serif; | |||
color: #ffffff; | |||
vertical-align: top !important; | |||
} | } | ||
. | table.smworgtable-v2 th a { | ||
color: #ffffff; | |||
color: # | |||
} | } | ||
. | table.smworgtable-v2 th.smworange { | ||
background-color: #f5f5f5; | |||
background-color:# | |||
} | } | ||
. | table.smworgtable-v2-toc th a { | ||
color: #0c2c52; | |||
color: # | |||
} | } | ||
#smworgtable-v2-toc #toc.toc { | |||
text-indent: -15px; | |||
margin-left: 15px; | |||
font-size: 110%; | |||
} | |||
#smworgtable-v2-toc #toc { | |||
border: 0px solid #aaaaaa; | |||
background-color: #ffffff; | |||
font-size: 100%; | |||
width: 230px; | |||
} | |||
#smworgtable-v2-toc.smworgtable-v2-toc th a { | |||
color: #5e9dc8; | |||
} | |||
/** fix google maps little man in responsive skin */ | |||
.gm-style img { max-width: none; } | |||
/** Declare the @font-face rules used on the Font page*/ | /** Declare the @font-face rules used on the Font page | ||
using the Fontspring bulletproof syntax | |||
*/ | |||
@font-face { | @font-face { | ||
font-family: 'gillius-adf' | font-family: 'gillius-adf'; | ||
src: local | src: url('/usr/local/share/fonts/GilliusADF-Regular.eot'); /* IE9 Compat Modes */ | ||
src: url('/usr/local/share/fonts/GilliusADF-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ | |||
url('/usr/local/share/fonts/GilliusADF-Regular.woff2') format('woff2'), /* Super Modern Browsers */ | |||
url('/usr/local/share/fonts/GilliusADF-Regular.woff') format('woff'), /* Modern Browsers */ | |||
url('/usr/local/share/fonts/GilliusADF-Regular.ttf') format('truetype'), /* Safari, Android, iOS */ | |||
url('/usr/local/share/fonts/GilliusADF-Regular.svg#GilliusADF-Regular') format('svg'); /* Legacy iOS */ | |||
font-weight: normal; | font-weight: normal; | ||
font-style: normal; | font-style: normal; | ||