MediaWiki:Theme-blue.css

From Apex Legends Wiki
Jump to navigation Jump to search

In other languages: Português do Brasil


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.
/*** Theme with Season 2 Blue Background ***/

/*** Note: Adjusting themes can take up to 15 minutes to 1 hour for cache to refresh. 
Make adjustments in large edits/saves instead of single code edits/saves. ***/

:root {
  --theme-link-color: #5548DC;
  --theme-red-link-color: #ba003e;
  --theme-highlight-color: #a59ed8;
  --theme-header-color: #153B82;
  --theme-button-color: #36c;
}

body {
    background: url(/images/c/c4/BG_s2.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #153B82;
}

/* Images */

.invert img {
	-webkit-filter: invert(100%);
	filter: invert(100%);
}

.invert-image img {
	-webkit-filter: invert(0%);
	filter: invert(0%);
}

.invert-gallery .thumb img {
	-webkit-filter: invert(100%);
	filter: invert(100%);
}