MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "→CSS placed here will be applied to all skins: .wikitable { border: 1px solid #ccc; border-radius: 4px; } .wikitable th { background-color: #f6f6f6; font-weight: bold; } .wikitable td { padding: 6px; }" |
No edit summary Tag: Reverted |
||
| Line 12: | Line 12: | ||
.wikitable td { | .wikitable td { | ||
padding: 6px; | padding: 6px; | ||
} | |||
/* Wiki Background Image */ | |||
body { | |||
background-image: url("/wiki/images/bg_wiki.jpg"); | |||
background-repeat: no-repeat; | |||
background-position: center top; | |||
background-attachment: fixed; | |||
background-size: cover; | |||
} | |||
/* Content background */ | |||
#content, | |||
.mw-body { | |||
background-color: rgba(255, 255, 255, 0.95); | |||
border-radius: 8px; | |||
padding: 15px; | |||
} | } | ||
Revision as of 14:24, 14 December 2025
/* CSS placed here will be applied to all skins */
.wikitable {
border: 1px solid #ccc;
border-radius: 4px;
}
.wikitable th {
background-color: #f6f6f6;
font-weight: bold;
}
.wikitable td {
padding: 6px;
}
/* Wiki Background Image */
body {
background-image: url("/wiki/images/bg_wiki.jpg");
background-repeat: no-repeat;
background-position: center top;
background-attachment: fixed;
background-size: cover;
}
/* Content background */
#content,
.mw-body {
background-color: rgba(255, 255, 255, 0.95);
border-radius: 8px;
padding: 15px;
}