MediaWiki:FuseBoxes.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)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
.bunny-page {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #5e4b52;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Section Headers */
.section-header h2 {
color: #d67a91;
margin-top: 0;
margin-bottom: 5px;
}
.section-lead {
margin-top: 0;
color: #5e4b52;
opacity: 0.8;
margin-bottom: 20px;
}
/* Feature Cards */
.feature-card {
background: rgba(255, 255, 255, 0.8);
border-radius: 16px;
padding: 25px;
margin-bottom: 25px;
border: 1px solid rgba(255, 255, 255, 0.6);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(255, 158, 181, 0.25);
}
.feature-card h4 {
color: #d67a91;
font-size: 1.4em;
margin-top: 0;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #fff0f5;
}
/* Grid Layout */
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
/* Image Container Overrides for Bunny Theme */
.bunny-page .image-container {
background: white !important;
border: 2px solid #fff0f5 !important;
border-radius: 12px !important;
transition: all 0.3s ease;
}
.bunny-page .image-container:hover {
border-color: #ff9eb5 !important;
transform: scale(1.02);
}
.bunny-page .image-caption {
color: #d67a91 !important;
font-weight: 600;
background: #fff0f5;
padding: 5px 10px;
border-radius: 20px;
display: inline-block;
margin-top: 10px;
}
/* Tabs Styling Overrides */
.nav-tabs {
display: flex;
margin-bottom: 25px;
border-bottom: none;
overflow-x: auto;
padding-bottom: 5px;
}
.nav-tab {
background: white;
border: 2px solid #fff0f5;
border-radius: 25px;
padding: 10px 20px;
color: #5e4b52;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.nav-tab.active {
background: #ff9eb5;
color: white;
border-color: #ff9eb5;
box-shadow: 0 4px 12px rgba(255, 158, 181, 0.25);
}
.nav-tab:hover:not(.active) {
background: #fff0f5;
border-color: #ff9eb5;
}
/* Responsive */
@media (max-width: 768px) {
.hero {
padding: 25px;
}
.hero-title {
font-size: 2em;
}
.info-grid {
grid-template-columns: 1fr;
}
}