MediaWiki:Vector.css

From Dragon Quest Wiki
Revision as of 22:41, 13 May 2020 by FlyingRagnar (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* 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; }