User:It's moon/common.css: Difference between revisions
From Splatoon Fanon
Skin rewriting layout |
m Safer 4 older browsers |
||
| (One intermediate revision by the same user not shown) | |||
| Line 7: | Line 7: | ||
@media screen { | @media screen { | ||
} | |||
/* Mobile */ | /* Mobile */ | ||
@media (max-width: 850px) { | @media screen and (max-width: 850px) { | ||
} | } | ||
/* Tablet */ | /* Tablet */ | ||
@media (min-width: 851px) and (max-width: 1099px) { | @media screen and (min-width: 851px) and (max-width: 1099px) { | ||
} | } | ||
/* Mobile & tablet */ | /* Mobile & tablet */ | ||
@media (max-width: 1099px) { | @media screen and (max-width: 1099px) { | ||
} | } | ||
/* Tablet & all desktops */ | /* Tablet & all desktops */ | ||
@media (min-width: 851px) { | @media screen and (min-width: 851px) { | ||
} | } | ||
/* All desktops */ | /* All desktops */ | ||
@media (min-width: 1100px) { | @media screen and (min-width: 1100px) { | ||
} | } | ||
/* Large desktops */ | /* Large desktops */ | ||
@media (min-width: 1340px) { | @media screen and (min-width: 1340px) { | ||
} | } | ||
Latest revision as of 01:16, 3 September 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 screen and (max-width: 850px) {
}
/* Tablet */
@media screen and (min-width: 851px) and (max-width: 1099px) {
}
/* Mobile & tablet */
@media screen and (max-width: 1099px) {
}
/* Tablet & all desktops */
@media screen and (min-width: 851px) {
}
/* All desktops */
@media screen and (min-width: 1100px) {
}
/* Large desktops */
@media screen and (min-width: 1340px) {
}