MediaWiki:Vector.css: Difference between revisions
From Dragon Quest Wiki
FlyingRagnar (talk | contribs) No edit summary |
FlyingRagnar (talk | contribs) (updating background to use https) |
||
Line 3: | Line 3: | ||
html { | html { | ||
/* Header background with pixelation effect */ | /* Header background with pixelation effect */ | ||
background: #f3f3f3 url( | background: #f3f3f3 url(https://dragon-quest.org/images/3/36/Header_back.png) repeat-x; | ||
-ms-interpolation-mode:nearest-neighbor; /* IE 7-11 */ | -ms-interpolation-mode:nearest-neighbor; /* IE 7-11 */ | ||
image-rendering:-webkit-optimize-contrast; /* old Webkit browsers */ | image-rendering:-webkit-optimize-contrast; /* old Webkit browsers */ |
Revision as of 23:59, 20 September 2017
/* CSS placed here will affect users of the Vector skin */ html { /* Header background with pixelation effect */ background: #f3f3f3 url(https://dragon-quest.org/images/3/36/Header_back.png) repeat-x; -ms-interpolation-mode:nearest-neighbor; /* IE 7-11 */ image-rendering:-webkit-optimize-contrast; /* old Webkit browsers */ image-rendering:pixelated; /* Chrome / Opera */ image-rendering:-webkit-crisp-edges; /* Safari */ image-rendering:-moz-crisp-edges; /* Firefox */ image-rendering:-o-crisp-edges; /* old Opera */ image-rendering:crisp-edges; } body { /* Pixelation reset */ -ms-interpolation-mode:bicubic; /* IE 7-11 */ image-rendering:auto; /* Make covering element transparent */ background-color:transparent; } #mw-page-base { /* Make covering element transparent */ background-color: transparent; background-image:none; } .page-Main_Page #firstHeading { display:none; } /* List styles for Vector skin (left-to-right languages only) */ .mw-content-ltr ul.inline-list, .mw-content-ltr ol.inline-list, .inline-list ul, .inline-list ol { margin:0.5em 0; overflow-x:hidden; list-style-type:none; } .inline-list li { display:inline; margin:0 1.18em 0 0; white-space:nowrap; } .inline-list li + li { margin-left:-1.18em; } .inline-list li + li:before { content:"\a0•\a0"; } .mw-content-ltr ul.plain-list, .mw-content-ltr ol.plain-list, .plain-list ul, .plain-list ol { margin:0; list-style-type:none; list-style-image:none; } .plain-list li { margin:0; }