Vorlage:LandingPage/ImageCard/styles.css

Aus Stadtsprachen
Wechseln zu:Navigation, Suche
.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;
}