MediaWiki:Common.css: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: #pagehistory li.selected { color: #b9b7b5 !important; }")
 
(site upgrade)
Tag: Replaced
 
(54 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;
}
 
/* Language Links */
 
.hideifnotnew {
display: none;
}
.new + .hideifnotnew {
display: initial;
}
}

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