MediaWiki:Vector.css: Difference between revisions
From Dragon Quest Wiki
FlyingRagnar (talk | contribs) No edit summary |
FlyingRagnar (talk | contribs) No edit summary |
||
Line 12: | Line 12: | ||
image-rendering:crisp-edges; | 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; } |
Revision as of 22:41, 13 May 2020
/* 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; }