MediaWiki:Monobook.css

From Ekrixipedia
Revision as of 01:37, 16 July 2024 by Eclips e69 (talk | contribs) (maybe this'll work?)

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.
/* All CSS here will be loaded for users of the MonoBook skin */
@import "https://en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-dark-mode.css&action=raw&ctype=text/css" screen and (prefers-color-scheme: dark);

body {
    /*background-image: url("https://shiptest.net/images/layer1.webp"), url("https://shiptest.net/images/layer2.webp"), url("https://shiptest.net/images/layer3.webp");*/
    /*background-repeat: repeat, repeat, repeat;*/
    /*background-size: 480px 480px;*/
    /*animation: space-parallax linear 200s infinite forwards;*/
    image-rendering: pixelated;
}

@media (prefers-color-scheme: dark) {
  body {
    filter: invert(1);
  }
  img {
    filter: invert(0);
  }
}


@keyframes space-parallax {
	from {
		background-position: 0 0, 0 0, 0 0;
	}

	to {
		background-position: -2880px 0, -4800px 0, -6720px 0;
	}
}