From The Mana World
m (Fix comment)
m (Added default padding to fancy border)
Line 3: Line 3:


/* use of url() is forbidden inline, so they must go here */
/* 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'); }
.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 */
/* Add the word Legacy in the sidebar on Legacy namespace pages */

Revision as of 08:01, 18 June 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'; }

/* 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;
}
}