MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
#content { background-color: # | body { | ||
background-color: #eef0f2 !important; | |||
color: #111111 !important; | |||
font-family: Arial, sans-serif !important; | |||
} | |||
#content, .mw-body { | |||
background-color: #ffffff !important; | |||
color: #111111 !important; | |||
border: 1px solid #d0d5dd !important; | |||
box-shadow: 0 1px 3px rgba(0,0,0,0.1); | |||
} | |||
h1, h2, h3 { | |||
color: #0f172a !important; | |||
border-bottom: 2px solid #cbd5e1 !important; | |||
} | |||
a { | |||
color: #2563eb !important; | |||
} | |||
/* Tables */ | |||
.wikitable th { | |||
background-color: #0f172a !important; | |||
color: #ffffff !important; | |||
} | |||
.wikitable td { | |||
background-color: #ffffff !important; | |||
color: #1e293b !important; | |||
border-color: #e2e8f0 !important; | |||
} | |||
Revision as of 06:43, 28 July 2026
/* CSS placed here will be applied to all skins */
body {
background-color: #eef0f2 !important;
color: #111111 !important;
font-family: Arial, sans-serif !important;
}
#content, .mw-body {
background-color: #ffffff !important;
color: #111111 !important;
border: 1px solid #d0d5dd !important;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
h1, h2, h3 {
color: #0f172a !important;
border-bottom: 2px solid #cbd5e1 !important;
}
a {
color: #2563eb !important;
}
/* Tables */
.wikitable th {
background-color: #0f172a !important;
color: #ffffff !important;
}
.wikitable td {
background-color: #ffffff !important;
color: #1e293b !important;
border-color: #e2e8f0 !important;
}