Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
| (12 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
| − | @import url('https://fonts.googleapis.com/css2?family= | + | @import url('https://fonts.googleapis.com/css2?family=Vollkorn+SC:wght@400;600&family=Vollkorn:ital@0;1&display=swap'); |
body { | body { | ||
| − | + | font-family: 'Vollkorn', serif; | |
| + | |||
| + | background-color: #161513; | ||
| + | font-size: 16px; | ||
| + | } | ||
| + | |||
| + | .smallcaps { | ||
| + | font-family: 'Vollkorn SC', serif !important; | ||
} | } | ||
/* Dark background for main page & stuff */ | /* Dark background for main page & stuff */ | ||
| − | .mw-page-base, .mw-head-base, .content { | + | .mw-page-base, .mw-head-base, .content, .mw-body { |
background-color: #101010; | background-color: #101010; | ||
| + | color: #ddd; | ||
| + | } | ||
| + | |||
| + | .mw-body b, .mw-body strong, .mw-body h1, .mw-body h2, .mw-body h3, .mw-body h4, .mw-body h5, .mw-body h6 { | ||
| + | color: #fff; | ||
| + | } | ||
| + | |||
| + | a, .portal .body li a, .vector-menu-portal .body li a { | ||
| + | color: rgb(248, 183, 108); | ||
| + | } | ||
| + | a:hover, a:focus, .portal .body li a:hover, .vector-menu-portal .body li a:hover, .portal .body li a:focus, .vector-menu-portal .body li a:focus { | ||
| + | color: rgb(255, 192, 128); | ||
| + | } | ||
| + | a:visited, .portal .body li a:visited, .vector-menu-portal .body li a:visited { | ||
| + | color: rgb(255, 174, 81); | ||
} | } | ||
Latest revision as of 04:50, 27 March 2021
/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Vollkorn+SC:wght@400;600&family=Vollkorn:ital@0;1&display=swap');
body {
font-family: 'Vollkorn', serif;
background-color: #161513;
font-size: 16px;
}
.smallcaps {
font-family: 'Vollkorn SC', serif !important;
}
/* Dark background for main page & stuff */
.mw-page-base, .mw-head-base, .content, .mw-body {
background-color: #101010;
color: #ddd;
}
.mw-body b, .mw-body strong, .mw-body h1, .mw-body h2, .mw-body h3, .mw-body h4, .mw-body h5, .mw-body h6 {
color: #fff;
}
a, .portal .body li a, .vector-menu-portal .body li a {
color: rgb(248, 183, 108);
}
a:hover, a:focus, .portal .body li a:hover, .vector-menu-portal .body li a:hover, .portal .body li a:focus, .vector-menu-portal .body li a:focus {
color: rgb(255, 192, 128);
}
a:visited, .portal .body li a:visited, .vector-menu-portal .body li a:visited {
color: rgb(255, 174, 81);
}