MediaWiki:Common.css: Difference between revisions

From Kanthaus wiki
add infoboxImage class
change infoboxImage from applied class to descendent combinator
Line 14: Line 14:
}
}


.infoboxImage {
.infoboxImage img {
   height: auto;
   height: auto;
   width: 100%;
   width: 100%;
   aspect-ration: 1;
   aspect-ration: 1;
}
}

Revision as of 19:02, 21 November 2024

/* CSS placed here will be applied to all skins */

.infoboxOuter {
  width: 200px;
  box-sizing: border-box;
  float: right;
  margin: 0.5rem;
}

@media (max-width: 500px) {
  .infoboxOuter {
    width: 100%;
  }
}

.infoboxImage img {
  height: auto;
  width: 100%;
  aspect-ration: 1;
}