MediaWiki:Common.css
From Begonia Wiki
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.
/* CSS placed here will be applied to all skins */
/* --- MODERN BEGONIA THEME --- */
:root {
--begonia-green: #2d5a27; /* Deep leaf green */
--begonia-light-green: #e9f5e8; /* Soft background tint */
--begonia-accent: #d81b60; /* Floral pink/red accent */
--text-main: #333333;
--shadow: 0 4px 6px rgba(0,0,0,0.07);
}
/* Import a modern Font from Google (Optional but recommended) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');
body {
background-color: #fdfdfd;
font-family: 'Inter', sans-serif;
color: var(--text-main);
}
/* Elegant serif for titles to give it a "Botanical Journal" feel */
h1, h2, h3, .firstHeading {
font-family: 'Playfair Display', serif;
font-weight: 700;
color: var(--begonia-green);
border-bottom: none !important;
}