MediaWiki:Timeless.css: Difference between revisions

From Inkipedia, the Splatoon wiki
(fixed the table border collapsing issue that was breaking the main page)
No edit summary
Line 14: Line 14:
}
}


/* Fixes the strange default behavior of collapsing all table borders together. */
/* for displaying mobile-only content.
850px is the width that timeless stops displaying .nomobile classes content. */
@media screen and (max-width: 850px) {
  .onlymobile {
    display: initial;
}
 
/* fixes the default behavior of collapsing all table borders together. */
table {
table {
   border-collapse: initial;
   border-collapse: initial;
}
}

Revision as of 02:02, 18 July 2018

#mw-content-container {
  background-image: url("//cdn.wikimg.net/en/splatoonwiki/images/d/d4/S2_background_stripe_pattern.svg");
  background-repeat: repeat;
}

#mw-footer-container {
  background-image: url("//cdn.wikimg.net/splatoonwiki/images/b/b4/Featured-bg.png");
  background-repeat: repeat;
}

#mw-footer-container li,
#mw-footer-container a {
  color: #333;
}

/* for displaying mobile-only content.
850px is the width that timeless stops displaying .nomobile classes content. */
@media screen and (max-width: 850px) {
  .onlymobile {
    display: initial;
}

/* fixes the default behavior of collapsing all table borders together. */
table {
  border-collapse: initial;
}