User:It's moon/common.css: Difference between revisions

From Splatoon Fanon
It's moon (talk | contribs)
m Blanking
Tag: Blanking
It's moon (talk | contribs)
Skin rewriting layout
Line 1: Line 1:
/* 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) {
}
}
body {background: red}

Revision as of 05:30, 10 July 2025

/* 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) {
	
}
}
body {background: red}