MediaWiki:Common.css: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
(site upgrade)
Tag: Replaced
 
(46 intermediate revisions by one other user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* Main Page background */
#pagehistory li.selected {
body.page-Main_Page #content {
color: #b9b7b5 !important;
    background-image: url(https://developer.valvesoftware.com/w/images/c/cc/Main_Page_background.png);
}
    background-repeat: no-repeat;
    background-size: cover;
}


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


a:visited, .mw-parser-output a.extiw:visited {
.hideifnotnew {
color: rgb(160, 140, 200);
display: none;
}
}
 
.new + .hideifnotnew {
a:active:not(#footer-places), .mw-parser-output a.extiw:active {
display: initial;
color: rgb(220, 140, 200);
}
}

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