MediaWiki:LandingPage.css
Aus Joachim Camerarius (1500-1574)
Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.
- Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
- Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
- Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
.hero {
position: relative;
width: 100vw;
margin-left: calc(50% - 50vw);
background: url("https://i.imgur.com/8O36OdH.jpg") center center / cover no-repeat;
color: #fff;
padding: 10rem 1rem;
text-align: left;
box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(0,0,0,.23);
}
.hero h2 {
font-weight: 700;
font-size: 2.5rem;
animation: fadeIn 1.7s cubic-bezier(.55,.085,.68,.53) both;
}
.hero h5 {
font-size: 1.25rem;
font-style: normal !important;
animation: fadeIn 2s cubic-bezier(.55,.085,.68,.53) both;
}
/* --- Fade-in animation --- */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* --- Optional: scroll hint link if you re-add it --- */
.hero-scroll a {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
color: #fff;
text-decoration: none;
font-weight: 500;
letter-spacing: .1em;
transition: opacity .3s;
}
.hero-scroll a:hover {
opacity: .6;
}