Jump to content

MediaWiki:Common.css: Difference between revisions

From Startup Mojave Wiki
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* Import Google Fonts */
 
@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 */
/* Apply Montserrat as the default font */
body {
body {
     font-family: "Montserrat", sans-serif;
     font-family: "Montserrat", sans-serif;
Line 11: Line 10:
h1, h2, h3, h4, h5, h6 {
h1, h2, h3, h4, h5, h6 {
     font-family: "Montserrat", sans-serif;
     font-family: "Montserrat", sans-serif;
     font-weight: 700; /* Adjust as needed */
     font-weight: 700;
}
}


/* Italic or script text */
/* Italics and emphasis */
em, i {
em, i {
     font-family: "Parisienne", cursive;
     font-family: "Parisienne", cursive;
}
}


/* Code blocks and monospaced content */
/* Code blocks and monospaced text */
pre, code {
pre, code {
     font-family: "Alef", sans-serif;
     font-family: "Alef", sans-serif;
}
}


/* Navigation menus or sidebar */
/* Navigation menus */
#p-navigation, #mw-panel {
#p-navigation, #mw-panel {
     font-family: "Montserrat", sans-serif;
     font-family: "Montserrat", sans-serif;
Line 31: Line 30:
/* Footer */
/* Footer */
#footer {
#footer {
    font-family: "Montserrat", sans-serif;
}
/* Sidebar */
#mw-panel {
    font-family: "Montserrat", sans-serif;
}
/* Buttons and form elements */
button, input, select, textarea {
     font-family: "Montserrat", sans-serif;
     font-family: "Montserrat", sans-serif;
}
}

Revision as of 01:51, 26 February 2025

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900|Parisienne|Alef&display=swap');

/* Apply Montserrat as the default font */
body {
    font-family: "Montserrat", sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

/* Italics and emphasis */
em, i {
    font-family: "Parisienne", cursive;
}

/* Code blocks and monospaced text */
pre, code {
    font-family: "Alef", sans-serif;
}

/* Navigation menus */
#p-navigation, #mw-panel {
    font-family: "Montserrat", sans-serif;
}

/* Footer */
#footer {
    font-family: "Montserrat", sans-serif;
}

/* Sidebar */
#mw-panel {
    font-family: "Montserrat", sans-serif;
}

/* Buttons and form elements */
button, input, select, textarea {
    font-family: "Montserrat", sans-serif;
}