MediaWiki:Monobook.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "→All CSS here will be loaded for users of the MonoBook skin: body { background-color: #121212; color: #e0e0e0; } a, a:link { color: #80d8ff; } a:visited { color: #ce93d8; } #content, .mw-body, #bodyContent, .mw-body-content, .mw-content-ltr { background-color: #181818; color: #e0e0e0; } #p-logo, .portlet, #column-content, #footer { background-color: #1c1c1c; color: #ccc; } input, select, textarea, button { background-color: #2b2b2b; color: #e..." |
Translate CSS comments to English |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* | /* Ana arka plan ve metin */ | ||
body { | body, #content, #bodyContent, .mw-body-content { | ||
background-color: #121212; | background-color: #121212 !important; | ||
color: #e0e0e0; | color: #e0e0e0 !important; | ||
} | } | ||
/* Headings */ | |||
h1, h2, h3, h4, h5, h6, | |||
.firstHeading { | |||
color: #ffffff !important; | |||
} | |||
/* Links */ | |||
a, a:link { | a, a:link { | ||
color: #80d8ff; | color: #80d8ff !important; | ||
} | } | ||
a:visited { | a:visited { | ||
color: #ce93d8; | color: #ce93d8 !important; | ||
} | } | ||
a:hover { | |||
color: #ffffff !important; | |||
color: # | |||
} | } | ||
/* Menu, sidebar and footer */ | |||
#p-logo, | #p-logo, | ||
.portlet, | .portlet, | ||
#column-content, | #column-content, | ||
#footer { | #footer, | ||
background-color: # | #column-one { | ||
color: #ccc; | background-color: #1b1b1b !important; | ||
color: #ccc !important; | |||
border: none !important; | |||
} | } | ||
/* Search box and input fields */ | |||
input, select, textarea, button { | input, select, textarea, button { | ||
background-color: #2b2b2b; | background-color: #2b2b2b !important; | ||
color: #eee; | color: #eee !important; | ||
border: 1px solid #444; | border: 1px solid #444 !important; | ||
} | } | ||
/* Code blocks */ | |||
pre, code { | pre, code { | ||
background-color: #222; | background-color: #222 !important; | ||
color: #ccc; | color: #ccc !important; | ||
} | } | ||
Latest revision as of 12:17, 7 September 2026
/* Ana arka plan ve metin */
body, #content, #bodyContent, .mw-body-content {
background-color: #121212 !important;
color: #e0e0e0 !important;
}
/* Headings */
h1, h2, h3, h4, h5, h6,
.firstHeading {
color: #ffffff !important;
}
/* Links */
a, a:link {
color: #80d8ff !important;
}
a:visited {
color: #ce93d8 !important;
}
a:hover {
color: #ffffff !important;
}
/* Menu, sidebar and footer */
#p-logo,
.portlet,
#column-content,
#footer,
#column-one {
background-color: #1b1b1b !important;
color: #ccc !important;
border: none !important;
}
/* Search box and input fields */
input, select, textarea, button {
background-color: #2b2b2b !important;
color: #eee !important;
border: 1px solid #444 !important;
}
/* Code blocks */
pre, code {
background-color: #222 !important;
color: #ccc !important;
}