Railgun Wiki
Advertisement

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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* <syntaxhighlight lang="css"> */

/* IMPORT MediaWiki:Common.css -- LEAVE THIS IMPORT ABOVE EVERYTHING ELSE */
/* See http://community.wikia.com/wiki/Help:JavaScript_and_CSS_Cheatsheet */
@import url("/index.php?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text/css&smaxage=86400&action=raw&maxage=86400");

/* ------------------------------------------------------------------------ */
/* -------------------- Site background and layout CSS -------------------- */
/* ------------------------------------------------------------------------ */
/* Site header image, 1014 x 38 pixels */
.WikiaHeader {
    background-image:url("https://images.wikia.nocookie.net/railgunscript/images/e/e8/Railgun_Top_Bar.png");
}

/* Planetary background image */
body.mediawiki {
    background: #000 center center repeat fixed url("https://images.wikia.nocookie.net/railgunscript/images/c/cb/Seamless-space.jpg");
}

/* Opacity overlay */
.WikiaPage .WikiaPageBackground { 
    background:url("https://images.wikia.nocookie.net/railgunscript/images/4/47/Opacity_0.7_color_0-0-25_size_20px.png") repeat scroll 0 0 transparent;
}

/* Hide shadow-mask */
img.shadow-mask {
    display: none;
}

/* Wiki Navigation: White navigation links */
.WikiHeaderRestyle a,
body {
    color: white;
}

/* #WikiaRail: Make module backgrounds transparent on the siderail */
.WikiaRail .module {
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    border-radius: 1em;
    background: none;
}

/* #WikiaRail: Styling for the search bar */
#WikiaSearch input,
#WikiaSearch button {
    -webkit-border-radius: .7em;
    -moz-border-radius: .7em;
    border-radius: .7em;
}

/* Message Wall: Get rid of the annoying triangle thingy */
.SpeechBubble .speech-bubble-message:after {
    display: none;
}

/* Message Wall: Sorting bar on user's Message Wall pages */
.Wall .SortingBar,
.WallHistory .SortingBar {
    background: none;
    border: none;
}
.Wall .SortingBar .SortingMenu .SortingSelected,
.WallHistory .SortingBar .SortingMenu .SortingSelected {
    color: gold;    
}

/* Message Wall: Hide background in a couple places */
#WikiaArticle .message-1 .speech-bubble-message {
    background: none;
}

/* Message Wall: Styling for the .new-message box */
#WikiaArticle .new-message .speech-bubble-message {
    padding: .7em;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    border-radius: 1em;
}
#WikiaArticle .new-message textarea.title {
    margin-bottom: .7em;
}

/* Toolbar: Styling for the toolbar */
body.mediawiki #WikiaBarWrapper {
    background-image: url("https://images.wikia.nocookie.net/railgunscript/images/e/e8/Railgun_Top_Bar.png");
}
#WikiaBarWrapper .arrow {
    background-color: #000;
    -webkit-opacity: .8;
    -moz-opacity: .8;
    opacity: .8;
}
#WikiaBarWrapper .toolbar .tools > li {
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
    border-radius: .5em;
    background: black;
    -webkit-opacity: .8;
    -moz-opacity: .8;
    opacity: .8;
}

/* Make category divs at bottom of articles be transparent */
.WikiaArticleCategories {
    background: none;
}
/* ------------------------------------------------------------------------ */
/* ------------------ END Site background and layout CSS ------------------ */
/* ------------------------------------------------------------------------ */



/* Make anchored Railgun module have black background */
#WikiaRail .railgun-module-anchor-topright {
    background: black;
}

/* AutoEditDropdown pure CSS implementation */
/* http://dev.wikia.com/wiki/AutoEditDropdown */
#WikiHeader nav.wikia-menu-button:hover ul,
#WikiaMainContent nav.wikia-menu-button .drop:hover ~ ul,
#WikiaMainContent nav.wikia-menu-button ul.WikiaMenuElement:hover {
    min-width: 100%;
    display: block;
}

/* No image attribution */
.WikiaArticle .picture-attribution { display: none; }

.i18ndoc {
    background-color: #FFF77D;
    border-bottom: 1px solid lightgrey;
    font-family: monospace;
    font-size: 8pt;
    height: 140px;
    overflow: auto;
    padding: 3px;
}

/* </syntaxhighlight> */
Advertisement