MediaWiki:Overview.css: Difference between revisions

From CoraTO Wiki - Official Wiki
Jump to navigation Jump to search
Created page with " [GUIDE] MAIN CONTAINER ========================================: #tab-guide { padding: 32px 0; background: linear-gradient(135deg, #fff0f6 0%, #ffffff 100%); min-height: 100vh; } [GUIDE] SECTION HEADER ========================================: .guide-section-header { text-align: center; margin-bottom: 48px; padding: 0 24px; } .guide-main-title { font-size: 3rem; font-weight: 700; background: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0..."
 
No edit summary
Line 421: Line 421:
   line-height: 1.6;
   line-height: 1.6;
}
}
html[data-theme="dark"] #tab-guide { background: linear-gradient(135deg, #121a29 0%, #101625 100%) }
html[data-theme="dark"] .guide-main-subtitle { color: #a8c6e8 }
html[data-theme="dark"] .guide-card { background: #141c2a; border: 1px solid rgba(159,208,255,.18); box-shadow: 0 6px 24px rgba(123,187,255,.18) }
html[data-theme="dark"] .guide-card:hover { box-shadow: 0 12px 36px rgba(123,187,255,.25) }
html[data-theme="dark"] .guide-card-icon { background: linear-gradient(135deg, #274c77 0%, #1b2b41 100%); color: #ffffff; box-shadow: 0 6px 18px rgba(39,76,119,.25) }
html[data-theme="dark"] .guide-card h3 { color: #cfe6ff }
html[data-theme="dark"] .guide-card p { color: #a8c6e8 }
html[data-theme="dark"] .tip-icon { background: linear-gradient(135deg, #274c77 0%, #1b2b41 100%); color: #ffffff; box-shadow: 0 6px 18px rgba(39,76,119,.25) }
html[data-theme="dark"] .guide-section-title { color: #cfe6ff }
html[data-theme="dark"] .nav-step { background: #141c2a; border: 1px solid rgba(159,208,255,.18); box-shadow: 0 6px 24px rgba(123,187,255,.18) }
html[data-theme="dark"] .nav-step:hover { box-shadow: 0 12px 36px rgba(123,187,255,.25) }
html[data-theme="dark"] .step-number { background: linear-gradient(135deg, #274c77, #1b2b41); color: #ffffff; box-shadow: 0 4px 16px rgba(39,76,119,.25) }
html[data-theme="dark"] .step-title { color: #cfe6ff }
html[data-theme="dark"] .step-description { color: #a8c6e8 }
html[data-theme="dark"] .step-tab { background: rgba(20,26,38,.92); color: #cfe6ff; border: 1px solid rgba(159,208,255,.25) }
html[data-theme="dark"] .quest-type-card { background: #141c2a; border: 1px solid rgba(159,208,255,.18); box-shadow: 0 8px 32px rgba(123,187,255,.22) }
html[data-theme="dark"] .quest-type-card:hover { box-shadow: 0 16px 48px rgba(123,187,255,.25) }
html[data-theme="dark"] .quest-type-header { background: linear-gradient(135deg, #274c77 0%, #1b2b41 100%); color: #ffffff }
html[data-theme="dark"] .quest-type-content { color: #cfe6ff }
html[data-theme="dark"] .quest-features li { color: #a8c6e8 }
html[data-theme="dark"] .progression-container { background: #141c2a; border: 1px solid rgba(159,208,255,.18); box-shadow: 0 6px 24px rgba(123,187,255,.18) }
html[data-theme="dark"] .progression-line { background: linear-gradient(135deg, #274c77 0%, #1b2b41 100%) }
html[data-theme="dark"] .progression-step { background: #141c2a; border: 3px solid #274c77; color: #cfe6ff; box-shadow: 0 4px 12px rgba(39,76,119,.25) }
html[data-theme="dark"] .progression-label { color: #a8c6e8 }


/* [GUIDE] RESPONSIVE DESIGN
/* [GUIDE] RESPONSIVE DESIGN

Revision as of 11:37, 3 December 2025


/* [GUIDE] MAIN CONTAINER
   ======================================== */
#tab-guide {
  padding: 32px 0;
  background: linear-gradient(135deg, #fff0f6 0%, #ffffff 100%);
  min-height: 100vh;
}

/* [GUIDE] SECTION HEADER
   ======================================== */
.guide-section-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.guide-main-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}

.guide-main-subtitle {
  font-size: 1.25rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* [GUIDE] INTRO CARDS
   ======================================== */
.guide-intro {
  margin-bottom: 64px;
  padding: 0 24px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.15);
  border: 1px solid rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 107, 157, 0.25);
}

.guide-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 24px rgba(255, 107, 157, 0.3);
}

.guide-card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.guide-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 16px;
}

.guide-card p {
  color: #666666;
  line-height: 1.6;
  font-size: 1rem;
}

/* [GUIDE] NAVIGATION STEPS
   ======================================== */
.guide-navigation {
  margin-bottom: 64px;
  padding: 0 24px;
}

.guide-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2d2d2d;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.guide-section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
  border-radius: 2px;
}

.navigation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 6px 24px rgba(255, 79, 145, 0.18);
  border: 1px solid rgba(255, 107, 157, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.nav-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 79, 145, 0.25);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(255, 107, 157, 0.3);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 16px;
  margin-top: 8px;
}

.step-description {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-tab {
  background: rgba(255, 107, 157, 0.1);
  color: #ff6b9d;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 157, 0.2);
}

/* [GUIDE] QUEST TYPES
   ======================================== */
.quest-types {
  margin-bottom: 64px;
  padding: 0 24px;
}

.quest-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.quest-type-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.15);
  border: 1px solid rgba(255, 107, 157, 0.1);
  transition: all 0.3s ease;
}

.quest-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 107, 157, 0.25);
}

.quest-type-header {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
  padding: 24px;
  text-align: center;
  color: white;
}

.quest-type-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.quest-type-subtitle {
  opacity: 0.9;
  font-size: 1rem;
}

.quest-type-content {
  padding: 32px 24px;
}

.quest-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quest-features li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: #666666;
  line-height: 1.5;
}

.quest-features li::before {
  content: '✓';
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
}

/* [GUIDE] LEVEL PROGRESSION
   ======================================== */
.level-progression {
  margin-bottom: 64px;
  padding: 0 24px;
}

.progression-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.15);
  border: 1px solid rgba(255, 107, 157, 0.1);
}

.progression-track {
  position: relative;
  padding: 20px 0;
}

.progression-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
  border-radius: 2px;
  z-index: 1;
}

.progression-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 16px;
}

.progression-step {
  background: #ffffff;
  border: 3px solid #ff6b9d;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ff6b9d;
  font-size: 0.875rem;
  box-shadow: 0 4px 16px rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
}

.progression-step:hover {
  background: #ff6b9d;
  color: white;
  transform: scale(1.1);
}

.progression-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.progression-label {
  text-align: center;
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
  flex: 1;
  min-width: 80px;
}

/* [GUIDE] TIPS SECTION
   ======================================== */
.guide-tips {
  margin-bottom: 64px;
  padding: 0 24px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.tip-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 24px rgba(255, 79, 145, 0.18);
  border-left: 4px solid #ff6b9d;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 79, 145, 0.25);
}

.tip-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc3e0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: white;
}

.tip-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 12px;
}

.tip-content {
  color: #666666;
  line-height: 1.6;
}
html[data-theme="dark"] #tab-guide { background: linear-gradient(135deg, #121a29 0%, #101625 100%) }
html[data-theme="dark"] .guide-main-subtitle { color: #a8c6e8 }
html[data-theme="dark"] .guide-card { background: #141c2a; border: 1px solid rgba(159,208,255,.18); box-shadow: 0 6px 24px rgba(123,187,255,.18) }
html[data-theme="dark"] .guide-card:hover { box-shadow: 0 12px 36px rgba(123,187,255,.25) }
html[data-theme="dark"] .guide-card-icon { background: linear-gradient(135deg, #274c77 0%, #1b2b41 100%); color: #ffffff; box-shadow: 0 6px 18px rgba(39,76,119,.25) }
html[data-theme="dark"] .guide-card h3 { color: #cfe6ff }
html[data-theme="dark"] .guide-card p { color: #a8c6e8 }
html[data-theme="dark"] .tip-icon { background: linear-gradient(135deg, #274c77 0%, #1b2b41 100%); color: #ffffff; box-shadow: 0 6px 18px rgba(39,76,119,.25) }
html[data-theme="dark"] .guide-section-title { color: #cfe6ff }
html[data-theme="dark"] .nav-step { background: #141c2a; border: 1px solid rgba(159,208,255,.18); box-shadow: 0 6px 24px rgba(123,187,255,.18) }
html[data-theme="dark"] .nav-step:hover { box-shadow: 0 12px 36px rgba(123,187,255,.25) }
html[data-theme="dark"] .step-number { background: linear-gradient(135deg, #274c77, #1b2b41); color: #ffffff; box-shadow: 0 4px 16px rgba(39,76,119,.25) }
html[data-theme="dark"] .step-title { color: #cfe6ff }
html[data-theme="dark"] .step-description { color: #a8c6e8 }
html[data-theme="dark"] .step-tab { background: rgba(20,26,38,.92); color: #cfe6ff; border: 1px solid rgba(159,208,255,.25) }
html[data-theme="dark"] .quest-type-card { background: #141c2a; border: 1px solid rgba(159,208,255,.18); box-shadow: 0 8px 32px rgba(123,187,255,.22) }
html[data-theme="dark"] .quest-type-card:hover { box-shadow: 0 16px 48px rgba(123,187,255,.25) }
html[data-theme="dark"] .quest-type-header { background: linear-gradient(135deg, #274c77 0%, #1b2b41 100%); color: #ffffff }
html[data-theme="dark"] .quest-type-content { color: #cfe6ff }
html[data-theme="dark"] .quest-features li { color: #a8c6e8 }
html[data-theme="dark"] .progression-container { background: #141c2a; border: 1px solid rgba(159,208,255,.18); box-shadow: 0 6px 24px rgba(123,187,255,.18) }
html[data-theme="dark"] .progression-line { background: linear-gradient(135deg, #274c77 0%, #1b2b41 100%) }
html[data-theme="dark"] .progression-step { background: #141c2a; border: 3px solid #274c77; color: #cfe6ff; box-shadow: 0 4px 12px rgba(39,76,119,.25) }
html[data-theme="dark"] .progression-label { color: #a8c6e8 }

/* [GUIDE] RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  .guide-main-title {
    font-size: 2.5rem;
  }
  
  .guide-section-title {
    font-size: 2rem;
  }
  
  .highlights-grid,
  .navigation-steps,
  .quest-types-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .progression-steps {
    justify-content: center;
  }
  
  .progression-step {
    width: 50px;
    height: 50px;
    font-size: 0.75rem;
  }
  
  .progression-container {
    padding: 24px;
  }
  
  #tab-guide {
    padding: 24px 0;
  }
}

@media (max-width: 480px) {
  .guide-main-title {
    font-size: 2rem;
  }
  
  .guide-card,
  .nav-step,
  .quest-type-content,
  .tip-card {
    padding: 20px;
  }
  
  .progression-container {
    padding: 20px;
  }
}