MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus Spiritwiki
Adm1 (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Adm1 (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
(26 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | /* 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;} | 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 { | |||
margin-left:1rem; | |||
background: linear-gradient(90deg, | |||
/* #B8860B 60%, Dark gold */ | |||
#9370DB 80% /* Muted purple */ | |||
/* #d9c390 70% */ | |||
); | |||
-webkit-background-clip: text; | |||
background-clip: text; | |||
opacity: 0.8; | |||
color: transparent !important; | |||
text-shadow: | |||
0 0 4px rgba(255, 215, 0, 0.7), | |||
0 0 8px 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: 0.8; } | |||
100% { | |||
opacity: 0.95; | |||
text-shadow: | |||
0 0 8px rgba(255, 215, 0, 0.9), | |||
0 0 15px rgba(255, 215, 0, 0.6); | |||
} | |||
} | |||
} | |||
} |
Aktuelle Version vom 14. Juli 2025, 13:41 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 {
margin-left:1rem;
background: linear-gradient(90deg,
/* #B8860B 60%, Dark gold */
#9370DB 80% /* Muted purple */
/* #d9c390 70% */
);
-webkit-background-clip: text;
background-clip: text;
opacity: 0.8;
color: transparent !important;
text-shadow:
0 0 4px rgba(255, 215, 0, 0.7),
0 0 8px 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: 0.8; }
100% {
opacity: 0.95;
text-shadow:
0 0 8px rgba(255, 215, 0, 0.9),
0 0 15px rgba(255, 215, 0, 0.6);
}
}
}
}