MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 1: | Line 1: | ||
* CSS placed here will be applied to all skins */ | * CSS placed here will be applied to all skins */ | ||
.vector-menu-heading { | |||
background-color: #d7d7d77d; | |||
border-radius: 0.2em; | |||
} | |||
.vector-menu-content { | |||
background-color: #d7d7d77d; | |||
border-radius: 0.6em; | |||
} | |||
.vector-user-menu-legacy .vector-menu-content-list { | |||
display: block; | |||
} | |||
/* Wiki Font*/ | /* Wiki Font*/ | ||
@font-face { | @font-face { | ||
font-family: Alegrian; | font-family: Alegrian; | ||
src: url(https://twoworldswiki.com | src: url(https://twoworldswiki.com/w/resources/assets/Alegrian.tff); | ||
} | } | ||
Line 143: | Line 157: | ||
#fp-top { | #fp-top { | ||
grid- | grid-template-areas: a; | ||
} | } | ||
#fp-flex { | #fp-flex { | ||
grid- | grid-template-areas: b; | ||
} | } | ||
#fp-bottom { | #fp-bottom { | ||
grid- | grid-template-areas: c; | ||
} | } | ||
Line 160: | Line 174: | ||
} | } | ||
#mw-panel div.portal li a[href="https://discord.gg/4dKnfpW"] { | |||
display: inline-block; | display: inline-block; | ||
position:relative; | position:relative; | ||
Line 167: | Line 181: | ||
} | } | ||
#mw-panel div.portal li a[href="https://discord.gg/4dKnfpW"]::before { | |||
position:absolute; | position:absolute; | ||
width:100%; | width:100%; | ||
Line 194: | Line 208: | ||
} | } | ||
.ambox.ambox-tiny { | .ambox .ambox-tiny { | ||
font-size: 90%; | font-size: 90%; | ||
margin: 2px 0; | margin: 2px 0; | ||
Line 209: | Line 223: | ||
.ambox-image { | .ambox-image { | ||
padding: 2px | padding: 2px 0 2px 0.5em; | ||
text-align: center; | text-align: center; | ||
width: 60px; | width: 60px; | ||
Line 264: | Line 278: | ||
} | } | ||
.infobox | .infobox .infoboxlabel { | ||
border: 2px solid inherit; | border: 2px solid inherit; | ||
font-weight: bold; | font-weight: bold; | ||
Line 354: | Line 368: | ||
text-align: left; | text-align: left; | ||
white-space: nowrap; | white-space: nowrap; | ||
background:#ccc; | background:#ccc; | ||
padding: 0.1em 0.5em; | padding: 0.1em 0.5em; |
Revision as of 01:52, January 3, 2023
* CSS placed here will be applied to all skins */ .vector-menu-heading { background-color: #d7d7d77d; border-radius: 0.2em; } .vector-menu-content { background-color: #d7d7d77d; border-radius: 0.6em; } .vector-user-menu-legacy .vector-menu-content-list { display: block; } /* Wiki Font*/ @font-face { font-family: Alegrian; src: url(https://twoworldswiki.com/w/resources/assets/Alegrian.tff); } div { font-family: Alegrian; } h1 { font-size:20pt; } /* This governs the sections on the Community portal */ .cpbox { display: flex; flex-direction: row-reverse; flex-wrap: wrap; } .cpbox #admins { box-sizing: border-box; width: calc(33% - 10px); margin: 5px; flex-grow: 1; min-width: 300px; } .cpbox #help { box-sizing: border-box; width: calc(67% - 10px); margin: 5px; } div#mw-panel div.portal li a[href="https://discord.gg/4dKnfpW"] { display: inline-block; position: relative; height: 20px; width: 119px } div#mw-panel div.portal li a[href="https://discord.gg/4dKnfpW"]::before { position: absolute; width: 100%; height: 100%; top: 0; left: 0; content: ""; background: url(https://discordapp.com/api/guilds/502973274125238284/embed.png) no-repeat; } /* This governs the page/section title placement */ h1 { text-align:center} h2 { text-align:center} h3 { text-align:center} h4 { text-align:center} h5 { text-align:center} h6 { text-align:center} /* Template documentation styles */ /* If modifying these styles, be sure to update the mobile skin! */ .doc { margin: 0em auto 1em; background-color: rgba(0, 0, 0, 0.1); border: 2px solid #BDCAC3; border-radius: 1em; padding: 1em; } .doc-header { padding-bottom: 3px; border-bottom: 1px solid #BDCAC3; margin-bottom: 1ex; } .doc-footer { margin: 0; background-color: rgba(0, 0, 0, 0.1); border: 2px solid #BDCAC3; border-radius: 1em; padding: 1em; } /* Classes permitting setting of alignment on desktop only or differently on desktop and mobile */ /* (See .mobileleft, .mobilecenter, .mobileright in MediaWiki:Mobile.css for the mobile equivalents */ .desktopleft { text-align: left; } .desktopcenter { text-align: center; } .desktopright { text-align: right; } /* this CSS governs the responsive 2 column main page layout */ #fp-container { display: grid; grid-template-areas: "a" "b" "c"; grid-template-columns: 100%; } #fp-container main .columns .leftcol, #fp-container .columns .rightcol { width: 100%; margin: 0; padding: 0; } @media screen and (min-width:650px) { #fp-container .columns .leftcol { float: left; width: 50%; } #fp-container .columns .rightcol { float: right; width: 50%; } } @media screen and (min-width:990px) { #fp-container { grid-template-areas: "a b" "c c"; grid-template-columns: 50% 50%; } } @media screen and (min-width:1350px) { #fp-container { grid-template-areas: "a b" "c b"; grid-template-columns: auto 520px; } } .fp-section { display: flex; flex-wrap: wrap; } #fp-top { grid-template-areas: a; } #fp-flex { grid-template-areas: b; } #fp-bottom { grid-template-areas: c; } /* Sidebar Discord embed */ #mw-panel .portal .body ul { min-width: calc(0.5em + 119px); } #mw-panel div.portal li a[href="https://discord.gg/4dKnfpW"] { display: inline-block; position:relative; height: 20px; width: 119px; } #mw-panel div.portal li a[href="https://discord.gg/4dKnfpW"]::before { position:absolute; width:100%; height:100%; top:0; left:0; content:""; background:url(https://discordapp.com/api/guilds/502973274125238284/embed.png) no-repeat; } /* Classes from Gamepedia Help Wiki's Common.css */ .ambox { background-color: rgba(120,120,120,0.2); border-bottom-color: #383838; border-right-color: #383838; border-top-color: #383838; border-collapse: collapse; font-size: 95%; margin: 0 auto 2px auto; width: 80%; } .ambox-gray { border-left-color: #383838; } .ambox .ambox-tiny { font-size: 90%; margin: 2px 0; width: auto; } .ambox + .ambox { margin-top: -2px; } .ambox-text { padding: 0.25em 0.5em; } .ambox-image { padding: 2px 0 2px 0.5em; text-align: center; width: 60px; } .ambox-tiny .ambox-image { padding: 2px 0.5em; text-align: left; width: auto; } /* Ambox colors */ .ambox-blue { border-left: 10px solid #1e90ff; } .ambox-red { border-left: 10px solid #b22222; } .ambox-orange { border-left: 10px solid #f28500; } .ambox-yellow { border-left: 10px solid #f4c430; } .ambox-purple { border-left: 10px solid #9932cc; } .ambox-wiki { border-left: 10px solid #454340; } .ambox-gray { border-left: 10px solid #bba; } .ambox-green { border-left: 10px solid #228b22; } /* Infobox template style */ .infobox { background-color: rgba(0, 0, 0, 0); border: 1px solid #505050; float: right; font-size: 89%; margin-bottom: 0.5em; padding: 0.2em; width: 300px; } .infobox .infoboxlabel { border: 2px solid inherit; font-weight: bold; padding: 0.5px 7px; text-align: right; } .infoboxname { background-color: #f58120; color: #000; font-size: 110%; font-weight: bold; padding: 0.5em; } .infoboxdescription { background-color: #f58120; color: #000; } /* Template themes The following themes are applied to templates that are present in a huge amount of pages */ /* Wiki Theme */ .BRWiki { border-radius: 10px; border: 3px solid #000000; background-color: #454340; } .BRWiki td { background-color: #B5B6BB; } .BRWiki th { background-color: #928F95; } /***************** * Infobox styles * ******************/ .infobox { float: right; width: 23em; margin-left: 1em; margin-right: 1em; margin-bottom: 0.5em; padding: 4px; border:1px solid #aaaaaa; background-color:#f9f9f9 } .infobox-table { width: 100%; padding: 0; background-color:transparent; border: 0; } .infobox-header { font-size: 150%; padding:0.4em; } .infobox-section { padding:0.05em 0.3em; text-align:center; } .infobox-header, .infobox-section { font-weight:bold; } .infobox-centered { text-align: center; } .infobox-centered img { max-width:100%; height:auto; } .infobox-row { vertical-align: top; } .infobox-row-name { text-align: left; white-space: nowrap; background:#ccc; padding: 0.1em 0.5em; width:40%; } .infobox-row-value { text-align:left } .infobox-spacer { height: 0.5em; } /********************* * End infobox styles * **********************/ /* Namespace themes The following themes are applied to templates that are present in a huge amount of pages */ /* Namespace Background Colors */ /* .ns-3020 #content, .ns-3021 #content { background-color: rgba(0,0,0,0); } */ /* .ns-3020 div.thumb, .ns-3021 div.thumb { border-color: rgba(0,0,0,0); } */