MediaWiki:Timeless.css: Unterschied zwischen den Versionen

Aus Lost Dreams Of Tomorrow Wiki
Keine Bearbeitungszusammenfassung
Markierung: Manuelle Zurücksetzung
Keine Bearbeitungszusammenfassung
Zeile 15: Zeile 15:
     background-position: center 10em;
     background-position: center 10em;
}
}
container, .mw-body, #content {
    /* background: #0a0a0a !important; */
    color: #ededed !important;
}
#mw-content {
    /* background: #171717; */
    border: solid #171717;
    border-width: 1px 1px 0.2em;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
    /* background: #0c0c0c; */
    padding: 1em 2em 3em;
}
#mw-content {
    /* background: #f8f9fa; */
    border: solid #eaecf0;
    border-width: 1px 1px 0.2em;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
    /* background: #fff; */
    padding: 1em 2em 3em;
}
/* Content Box dunkel */
/* Content Box dunkel */
#mw-content-text {
#mw-content-text {

Version vom 11. Januar 2026, 03:10 Uhr

/* Logo oben Links Timeless */
#p-banner img {
    content: url("/images/resources/TopLeftLogo.png");
    width: 155px;
    height: auto;
    display: block;
}
/* BG Timeless */
/* Seitenhintergrund (Bild) */
#mw-content-container {
    background: #eaecf0;
    border-bottom: solid 4px #00af89;
    background-image: url(/images/resources/Background.png);
    background-repeat: no-repeat;
    background-position: center 10em;
}

container, .mw-body, #content {
    /* background: #0a0a0a !important; */
    color: #ededed !important;
}

#mw-content {
    /* background: #171717; */
    border: solid #171717;
    border-width: 1px 1px 0.2em;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
    /* background: #0c0c0c; */
    padding: 1em 2em 3em;
}
#mw-content {
    /* background: #f8f9fa; */
    border: solid #eaecf0;
    border-width: 1px 1px 0.2em;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
    /* background: #fff; */
    padding: 1em 2em 3em;
}


/* Content Box dunkel */
#mw-content-text {
    background: rgba(12,12,12,0.95) !important;
}

/* CSS an dieser Stelle wird für Benutzer geladen, die die Benutzeroberfläche „Timeless“ verwenden */
/* Grid Container */
.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;
}