MediaWiki:Common.css: Difference between revisions

reduced code duplication
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 17: Line 17:
}
}


@media (prefers-color-scheme: dark) .code, .terminal {
@media (prefers-color-scheme: dark) {
    color: var(--rf-dark-fg);
    .code, .terminal {
    background: var(--rf-dark-bg);
        color: var(--rf-dark-fg);
        background: var(--rf-dark-bg);
    }
}
}



Latest revision as of 2024-11-12T13:29:01

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

/* color definitions */

:root {
    --rf-light-fg: white;
    --rf-light-bg: #777;
    --rf-dark-fg: #eee;
    --rf-dark-bg: #004;
}

/* style for displaying source code and terminal commands */

.code, .terminal {
    color: var(--rf-light-fg);
    background: var(--rf-light-bg);
}

@media (prefers-color-scheme: dark) {
    .code, .terminal {
        color: var(--rf-dark-fg);
        background: var(--rf-dark-bg);
    }
}

pre.code, pre.terminal {
    border: 0px;
    border-radius: 6px;
}

span.code, span.terminal {
    border-radius: 6px;
    padding-left: 4px;
    padding-right: 4px;
}