MediaWiki:Common.css: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
(site upgrade)
Tag: Replaced
 
(24 intermediate revisions by one other user not shown)
Line 1: Line 1:
#pagehistory li.selected {
/* Main Page background */
color: #b9b7b5 !important;
body.page-Main_Page #content {
}
    background-image: url(https://developer.valvesoftware.com/w/images/c/cc/Main_Page_background.png);
 
    background-repeat: no-repeat;
a:link, .mw-parser-output a.extiw, a:visited, .mw-parser-output a.extiw:visited {
    background-size: cover;
color: rgb(100, 140, 200);
}
}


/*
/* Language Links */
a:visited, .mw-parser-output a.extiw:visited {
color: rgb(160, 140, 200);
}
*/


a:active, .mw-parser-output a.extiw:active {
.hideifnotnew {
color: rgb(220, 140, 200);
display: none;
}
}
 
.new + .hideifnotnew {
a.new, .mw-plusminus-neg {
display: initial;
color: #bf6060 !important;
}
 
#footer #footer-places li a, #footer #footer-places li a:visited, #footer #footer-places li a:active {
color: #688ba8 !important;
}
 
.catlinks {
height: auto;
border-radius: 4px;
background-color: #303030;
}
 
.catlinks li {
border-left: 1px solid #505050;
}
 
/* diffs */
table.diff {
background-color: #202020;
color: white;
border: 1px solid #666666;
border-radius: 4px;
}
 
td.diff-otitle, td.diff-ntitle {
background-color: #3A3A3A;
color: #D8D7D6;
border-radius: 4px;
}
 
td.diff-deletedline, td.diff-addedline {
color: #D8D7D6;
background-color: #404040;
border-color: #666;
}
 
td.diff-context {
background: #303030;
color: #D8D7D6;
border-color: transparent;
}
 
.diffchange {
color: white;
    font-weight: normal !important;
}
 
.diff-addedline .diffchange {
background: #194C7D;
}
 
.diff-deletedline .diffchange {
background: #B78100;
}
 
#mw-indicator-mw-helplink a {
background-image: unset;
}
 
.mw-changeslist-legend {
background-color: #3c3c3c;
border: 1px solid rgb(255 255 255 / 20%);
border-radius: .35em;
}
 
div.mw-changeslist-legend strong::after {
content: " ";
}
 
fieldset {
background-color: #2b2b2b;
border: 1px solid rgb(255 255 255 / 20%);
border-radius: .35em;
margin: 1em 0 1em 0;
padding: 0 1em 1em;
line-height: 1.5em;
}
 
legend {
font-weight: bold;
}
}

Latest revision as of 16:48, 27 November 2024

/* Main Page background */
body.page-Main_Page #content {
    background-image: url(https://developer.valvesoftware.com/w/images/c/cc/Main_Page_background.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* Language Links */

.hideifnotnew {
display: none;
}
.new + .hideifnotnew {
display: initial;
}