MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus Spiritwiki
Adm1 (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Adm1 (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 38: | Zeile 38: | ||
@media screen { | |||
span.mw-desktop-sitename { | span.mw-desktop-sitename { | ||
background: linear-gradient(90deg, | background: linear-gradient(90deg, | ||
# | #FF6B6B 0%, /* Soft red */ | ||
# | #FFA500 15%, /* Warm orange */ | ||
#FFD700 30%, | #FFD700 30%, /* Gold - primary */ | ||
#FFD700 | #FFD700 45%, /* Extended gold */ | ||
# | #B8860B 60%, /* Dark gold */ | ||
# | #87CEEB 75%, /* Soft sky blue */ | ||
#9370DB 100% /* Muted purple */ | |||
# | |||
); | ); | ||
-webkit-background-clip: text; | -webkit-background-clip: text; | ||
background-clip: text; | background-clip: text; | ||
color: transparent !important; | color: transparent !important; | ||
text-shadow: | |||
0 0 5px rgba(255, 215, 0, 0.7), | |||
text-shadow: 0 0 | 0 0 10px rgba(255, 215, 0, 0.4); | ||
display: inline-block; | display: inline-block; | ||
font-weight: bold; | font-weight: bold; | ||
letter-spacing: 1px; | |||
animation: golden-shimmer 4s infinite alternate; | |||
@keyframes golden-shimmer { | |||
0% { opacity: 1; } | |||
100% { | |||
opacity: 0.95; | |||
text-shadow: | |||
0 0 8px rgba(255, 215, 0, 0.9), | |||
0 0 15px rgba(255, 215, 0, 0.6); | |||
} | } | ||
} | |||
} | |||
} | } |
Version vom 14. Juli 2025, 13:22 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
@media screen {
select.goog-te-combo {
margin-right: -1em !important;
border: 1px solid #ff0000;
-webkit-animation: rainbow 5s infinite alternate;
border-radius: 3px;
}
}
div#google_translate_element{margin-bottom:1em !important;}
select.goog-te-combo {
margin: 4px -5px !important;
margin-right: 0px;
max-width:170px;
}
.goog-te-gadget .goog-te-combo {
margin:4px -5px !important;
margin-right:0px;
max-width:170px;
}
.uls-language-list {
display: block;
}
.uls-search {
display: block;
}
table.prettytable td{padding-left:3px;}
@media screen {
span.mw-desktop-sitename {
background: linear-gradient(90deg,
#FF6B6B 0%, /* Soft red */
#FFA500 15%, /* Warm orange */
#FFD700 30%, /* Gold - primary */
#FFD700 45%, /* Extended gold */
#B8860B 60%, /* Dark gold */
#87CEEB 75%, /* Soft sky blue */
#9370DB 100% /* Muted purple */
);
-webkit-background-clip: text;
background-clip: text;
color: transparent !important;
text-shadow:
0 0 5px rgba(255, 215, 0, 0.7),
0 0 10px rgba(255, 215, 0, 0.4);
display: inline-block;
font-weight: bold;
letter-spacing: 1px;
animation: golden-shimmer 4s infinite alternate;
@keyframes golden-shimmer {
0% { opacity: 1; }
100% {
opacity: 0.95;
text-shadow:
0 0 8px rgba(255, 215, 0, 0.9),
0 0 15px rgba(255, 215, 0, 0.6);
}
}
}
}