MediaWiki:Pixelion.css

Note: After saving, 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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* CSS for Pixelion skin */

.portlet#p-logo img {
  max-height: 60px;
}

body {
  background-color: #f9c35e;
  background-image: url("../smn-resources/li-sqr2bv.png");
}


@media (max-aspect-ratio: 16 / 9) {
  body {
    background-size:100% auto;
  }
}

@media (max-aspect-ratio: 4608 / 3702) {
  body {
    background-size: auto 100%;
  }
}

.loggedOutPersonalMenu {
  display: none!important;
}

#catlinks {
  clear: both;
}

#ca-talk {
  display: none!important;
}

/* borderless img w/ off-white bg doesn't look great */

#content img {
  border: 1px solid rgba(1,1,1,0.2);
}

/* dubiously overridden by other styles */
ul.gallery {
  margin-left:15px!important;
  margin-right:15px!important;
}

/* temp mobile adjustment - move into the repo */

@media (max-width:500px) {
    body {
        margin-left:10px; margin-right: 10px;
    }
    #topbar {
        margin-left:-10px; margin-right: -10px;
    }
}