From The Mana World
(small test)
 
(20 intermediate revisions by 3 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* Fix styling issue */
h1, h2, h3, h4, h5, h6 { color: #332100; }


body, div, p, td, li, h1, h2, h3, h4, h5 {
/* use of url() is forbidden inline, so they must go here */
    font-family: sans-serif;
.fancy-border { border-image-slice: 20; border-image-width: 20px; border-image-repeat: round; border-image-outset: 15px; border-image-source: url('/images/4/46/Border.png'); padding: 1rem; }
}
 
h3#tagline {
    display:none;
}
 
div#content {
    padding: 10px;
    border: 1px solid black;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background-color: white;
}
 
body {
    background-color: #eeeeee;
}
 
body.mediawiki {
    min-height: 875px;
    min-width: 875px
    margin-left:auto;
    max-width: 100%;
}
 
h2#firstHeading {
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-color: #f2ebe7;
    padding-left: 50px;
    border: 1px solid black;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
 
.top-bar, .top-bar-section ul li.active > a, .top-bar-section .dropdown li a, .top-bar-section .has-form, .top-bar-section ul {
    background: #CBA083;
}
 
.top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] {
    border-right: solid 1px #CBA083;
    border-left: solid 1px #CBA083;
}
 
li#p-server_status {
    margin-top: 7px;
}
 
div#bodyContent.mw-bodytext {
    margin-top:10px;
}
 
div.printfooter {
    display: none;
}


a.button.dropdown {
/* Add the word Legacy in the sidebar on Legacy namespace pages */
    margin-top: 15px;
.ns-108 #p-Game-label::after { content: ' Legacy'; }
    margin-right: 30px;
}


h4.namespace.label {
/* Fix weird issues with framed images inside a spoiler tag, and other spoiler issues */
    display: none;
.mw-collapsible { clear: both; }
.tleft { background: none; }
.mw-collapsible-content { display: none; }
.mw-collapsible-content::after {
  content: "";
  clear: both;
  display: table;
}
}


li.divider, li.divider.show-for-small {
/* Add margin to spoiler toggle button */
    display: none;
.mw-collapsible-toggle { margin-left: 1em; }
}


.top-bar.expanded .title-area {
/* Media queries can't be inline, so they must go here too */
    background: #CBA083;
.grid-2-columns {
display: grid;
grid-template-columns: 1fr;
}
}


.top-bar-section .divider {
@media only screen and (min-width: 900px) {
    border-bottom: solid 1px #CBA083;
.grid-2-columns {
    border-top: solid 1px #CBA083;
grid-template-columns: 1fr 1fr;
}
}
.dropdown li:hover a {
    background: maroon;
}
input[type="submit"], button, .button, .multipleTemplateAdder {
    background-color: #e9e9e9;
    border-color: #d0d0d0;
    color: black;
}
form#searchform.mw-search {
    margin-bottom: 10px;
    white-space: nowrap;
}
.top-bar-section li a:not(.button) {
    background-color: #CBA083;
}
}

Latest revision as of 18:05, 10 July 2020

/* Fix styling issue */
h1, h2, h3, h4, h5, h6 { color: #332100; }

/* use of url() is forbidden inline, so they must go here */
.fancy-border { border-image-slice: 20; border-image-width: 20px; border-image-repeat: round; border-image-outset: 15px; border-image-source: url('/images/4/46/Border.png'); padding: 1rem; }

/* Add the word Legacy in the sidebar on Legacy namespace pages */
.ns-108 #p-Game-label::after { content: ' Legacy'; }

/* Fix weird issues with framed images inside a spoiler tag, and other spoiler issues */
.mw-collapsible { clear: both; }
.tleft { background: none; }
.mw-collapsible-content { display: none; }
.mw-collapsible-content::after {
  content: "";
  clear: both;
  display: table;
}

/* Add margin to spoiler toggle button */
.mw-collapsible-toggle { margin-left: 1em; }

/* Media queries can't be inline, so they must go here too */
.grid-2-columns {
display: grid;
grid-template-columns: 1fr;
}

@media only screen and (min-width: 900px) {
.grid-2-columns {
grid-template-columns: 1fr 1fr;
}
}