MediaWiki:Common.css: Difference between revisions

From Official Barotrauma Wiki
Jump to: navigation, search
No edit summary
No edit summary
Line 4: Line 4:


.mp-section {
.mp-section {
  background:#151e28;
   border: 1px solid black;
   border: 1px solid black;
   -webkit-border-radius: 5px;
   -webkit-border-radius: 5px;
Line 10: Line 9:
   -o-border-radius: 5px;
   -o-border-radius: 5px;
   border-radius: 5px;
   border-radius: 5px;
  padding: 1em; border: 1px solid #080808; background: rgb(9,9,8);
  background: -moz-radial-gradient(circle, rgba(9,9,8,1) 0%, rgba(9,9,8,1) 50%, rgba(9,9,8,1) 100%);
  background: -webkit-radial-gradient(circle, rgba(9,9,8,1) 0%, rgba(9,9,8,1) 50%, rgba(9,9,8,1) 100%);
  background: radial-gradient(circle, rgba(9,9,8,1) 0%, rgba(9,9,8,1) 50%, rgba(9,9,8,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#090908",endColorstr="#090908",GradientType=1);
}
}



Revision as of 11:33, 23 November 2020

/* CSS placed here will be applied to all skins */

body.page-Main_Page h1 { display: none; }

.mp-section {
  border: 1px solid black;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 1em; border: 1px solid #080808; background: rgb(9,9,8);
  background: -moz-radial-gradient(circle, rgba(9,9,8,1) 0%, rgba(9,9,8,1) 50%, rgba(9,9,8,1) 100%);
  background: -webkit-radial-gradient(circle, rgba(9,9,8,1) 0%, rgba(9,9,8,1) 50%, rgba(9,9,8,1) 100%);
  background: radial-gradient(circle, rgba(9,9,8,1) 0%, rgba(9,9,8,1) 50%, rgba(9,9,8,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#090908",endColorstr="#090908",GradientType=1);
}

.mainleft {
    float: left;
    width: 25%;
}

.mainright {
    float: right;
    width: 25%;
}

.maincenter {
    margin: auto;
    width: 48%;
}

/* Discord invite button */
div#mw-panel li a[href="https://discord.gg/undertow"] {
    display:inline-block;
    position:relative;
    height:20px;
    width:119px;
    margin-top:5px;
    right:10px;
}

div#mw-panel li a[href="https://discord.gg/undertow"]::before {
    position: absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    content:"";
    background:url(https://discordapp.com/api/guilds/103209684680323072/embed.png) no-repeat;
}

/*
html a,
html .mw-body a.external,
html .mw-body a.extiw,
html .uls-language-list a {
    color: #00ffff;
}

html a:visited,
html .mw-body a.external:visited,
html .mw-body a.extiw:visited {
    color: #00eeff;
}

html body .wikiEditor-ui-toolbar .tabs span.tab a {
    color: #00eeff;
}

html body .oo-ui-buttonElement-button,
html body .mw-ui-button,
html body .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button,
html body .oo-ui-processDialog-actions-safe .oo-ui-widget-enabled.oo-ui-iconElement:not(.oo-ui-labelElement) > .oo-ui-buttonElement-button {
    color: #ffffff;
    background-color: #00ffff;
    border-color: #00ffff;
}

html #left-navigation div.darkvectorbaroTabs li.selected,
html #right-navigation div.darkvectorbaroTabs li.selected {
    background-color: #0c0d0b;
    background-image: -moz-linear-gradient(top, #00ffff 0, #0c0d0b 10%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #00ffff), color-stop(10%, #0c0d0b));
    background-image: -webkit-linear-gradient(top, #00ffff 0, #0c0d0b 10%);
    background-image: linear-gradient(#00ffff 0, #0c0d0b 10%)
}

html #left-navigation div.darkvectorbaroTabs li.selected a,
html #right-navigation div.darkvectorbaroTabs li.selected a,
html #left-navigation div.darkvectorbaroTabs li.selected a:visited,
html #right-navigation div.darkvectorbaroTabs li.selected a:visited {
    color: #00eeff
}

html #left-navigation div.darkvectorbaroTabs li a,
html #right-navigation div.darkvectorbaroTabs li a {
    color: #00ffff
}

html div#mw-panel div.portal div.body ul li a:visited{color:#00eeff}
html div#mw-panel div.portal div.body ul li a{color:#00ffff}

html #mw-head div.darkvectorbaroMenu h3 span {
    color: #00ffff
}
*/