MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Lost Dreams Of Tomorrow Wiki
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/*-----------------------------------------  Design START  --------------------------------------*/
/*-----------------------------------------  Card Design START  --------------------------------------*/
/* ===============================
/* ===============================
   SHADCN / MODERN CLEAN THEME
   SHADCN / MODERN CLEAN THEME
  =============================== */
/* ===============================
  Dark / Elegant Card Style
   =============================== */
   =============================== */
.wiki-card {
.wiki-card {
    background-color: #f8f9fa; /* sehr helles Grau */
  background-color: #1f1f1f; /* dunkles Grau-Schwarz */
    border-radius: 12px;
  border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* tiefer Schatten */
    padding: 1em;
  padding: 1.2em 1em;
    margin: 1em 0;
  margin: 1em 0;
    border: 1px solid #e0e0e0;
  border: 1px solid #333; /* dezente Umrandung */
    font-family: "Inter", "Segoe UI", sans-serif;
  font-family: "Inter", "Segoe UI", sans-serif;
}
  color: #eee; /* heller Text */
 
  transition: transform 0.2s, box-shadow 0.2s;
.wiki-card h3 {
    margin-top: 0;
    font-weight: 600;
    font-size: 1.1em;
}
}


.wiki-banner {
.wiki-card:hover {
    width: 100%;
  transform: translateY(-3px);
    border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    margin: 1em 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
}


.wiki-banner img {
/* Titel */
    width: 100%;
.wiki-card h3 {
    display: block;
  margin-top: 0;
  font-size: 1.25em;
  font-weight: 600;
  color: #ffd966; /* dezenter goldener Akzent für Titel */
}
}


.wiki-tabs {
/* Beschreibung */
    display: flex;
.wiki-card p {
    border-bottom: 1px solid #e0e0e0;
  margin: 0.5em 0 1em 0;
    margin: 1em 0;
  color: #ccc;
  font-size: 0.95em;
}
}


.wiki-tab {
/* Content (Liste etc.) */
    padding: 0.5em 1em;
.wiki-card div {
    cursor: pointer;
  color: #ddd;
    font-weight: 500;
  font-size: 0.9em;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s;
}
}


.wiki-tab.active {
/* Optional: Links in Card */
    border-color: #444; /* dunkler Ton für aktiven Tab */
.wiki-card a {
  color: #ffd966;
  text-decoration: none;
  transition: color 0.2s;
}
}


.wiki-grid {
.wiki-card a:hover {
    display: grid;
  color: #ffcc00;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-decoration: underline;
    gap: 1em;
    margin: 1em 0;
}
}


.wiki-button {
    display: inline-block;
    background-color: #444;
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.wiki-button:hover {
    background-color: #666;
}
.wiki-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75em;
    margin: 0.5em 0;
    background-color: #fff;
}


/*-----------------------------------------  Container ENDE  --------------------------------------*/
/*-----------------------------------------  Container ENDE  --------------------------------------*/

Version vom 11. Januar 2026, 16:55 Uhr

/*-----------------------------------------  Card Design START  --------------------------------------*/
/* ===============================
   SHADCN / MODERN CLEAN THEME
   =============================== */
/* ===============================
   Dark / Elegant Card Style
   =============================== */
.wiki-card {
  background-color: #1f1f1f; /* dunkles Grau-Schwarz */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* tiefer Schatten */
  padding: 1.2em 1em;
  margin: 1em 0;
  border: 1px solid #333; /* dezente Umrandung */
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #eee; /* heller Text */
  transition: transform 0.2s, box-shadow 0.2s;
}

.wiki-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

/* Titel */
.wiki-card h3 {
  margin-top: 0;
  font-size: 1.25em;
  font-weight: 600;
  color: #ffd966; /* dezenter goldener Akzent für Titel */
}

/* Beschreibung */
.wiki-card p {
  margin: 0.5em 0 1em 0;
  color: #ccc;
  font-size: 0.95em;
}

/* Content (Liste etc.) */
.wiki-card div {
  color: #ddd;
  font-size: 0.9em;
}

/* Optional: Links in Card */
.wiki-card a {
  color: #ffd966;
  text-decoration: none;
  transition: color 0.2s;
}

.wiki-card a:hover {
  color: #ffcc00;
  text-decoration: underline;
}


/*-----------------------------------------  Container ENDE  --------------------------------------*/
/*-----------------------------------------  Container START  --------------------------------------*/
/*-----------------------------------------  Container ENDE  --------------------------------------*/
/*----------------------------------------- Grid Container START  --------------------------------------*/
.grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
  justify-content: center;
  margin: 1em 0;
}

/* Einzelne Box */
.gridbox {
  width: 220px;
  background-color: #1e1e1e;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 1em;
  text-align: center;
  color: #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover Effekt */
.gridbox:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

/* Titel */
.gridbox-title {
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 0.6em;
}

/* Beschreibung */
.gridbox-desc {
  font-size: 0.9em;
  color: #bbb;
  margin-top: 0.4em;
}

/*----------------------------------------- Grid Container END  --------------------------------------*/