跳转到内容

Template:收视率表格/styles.css

维基百科,自由的百科全书
.ratingstable {
    font-size: 9pt;
    text-align: center;
}
tr.ratingstable-header {
    background: #CCCCFF;
    color: #202122;
    font-weight: bold;
}

@media screen {
    html.skin-theme-clientpref-night tr.ratingstable-header {
	    background: var(--background-color-neutral);
	    color: inherit;
	}
	html.skin-theme-clientpref-night .ratingstable a {
	    color: var( --color-progressive ) !important;
	    text-decoration: none !important;
	}
	html.skin-theme-clientpref-night .ratingstable a:hover {
	    text-decoration: underline !important;
	}
	html.skin-theme-clientpref-night .ratingstable a:visited {
	    color: var( --color-visited ) !important;
	}
}

@media screen and ( prefers-color-scheme: dark) {
    html.skin-theme-clientpref-os tr.ratingstable-header {
        background: var(--background-color-neutral);
        color: inherit;
    }
    html.skin-theme-clientpref-os .ratingstable a {
        color: var( --color-progressive ) !important;
        text-decoration: none !important;
    }
    html.skin-theme-clientpref-os .ratingstable a:hover {
        text-decoration: underline !important;
    }
    html.skin-theme-clientpref-os .ratingstable a:visited {
        color: var( --color-visited ) !important;
    }
}