MediaWiki:Monobook.css: Difference between revisions

From Ekrixipedia
(stop differencing the images)
(yea ok lets just nuke it)
Line 8: Line 8:
     /*animation: space-parallax linear 200s infinite forwards;*/
     /*animation: space-parallax linear 200s infinite forwards;*/
     image-rendering: pixelated;
     image-rendering: pixelated;
}
/*@media (prefers-color-scheme: dark) {
  body {
  background-blend-mode: difference;
  }
}*/
@media (prefers-color-scheme: light) {
  body {
  background-color: inherit;
  background-blend-mode: lighten, lighten, lighten;
  }
}
}



Revision as of 01:36, 16 July 2024

/* 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;
}

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

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