MediaWiki:Common.css
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)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* MediaWiki:Common.css */ :root { --bg-color: #f9f9f9; --text-color: #333; --hero-bg: #fc5351; --hero-text: #ffffff; --card-bg: #ffffff; --card-border: #e0e0e0; --heading-color: #6c0cec; --cta-bg: #f4f4f4; --footer-bg: #ffffff; --footer-text: #777; --link-color: #fc5351; --link-hover: #b03a30; } @media (prefers-color-scheme: dark) { :root { --bg-color: #1a1a1a; --text-color: #e0e0e0; --hero-bg: #8c2c2b; --hero-text: #ffffff; --card-bg: #2a2a2a; --card-border: #444; --heading-color: #9f6cf7; --cta-bg: #2a2a2a; --footer-bg: #2a2a2a; --footer-text: #999; --link-color: #ff7b7a; --link-hover: #ff9e9d; } } body { font-family: 'Arial', sans-serif; color: var(--text-color); background-color: var(--bg-color); margin: 0; padding: 0; transition: background-color 0.3s, color 0.3s; } .hero { background: var(--hero-bg); color: var(--hero-text); padding: 60px 20px; border-radius: 20px; box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); text-align: center; margin-bottom: 40px; } .hero h1 { font-size: 2.5em; font-weight: 700; margin: 0; } .hero p { font-size: 1.25em; margin: 20px 0; font-weight: 300; } .hero .cta-button { display: inline-block; background: var(--hero-text); color: var(--hero-bg); padding: 15px 30px; border-radius: 30px; text-decoration: none; font-size: 1.2em; font-weight: 600; margin-top: 20px; transition: background 0.3s, color 0.3s; border: 2px solid var(--hero-text); } .hero .cta-button:hover { background: var(--hero-bg); color: var(--hero-text); } .card { background: var(--card-bg); border-radius: 15px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); padding: 20px; border: 1px solid var(--card-border); margin-bottom: 20px; } .card h2 { font-size: 2em; color: var(--heading-color); border-bottom: 3px solid var(--card-border); padding-bottom: 10px; margin-bottom: 20px; font-weight: 700; } .card p { font-size: 1.2em; line-height: 1.6; } .cta { background: var(--cta-bg); color: var(--text-color); padding: 40px; border-radius: 15px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); text-align: center; margin-top: 40px; } .cta h2 { font-size: 2.2em; font-weight: 700; color: var(--link-color); margin: 0; } .cta p { font-size: 1.2em; margin-top: 15px; } .cta a { color: var(--link-color); font-weight: 600; text-decoration: underline; transition: color 0.3s; } .cta a:hover { color: var(--link-hover); } .footer { text-align: center; padding: 20px; background: var(--footer-bg); border-top: 1px solid var(--card-border); margin-top: 40px; box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); } .footer p { margin: 0; color: var(--footer-text); font-size: 1.1em; } /* Media Queries */ @media (max-width: 768px) { .hero h1 { font-size: 1.8em; } .hero p { font-size: 1em; } .hero .cta-button { font-size: 1em; padding: 10px 20px; } .card h2 { font-size: 1.5em; } .card p { font-size: 1em; } .cta h2 { font-size: 1.8em; } .cta p { font-size: 1em; } } @media (max-width: 480px) { .hero h1 { font-size: 1.5em; } .hero p { font-size: 0.9em; } .hero .cta-button { font-size: 0.9em; padding: 8px 15px; } .card h2 { font-size: 1.3em; } .card p { font-size: 0.9em; } .cta h2 { font-size: 1.5em; } .cta p { font-size: 0.9em; } } #ca-viewsource { display: none; }