Vorlage:LandingPage/ImageCard/styles.css: Unterschied zwischen den Versionen
Aus Stadtsprachen
Nöth (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Nöth (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
.image | .overlay-image-container { | ||
position: relative; | position: relative; | ||
display: inline-block; /* Or block, depending on layout */ | display: inline-block; /* Or block, depending on your layout */ | ||
} | } | ||
. | .overlay-image-text { | ||
position: absolute; | position: absolute; | ||
top: 50%; | top: 50%; | ||
left: 50%; | left: 50%; | ||
transform: translate(-50%, -50%); | transform: translate(-50%, -50%); | ||
color: white; /* Or any desired text color */ | |||
padding: 10px; /* Adjust padding as needed */ | |||
padding: 10px; | |||
text-align: center; | text-align: center; | ||
width: | width: 100%; | ||
} | } | ||
. | .overlay-image-image img { | ||
display: block; | |||
width: 100%; /* Make the image fill the container */ | |||
height: auto; | |||
} | } | ||
.opacity-4 { | |||
. | opacity: 0.4; | ||
} | } | ||
Version vom 27. Februar 2025, 11:39 Uhr
.overlay-image-container {
position: relative;
display: inline-block; /* Or block, depending on your layout */
}
.overlay-image-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white; /* Or any desired text color */
padding: 10px; /* Adjust padding as needed */
text-align: center;
width: 100%;
}
.overlay-image-image img {
display: block;
width: 100%; /* Make the image fill the container */
height: auto;
}
.opacity-4 {
opacity: 0.4;
}