MediaWiki:Common.css: Difference between revisions

From sorzkode wiki
Created page with "CSS placed here will be applied to all skins: Background and text colors: body, #mw-content, #mw-content .mw-parser-output, #mw-page-base, #mw-head-base, #mw-navigation, #mw-footer { background-color: #1e1e1e !important; color: #dcdcdc !important; } Link colors: a { color: #4fc3f7 !important; } a:visited { color: #ba68c8 !important; } a:hover { color: #81d4fa !important; } Header and navigation: #mw-head, #mw-panel { backgrou..."
 
Tag: Replaced
 
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Background and text colors */
body,
#mw-content,
#mw-content .mw-parser-output,
#mw-page-base,
#mw-head-base,
#mw-navigation,
#mw-footer {
    background-color: #1e1e1e !important;
    color: #dcdcdc !important;
}
/* Link colors */
a {
    color: #4fc3f7 !important;
}
a:visited {
    color: #ba68c8 !important;
}
a:hover {
    color: #81d4fa !important;
}
/* Header and navigation */
#mw-head,
#mw-panel {
    background-color: #2c2c2c !important;
    border-color: #444 !important;
}
#p-logo a {
    background-color: transparent !important;
}
/* Footer */
#footer {
    background-color: #2c2c2c !important;
    color: #aaa !important;
}
/* Search box and inputs */
input,
textarea,
select {
    background-color: #333 !important;
    color: #ddd !important;
    border: 1px solid #555 !important;
}
/* Table styling */
table {
    background-color: #2a2a2a !important;
    color: #ddd !important;
    border-color: #444 !important;
}
/* Messages (like success or error) */
.mw-message-box {
    background-color: #333 !important;
    color: #ddd !important;
}
/* Code blocks */
pre,
code {
    background-color: #111 !important;
    color: #eee !important;
}

Latest revision as of 15:51, 20 June 2025

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