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: linear-gradient(135deg, #fff5f8, #ffeef3);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
border: 1px solid #e9ecef;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shaman-guide-feature-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.shaman-guide-feature-card h3 {
font-size: 1.5rem;
font-weight: 700;
color: #2c3e50;
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: linear-gradient(135deg, #fff5f8, #ffeef3);
color: white;
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}
/*------------------------ 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 rgba(0, 0, 0, 0.2);
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: rgba(255, 255, 255, 0.2);
padding: 0.5rem 1rem;
border-radius: 20px;
font-weight: 700;
font-size: 1.1rem;
color: black;
}
.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: black;
}
.quest-detail-value {
font-weight: 700;
font-size: 1.1rem;
color: black;
}
/* 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;
}