MediaWiki:Vector.css
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)
- Edge: Hold Ctrl while clicking Refresh, or 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; }
/* 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;
}