Jump to content

MediaWiki:Vector.css

From Startup Mojave Wiki
Revision as of 01:55, 26 February 2025 by Michael Norton (talk | contribs) (Created page with "All CSS here will be loaded for users of the Vector skin: @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", c...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* All CSS here will be loaded for users of the Vector skin */
@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;
}