MediaWiki:FuseBoxes.css: Difference between revisions
Jump to navigation
Jump to search
m Noorisei moved page MediaWiki:BoxerBunnyBox.css to MediaWiki:FuseBoxes.css |
No edit summary |
||
| Line 120: | Line 120: | ||
grid-template-columns: 1fr; | grid-template-columns: 1fr; | ||
} | } | ||
} | |||
/* Note/Alert Box */ | |||
.fuse-note { | |||
background: linear-gradient(to right, var(--surface-tint), var(--bg-1)); | |||
border-left: 4px solid var(--primary); | |||
border-radius: 0 8px 8px 0; | |||
padding: 15px 20px; | |||
margin: 20px 0; | |||
color: var(--text); | |||
font-size: 0.95em; | |||
line-height: 1.5; | |||
display: flex; | |||
align-items: flex-start; | |||
gap: 15px; | |||
box-shadow: 0 2px 8px var(--shadow-soft); | |||
transition: all 0.3s ease; | |||
} | |||
.fuse-note:hover { | |||
transform: translateX(5px); | |||
background: linear-gradient(to right, var(--bg-2), var(--surface-tint)); | |||
border-left-color: var(--primary-hover); | |||
box-shadow: 0 4px 12px var(--shadow-medium); | |||
} | |||
.fuse-note-icon { | |||
font-size: 1.4em; | |||
line-height: 1; | |||
color: var(--heading); | |||
text-shadow: 0 2px 4px var(--shadow-soft); | |||
} | |||
.fuse-note-content strong { | |||
color: var(--heading); | |||
display: block; | |||
margin-bottom: 4px; | |||
text-transform: uppercase; | |||
font-size: 0.85em; | |||
letter-spacing: 0.5px; | |||
} | } | ||
Latest revision as of 05:46, 29 January 2026
.fuses-page {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: var(--text);
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Section Headers */
.section-header h2 {
color: var(--heading);
margin-top: 0;
margin-bottom: 5px;
}
.section-lead {
margin-top: 0;
color: var(--text-muted);
opacity: 0.8;
margin-bottom: 20px;
}
/* Feature Cards */
.feature-card {
background: var(--surface);
border-radius: 16px;
padding: 25px;
margin-bottom: 25px;
border: 1px solid var(--border);
box-shadow: 0 4px 20px var(--shadow-soft);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px var(--shadow-medium);
}
.feature-card h4 {
color: var(--heading);
font-size: 1.4em;
margin-top: 0;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid var(--border);
}
/* Grid Layout */
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
/* Image Container Overrides for Fuses Theme */
.fuses-page .image-container {
background: var(--surface) !important;
border: 2px solid var(--border) !important;
border-radius: 12px !important;
transition: all 0.3s ease;
}
.fuses-page .image-container:hover {
border-color: var(--primary) !important;
transform: scale(1.02);
}
.fuses-page .image-caption {
color: var(--heading) !important;
font-weight: 600;
background: var(--bg-2);
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: var(--surface);
border: 2px solid var(--border);
border-radius: 25px;
padding: 10px 20px;
color: var(--text);
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.nav-tab.active {
background: var(--primary);
color: var(--surface);
border-color: var(--primary);
box-shadow: 0 4px 12px var(--shadow-strong);
}
.nav-tab:hover:not(.active) {
background: var(--bg-2);
border-color: var(--primary);
}
/* Responsive */
@media (max-width: 768px) {
.hero {
padding: 25px;
}
.hero-title {
font-size: 2em;
}
.info-grid {
grid-template-columns: 1fr;
}
}
/* Note/Alert Box */
.fuse-note {
background: linear-gradient(to right, var(--surface-tint), var(--bg-1));
border-left: 4px solid var(--primary);
border-radius: 0 8px 8px 0;
padding: 15px 20px;
margin: 20px 0;
color: var(--text);
font-size: 0.95em;
line-height: 1.5;
display: flex;
align-items: flex-start;
gap: 15px;
box-shadow: 0 2px 8px var(--shadow-soft);
transition: all 0.3s ease;
}
.fuse-note:hover {
transform: translateX(5px);
background: linear-gradient(to right, var(--bg-2), var(--surface-tint));
border-left-color: var(--primary-hover);
box-shadow: 0 4px 12px var(--shadow-medium);
}
.fuse-note-icon {
font-size: 1.4em;
line-height: 1;
color: var(--heading);
text-shadow: 0 2px 4px var(--shadow-soft);
}
.fuse-note-content strong {
color: var(--heading);
display: block;
margin-bottom: 4px;
text-transform: uppercase;
font-size: 0.85em;
letter-spacing: 0.5px;
}