4,554
edits
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 { | ||
flex: 1; /* Allow each image to take equal width */ | |||
margin-right: 10px; /* Adjust the spacing between images */ | |||
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 { | ||
flex: 1; /* Allow each image to take equal width */ | |||
margin-right: 10px; /* Adjust the spacing between images */ | |||
transition: transform 0.3s ease; /* Add transition for smooth scaling */ | |||
transform-origin: top left; /* Set the transform origin */ | |||
} | } | ||
.image2 img { | .image2 img { | ||
Line 125: | Line 130: | ||
} | } | ||
.image3 { | .image3 { | ||
flex: 1; /* Allow each image to take equal width */ | |||
margin-right: 10px; /* Adjust the spacing between images */ | |||
transition: transform 0.3s ease; /* Add transition for smooth scaling */ | |||
transform-origin: top left; /* Set the transform origin */ | |||
} | } | ||
.image3 img { | .image3 img { |