User:It's moon/common.css

From Splatoon Fanon
Revision as of 05:37, 10 July 2025 by It's moon (talk | contribs) (Removing test-only content)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Rewritting the wiki skin from the ground up for a cleaner, smoother,
   bug-free, fast and optimized user experience, with no visual changes. */

{ /* Disable the entire CSS document - only for the testing phase */

/* All screens */
@media screen {
	

/* Mobile */
@media (max-width: 850px) {
	
}

/* Tablet */
@media (min-width: 851px) and (max-width: 1099px) {
	
}

/* Mobile & tablet */
@media (max-width: 1099px) {
	
}

/* Tablet & all desktops */
@media (min-width: 851px) {
	
}

/* All desktops */
@media (min-width: 1100px) {
	
}

/* Large desktops */
@media (min-width: 1340px) {
	
}
}