MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
/* === BACKGROUND COLOUR OF CONTENT TITLE AND PAGES === */ | /* === BACKGROUND COLOUR OF CONTENT TITLE AND PAGES === */ | ||
#content { | #content { | ||
background-color: #F1E9D2; | background-color: #F1E9D2; | ||
} | } | ||
| Line 9: | Line 9: | ||
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&display=swap'); | @import url('https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&display=swap'); | ||
/* === | /* === DEFAULT FONT === */ | ||
body, | body, | ||
#content, | #content, | ||
| Line 21: | Line 21: | ||
.vector-menu, | .vector-menu, | ||
#p-personal, | #p-personal, | ||
#footer | #footer, | ||
h1, h2, h3, h4, h5, h6 { | h1, h2, h3, h4, h5, h6 { | ||
font-family: "IM Fell English", serif !important; | font-family: "IM Fell English", serif !important; | ||
} | } | ||
/* === OPTIONAL | /* === OPTIONAL INLINE CLASSES === */ | ||
.im-fell-english-regular { | .im-fell-english-regular { | ||
font-family: "IM Fell English", serif; | font-family: "IM Fell English", serif; | ||
| Line 43: | Line 39: | ||
} | } | ||
/* === | /* === PAGE ACTION TABS: READ, DISCUSSION, EDIT, VIEW HISTORY, MORE === */ | ||
#p-views li, | #p-views li, | ||
#p- | #p-views li a, | ||
.vector-menu-tabs li | .vector-menu-tabs li, | ||
.vector-menu-tabs li a, | |||
.vector-menu-tabs .selected a { | |||
background: #F1E9D2 !important; | |||
.vector-menu-tabs | |||
background | |||
border: none !important; | border: none !important; | ||
} | } | ||
#p-views li a | #p-views li a:hover, | ||
.vector-menu-tabs li a:hover { | |||
.vector-menu-tabs li a { | background: #F1E9D2 !important; | ||
} | } | ||
/* === | /* === "MORE" TAB & DROPDOWN === */ | ||
# | #p-cactions, | ||
# | #p-cactions .vector-menu-content, | ||
#p-cactions li, | |||
#p-cactions li a { | |||
# | background: #F1E9D2 !important; | ||
# | |||
background | |||
border: none !important; | border: none !important; | ||
} | } | ||
# | #p-cactions li a:hover { | ||
background: #F1E9D2 !important; | |||
background | |||
} | } | ||
Revision as of 12:24, 5 July 2025
/* CSS placed here will be applied to all skins */
/* === BACKGROUND COLOUR OF CONTENT TITLE AND PAGES === */
#content {
background-color: #F1E9D2;
}
/* === IMPORT IM FELL ENGLISH FROM GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&display=swap');
/* === DEFAULT FONT === */
body,
#content,
#mw-content-text,
#mw-content-text p,
#mw-content-text li,
#mw-content-text td,
#mw-content-text th,
#mw-content-text a,
#mw-panel,
.vector-menu,
#p-personal,
#footer,
h1, h2, h3, h4, h5, h6 {
font-family: "IM Fell English", serif !important;
}
/* === OPTIONAL INLINE CLASSES === */
.im-fell-english-regular {
font-family: "IM Fell English", serif;
font-weight: 400;
font-style: normal;
}
.im-fell-english-regular-italic {
font-family: "IM Fell English", serif;
font-weight: 400;
font-style: italic;
}
/* === PAGE ACTION TABS: READ, DISCUSSION, EDIT, VIEW HISTORY, MORE === */
#p-views li,
#p-views li a,
.vector-menu-tabs li,
.vector-menu-tabs li a,
.vector-menu-tabs .selected a {
background: #F1E9D2 !important;
border: none !important;
}
#p-views li a:hover,
.vector-menu-tabs li a:hover {
background: #F1E9D2 !important;
}
/* === "MORE" TAB & DROPDOWN === */
#p-cactions,
#p-cactions .vector-menu-content,
#p-cactions li,
#p-cactions li a {
background: #F1E9D2 !important;
border: none !important;
}
#p-cactions li a:hover {
background: #F1E9D2 !important;
}