MediaWiki:Vector.css: Difference between revisions

From Dragon Quest Wiki
Jump to navigation Jump to search
updating background to use https
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will affect users of the Vector skin */
/* 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; }
.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;
}

Latest revision as of 23:43, 13 May 2020

/* CSS placed here will affect users of the Vector skin */

.page-Main_Page #firstHeading { display:none; }