A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

MediaWiki:Common.css: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
(Copy over some old styles from MediaWiki:Monobook.css.)
(Make size of anonnotice text dependent on screen size.)
 
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
#anonNotice {
    font-size: 0.75vw;
}


/* Disable the anonnotice on certain high-traffic pages. */
/* Disable the anonnotice on certain high-traffic pages. */

Latest revision as of 10:32, 10 October 2014

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

#anonNotice {
    font-size: 0.75vw;
}

/* Disable the anonnotice on certain high-traffic pages. */
.page-FAQ #anonNotice {
    display: none;
}

/* Limit width of legacy images on text track pages. */
.page-Use_cases_for_timed_tracks_rendered_over_video_by_the_UA img,
.page-Use_cases_for_API-level_access_to_timed_tracks img {
    max-width: 400px;
}