Jump Core: Genesis Wiki
Advertisement

CSS and Javascript changes must comply with the wiki design rules.


Note: After saving, 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: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* *********************************************************************************** */
/* CSS placed here will affect users of the mobile site                                */
/*                                                                                     */
/* The mobile css has been moved to two different pages: MediaWiki:Light_mobile.css    */
/* and MediaWiki:dark_mobile.css                                                       */
/* Wiki managers should copy over the appropriate version to this file and make any    */
/* wiki specific changes where necessary                                               */
/*                                                                                     */
/* *********************************************************************************** */
@import url(/index.php?title=MediaWiki:Dark_mobile.css&action=raw&ctype=text/css);

/* CUSTOM CSS FOR THIS WIKI */
/* BACKGROUND */
.skin-minerva #content,
.skin-minerva.ns-special #content {
    background-image: url(https://static.wikia.nocookie.net/jumpcore_gamepedia_en/images/b/b1/CSS_Background.jpg/revision/latest);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #162017;
}

/* CONTENT AREA */
#mw-content-text {
    background-color: rgba(0,0,0,0.8);
}

/* HEADERS */
div.heading-holder h1 {
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

/* LINKS */
div#content a:not(.new) {
    color: #FF002F;
}

div#content a.new {
    color: #DB3838;
}

/* GALLERIES */
ul.mw-gallery-packed-overlay li.gallerybox div.gallerytextwrapper {
    background-color: rgba(0,0,0,0.8);
}
Advertisement