Anonymous
×
Create a new article
Write your page title here:
We currently have 1,806 articles on Everwind Wiki. Type your article name above or click on one of the titles below and start writing!



Everwind Wiki
1,806Articles

MediaWiki:Vector.css: Difference between revisions

No edit summary
No edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the Vector skin */
/* All CSS here will be loaded for users of the Vector skin */
body {
body {
     background: url('filepath://background-image.jpg?width=1000') #f6f6f6 top left no-repeat;
     background: url('http://everwind.jandenhale.com/index.php/File:Background-image.jpg?width=1000') #f6f6f6 top left no-repeat;
}
}


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
     body {
     body {
           background-image: url('filepath://background-image.jpg');
           background-image: url('http://everwind.jandenhale.com/index.php/File:Background-image.jpg');
           background-size: 1000px 250px;
           background-size: 1000px 250px;
     }
     }


}
}

Revision as of 05:23, 23 May 2021

/* All CSS here will be loaded for users of the Vector skin */
body {
    background: url('http://everwind.jandenhale.com/index.php/File:Background-image.jpg?width=1000') #f6f6f6 top left no-repeat;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
          background-image: url('http://everwind.jandenhale.com/index.php/File:Background-image.jpg');
          background-size: 1000px 250px;
    }

}