MediaWiki:Common.css: Difference between revisions
Appearance
Created page with "→CSS placed here will be applied to all skins: @import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900|Parisienne|Alef&display=swap');" |
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 */ | ||
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900|Parisienne|Alef&display=swap'); | @import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900|Parisienne|Alef&display=swap'); | ||
/* Global font settings */ | |||
body { | |||
font-family: "Montserrat", sans-serif; | |||
} | |||
/* Headings */ | |||
h1, h2, h3, h4, h5, h6 { | |||
font-family: "Montserrat", sans-serif; | |||
font-weight: 700; /* Adjust as needed */ | |||
} | |||
/* Italic or script text */ | |||
em, i { | |||
font-family: "Parisienne", cursive; | |||
} | |||
/* Code blocks and monospaced content */ | |||
pre, code { | |||
font-family: "Alef", sans-serif; | |||
} | |||
/* Navigation menus or sidebar */ | |||
#p-navigation, #mw-panel { | |||
font-family: "Montserrat", sans-serif; | |||
} | |||
/* Footer */ | |||
#footer { | |||
font-family: "Montserrat", sans-serif; | |||
} | |||
Revision as of 01:49, 26 February 2025
/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900|Parisienne|Alef&display=swap');
/* Global font settings */
body {
font-family: "Montserrat", sans-serif;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
font-family: "Montserrat", sans-serif;
font-weight: 700; /* Adjust as needed */
}
/* Italic or script text */
em, i {
font-family: "Parisienne", cursive;
}
/* Code blocks and monospaced content */
pre, code {
font-family: "Alef", sans-serif;
}
/* Navigation menus or sidebar */
#p-navigation, #mw-panel {
font-family: "Montserrat", sans-serif;
}
/* Footer */
#footer {
font-family: "Montserrat", sans-serif;
}