MediaWiki:Common.css: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
Tag: Manual revert
No edit summary
Line 102: Line 102:
.type {
.type {
border-top: 1px solid black;
border-top: 1px solid black;
}
.images {
display: flex; /* Use flexbox to align children in a row */
    flex-wrap: nowrap; /* Prevent wrapping to the next line */
}
}
.image {
.image {
  float: left;
flex: 1; /* Allow each image to take equal width */
  transition: transform 0.3s ease; /* Add transition for smooth scaling */
    margin-right: 10px; /* Adjust the spacing between images */
  transform-origin: top left; /* Set the transform origin */
transition: transform 0.3s ease; /* Add transition for smooth scaling */
transform-origin: top left; /* Set the transform origin */
}
}
.image img {
.image img {
Line 114: Line 119:
}
}
.image2 {
.image2 {
  padding-left: 5px;
flex: 1; /* Allow each image to take equal width */
  float: left;
    margin-right: 10px; /* Adjust the spacing between images */
  transition: transform 0.3s ease; /* Add transition for smooth scaling */
transition: transform 0.3s ease; /* Add transition for smooth scaling */
  transform-origin: top left; /* Set the transform origin */
transform-origin: top left; /* Set the transform origin */
}
}
.image2 img {
.image2 img {
Line 125: Line 130:
}
}
.image3 {
.image3 {
  padding-left: 5px;
flex: 1; /* Allow each image to take equal width */
  float: left;
    margin-right: 10px; /* Adjust the spacing between images */
  transition: transform 0.3s ease; /* Add transition for smooth scaling */
transition: transform 0.3s ease; /* Add transition for smooth scaling */
  transform-origin: top left; /* Set the transform origin */
transform-origin: top left; /* Set the transform origin */
}
}
.image3 img {
.image3 img {

Navigation menu