MediaWiki:Timeless.css: Unterschied zwischen den Versionen
Aus Lost Dreams Of Tomorrow Wiki
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 72: | Zeile 72: | ||
color: #bbb; | color: #bbb; | ||
margin-top: 0.4em; | margin-top: 0.4em; | ||
} | |||
/* Left Sidebar */ | |||
@media screen and (min-width: 1340px) { | |||
#mw-site-navigation .sidebar-chunk label, #mw-site-navigation .sidebar-chunk h3 { | |||
font-weight: normal; | |||
font-size: 1em; | |||
margin: 0.25em 0 0.75em 0; | |||
padding-bottom: 0.15em; | |||
border-bottom: none; | |||
display: block; | |||
color: white; | |||
} | |||
} | |||
@media screen and (min-width: 1340px) { | |||
#mw-site-navigation .sidebar-chunk { | |||
background: rgba(23, 23, 23, 0.96); | |||
border-radius: 16px; | |||
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); | |||
backdrop-filter: blur(5px); | |||
-webkit-backdrop-filter: blur(5px); | |||
border: 1px solid rgba(23, 23, 23, 0.43); | |||
padding: 1.5em 1.5em 0; | |||
margin: 1em 0; | |||
line-height: 1.125; | |||
word-wrap: break-word; | |||
font-size: 0.95em; | |||
} | |||
} | } | ||
Version vom 11. Januar 2026, 03:22 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;
}
/* Transparent damit BG durch kann */
.mw-body, #content {
background: none;
}
#mw-content {
background: none;
}
#mw-content {
background: none;
}
/* 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;
}
/* Left Sidebar */
@media screen and (min-width: 1340px) {
#mw-site-navigation .sidebar-chunk label, #mw-site-navigation .sidebar-chunk h3 {
font-weight: normal;
font-size: 1em;
margin: 0.25em 0 0.75em 0;
padding-bottom: 0.15em;
border-bottom: none;
display: block;
color: white;
}
}
@media screen and (min-width: 1340px) {
#mw-site-navigation .sidebar-chunk {
background: rgba(23, 23, 23, 0.96);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(23, 23, 23, 0.43);
padding: 1.5em 1.5em 0;
margin: 1em 0;
line-height: 1.125;
word-wrap: break-word;
font-size: 0.95em;
}
}