MediaWiki:Common.css: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
(site upgrade)
Tag: Replaced
 
(52 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;
    background-size: cover;
}


a:link {
/* Language Links */
color: rgb(100, 140, 200);
}


a:visited {
.hideifnotnew {
color: rgb(160, 140, 200);
display: none;
}
}
 
.new + .hideifnotnew {
a: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;
}