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("http://rainwallrpg.com/codex/skins/Vector/images/wikibackground.jpg") repeat;
    background: url('filepath://background-image.jpg?width=1000') #f6f6f6 top left no-repeat;
}
}


#mw-head {
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
background: url("http://rainwallrpg.com/codex/skins/Vector/images/wikibackground.jpg");
    body {
          background-image: url('filepath://background-image.jpg');
          background-size: 1000px 250px;
    }
 
}
}

Revision as of 01:41, 23 May 2021

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

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

}