Legend of the Five Rings Wiki
Advertisement

In other languages: DeutschEspañolPortuguês do Brasil


CSS and Javascript changes must comply with the wiki design rules.


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: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
/* CSS placed here will be applied to all skins */

@media screen and (max-width:982px){
    #p-logo{
        left:0;
    }
}
/*Infobox*/
.infobox {
    border: 1px solid #a2a9b1;
    border-spacing: 3px;
    background-color: #f8f9fa;
    color: black;
    margin: 0.5em 0 0.5em 1em;
    padding: 0.2em;
    float: right;
    clear: right;
    font-size: 88%;
    line-height: 1.5em;
}

/* Everything here is !important because many of the rules are declared on the elements themselves. */
/* That's the price of exposing so much styling through the templates themselves.                   */
@media only screen and (max-width: 480px) {
  div.flex {
    display: block !important;
    margin-top: 0 !important;
  }
  div.flex > div {
    display: flex !important;
    flex-direction: column;
    width: auto !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  div.flex .mpChunk {
    display: block !important;
  }

  div.flex > div > .mobilehide { display: none !important; }
}
Advertisement