MediaWiki:Timeless.css: Unterschied zwischen den Versionen

Aus Lost Dreams Of Tomorrow Wiki
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Zeile 1: Zeile 1:
/* Logo oben Links Timeless */
/* =====================================================
  TIMLESS – GLOBAL PAGE BACKGROUND
  ===================================================== */
.skin-timeless {
    --page-background:
        url("/images/resources/Background.png")
        no-repeat center center / cover fixed;
}
 
/* =====================================================
  PAGE OVERLAY (sichtbar hinter Content)
  ===================================================== */
.skin-timeless #mw-page-base,
.skin-timeless #mw-wrapper,
.skin-timeless #mw-content-container,
.skin-timeless .mw-body {
    background: transparent !important; /* Hintergrund sichtbar */
}
 
/* =====================================================
  HEADER
  ===================================================== */
@media screen and (min-width: 851px) {
    #mw-header-container {
        position: fixed;
        top: 0;
        z-index: 200;
        width: 100%;
        min-height: 3.125em;
        background: rgba(23, 23, 23, 0.95);
        padding: 0.5em 0 0;
        box-sizing: border-box;
    }
}
 
/* =====================================================
  SIDEBAR
  ===================================================== */
#mw-site-navigation,
#mw-related-navigation {
    background: rgba(23, 23, 23, 0.95) !important;
}
 
@media screen and (min-width: 1100px) {
    #mw-site-navigation .sidebar-inner,
    #mw-related-navigation .sidebar-inner {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}
 
/* =====================================================
  CONTENT CONTAINER
  ===================================================== */
#mw-content-text {
    background: rgba(12, 12, 12, 0.95) !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    border: 1px solid #262626 !important;
}
 
/* =====================================================
  LOGO OBEN LINKS
  ===================================================== */
#p-banner img {
#p-banner img {
     content: url("/images/resources/TopLeftLogo.png");
     content: url("/images/resources/TopLeftLogo.png");
Zeile 6: Zeile 69:
     display: block;
     display: block;
}
}
/* BG Timeless */
 
/* Seitenhintergrund (Bild) */
/* =====================================================
.skin-timeless {
  TYPOGRAPHY & LINKS
     --page-background:
  ===================================================== */
        url("/images/resources/Background.png")
body {
        no-repeat center center / cover fixed;
    color: #ededed;
}
 
a {
    color: #a1a1aa;
}
 
a:hover {
    color: #d4d4d8;
}
 
h1, h2, h3, h4, h5, h6 {
    color: #fafafa;
    border-color: #262626;
}
 
/* =====================================================
  TABLES
  ===================================================== */
.wikitable {
    background: #171717;
    border: 1px solid #262626;
}
 
.wikitable th {
    background: #262626;
    color: #a1a1aa;
}
 
.wikitable td {
    border-color: #262626;
}
 
/* =====================================================
  BUTTONS
  ===================================================== */
button,
.mw-ui-button {
     background: #262626;
    color: #ededed;
    border: 1px solid #404040;
}
 
button:hover,
.mw-ui-button:hover {
    background: #404040;
}
 
/* =====================================================
  INPUTS
  ===================================================== */
input,
textarea,
select {
    background: #171717;
    color: #ededed;
    border: 1px solid #262626;
}
}


/* Content Box dunkel */
/* =====================================================
#mw-content-text {
  SEARCH INPUT
     background: rgba(12,12,12,0.95) !important;
  ===================================================== */
#searchInput {
     border: 0;
    height: 2.1em;
    padding: 0.4em 4.5em 0.2em 2em;
    background: #000000c7;
    width: 100%;
    font-family: inherit;
}
}


/* CSS an dieser Stelle wird für Benutzer geladen, die die Benutzeroberfläche „Timeless“ verwenden */
/* =====================================================
/* Grid Container */
  GRIDBOX (HOMEPAGE)
  ===================================================== */
.grid-container {
.grid-container {
  display: flex;
    display: flex;
  flex-wrap: wrap;
    flex-wrap: wrap;
  gap: 1.2em;
    gap: 1.2em;
  justify-content: center;
    justify-content: center;
  margin: 1em 0;
    margin: 1em 0;
}
}


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


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


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


/* Beschreibung */
.gridbox-desc {
.gridbox-desc {
  font-size: 0.9em;
    font-size: 0.9em;
  color: #bbb;
    color: #bbb;
  margin-top: 0.4em;
    margin-top: 0.4em;
}
 
/* =====================================================
  FOOTER
  ===================================================== */
#footer-poweredbyico,
#footer-copyrightico {
    display: none;
}
}

Version vom 11. Januar 2026, 02:55 Uhr

/* =====================================================
   TIMLESS – GLOBAL PAGE BACKGROUND
   ===================================================== */
.skin-timeless {
    --page-background:
        url("/images/resources/Background.png")
        no-repeat center center / cover fixed;
}

/* =====================================================
   PAGE OVERLAY (sichtbar hinter Content)
   ===================================================== */
.skin-timeless #mw-page-base,
.skin-timeless #mw-wrapper,
.skin-timeless #mw-content-container,
.skin-timeless .mw-body {
    background: transparent !important; /* Hintergrund sichtbar */
}

/* =====================================================
   HEADER
   ===================================================== */
@media screen and (min-width: 851px) {
    #mw-header-container {
        position: fixed;
        top: 0;
        z-index: 200;
        width: 100%;
        min-height: 3.125em;
        background: rgba(23, 23, 23, 0.95);
        padding: 0.5em 0 0;
        box-sizing: border-box;
    }
}

/* =====================================================
   SIDEBAR
   ===================================================== */
#mw-site-navigation,
#mw-related-navigation {
    background: rgba(23, 23, 23, 0.95) !important;
}

@media screen and (min-width: 1100px) {
    #mw-site-navigation .sidebar-inner,
    #mw-related-navigation .sidebar-inner {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

/* =====================================================
   CONTENT CONTAINER
   ===================================================== */
#mw-content-text {
    background: rgba(12, 12, 12, 0.95) !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    border: 1px solid #262626 !important;
}

/* =====================================================
   LOGO OBEN LINKS
   ===================================================== */
#p-banner img {
    content: url("/images/resources/TopLeftLogo.png");
    width: 155px;
    height: auto;
    display: block;
}

/* =====================================================
   TYPOGRAPHY & LINKS
   ===================================================== */
body {
    color: #ededed;
}

a {
    color: #a1a1aa;
}

a:hover {
    color: #d4d4d8;
}

h1, h2, h3, h4, h5, h6 {
    color: #fafafa;
    border-color: #262626;
}

/* =====================================================
   TABLES
   ===================================================== */
.wikitable {
    background: #171717;
    border: 1px solid #262626;
}

.wikitable th {
    background: #262626;
    color: #a1a1aa;
}

.wikitable td {
    border-color: #262626;
}

/* =====================================================
   BUTTONS
   ===================================================== */
button,
.mw-ui-button {
    background: #262626;
    color: #ededed;
    border: 1px solid #404040;
}

button:hover,
.mw-ui-button:hover {
    background: #404040;
}

/* =====================================================
   INPUTS
   ===================================================== */
input,
textarea,
select {
    background: #171717;
    color: #ededed;
    border: 1px solid #262626;
}

/* =====================================================
   SEARCH INPUT
   ===================================================== */
#searchInput {
    border: 0;
    height: 2.1em;
    padding: 0.4em 4.5em 0.2em 2em;
    background: #000000c7;
    width: 100%;
    font-family: inherit;
}

/* =====================================================
   GRIDBOX (HOMEPAGE)
   ===================================================== */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em;
    justify-content: center;
    margin: 1em 0;
}

.gridbox {
    width: 220px;
    background: #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;
}

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

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

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

/* =====================================================
   FOOTER
   ===================================================== */
#footer-poweredbyico,
#footer-copyrightico {
    display: none;
}