MediaWiki:GuideCard.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.
.shaman-guide-feature-card {
background: var(--bg-1);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 4px 20px var(--shadow-soft);
border: 1px solid var(--border);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shaman-guide-feature-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px var(--shadow-medium);
}
.shaman-guide-feature-card h3 {
font-size: 1.5rem;
font-weight: 700;
color: var(--heading);
margin: 0 0 1.5rem 0;
display: flex;
align-items: center;
gap: 0.5rem;
}
.shaman-guide-feature-card h3::before {
content: '✨';
font-size: 1.2rem;
}
/*------------------------ Quest Information Card ------------------------ */
.quest-info-card {
background: var(--bg-1);
color: var(--text);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 4px 20px var(--shadow-soft);
}
/*------------------------ Quest Detail Inline Images ------------------------ */
.quest-location-image {
height: 100px;
width: auto;
vertical-align: middle;
margin-right: 12px;
border-radius: 6px;
box-shadow: 0 3px 6px var(--shadow-soft);
transition: transform 0.2s ease;
}
.quest-location-image:hover {
transform: scale(1.1);
}
.quest-card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
}
.quest-card-header h3 {
margin: 0;
font-size: 1.5rem;
font-weight: 700;
}
.quest-number-badge {
background: var(--bg-1);
padding: 0.5rem 1rem;
border-radius: 20px;
font-weight: 700;
font-size: 1.1rem;
color: var(--text);
}
.quest-details-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
}
.quest-detail-item {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.quest-detail-label {
font-weight: 600;
opacity: 0.8;
font-size: 0.9rem;
color: var(--text);
}
.quest-detail-value {
font-weight: 700;
font-size: 1.1rem;
color: var(--heading);
}
/* NPC Information Header Layout */
.npc-info-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
.npc-title-section {
flex: 1;
text-align: center;
}
/* Quest Requirements Info Grid */
.quest-requirements-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
}
.quest-requirement-item {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.quest-requirement-label {
font-weight: 600;
opacity: 0.8;
font-size: 0.9rem;
}
.quest-requirement-value {
font-weight: 700;
font-size: 1.1rem;
}