MediaWiki:Common.css: Difference between revisions
From Combat Demo
No edit summary |
No edit summary |
||
| Line 12: | Line 12: | ||
#content { | #content { | ||
flex: 1 0 auto; | flex: 1 0 auto; | ||
} | |||
/* --- Gallery Item Hover Effect --- */ | |||
/* Target each individual box within the gallery */ | |||
.gallerybox { | |||
/* This makes the animation smooth. It will take 0.2 seconds to transition the transform property. */ | |||
transition: transform 0.2s ease-in-out; | |||
} | |||
/* This is the magic: when you hover over a gallery box with your mouse... */ | |||
.gallerybox:hover { | |||
/* ...it will scale up to 110% of its original size. */ | |||
transform: scale(1.1); | |||
/* This is also important. It brings the hovered item to the front layer, | |||
so it doesn't get awkwardly covered by the items next to it. */ | |||
z-index: 10; | |||
} | } | ||
Revision as of 00:47, 20 September 2025
/* CSS placed here will be applied to all skins */
/* --- Sticky Footer for Timeless Skin --- */
/* Make the content's direct wrapper a flex container that's at least as tall as the screen */
#mw-content-wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Allow the main content area to grow and fill available space */
#content {
flex: 1 0 auto;
}
/* --- Gallery Item Hover Effect --- */
/* Target each individual box within the gallery */
.gallerybox {
/* This makes the animation smooth. It will take 0.2 seconds to transition the transform property. */
transition: transform 0.2s ease-in-out;
}
/* This is the magic: when you hover over a gallery box with your mouse... */
.gallerybox:hover {
/* ...it will scale up to 110% of its original size. */
transform: scale(1.1);
/* This is also important. It brings the hovered item to the front layer,
so it doesn't get awkwardly covered by the items next to it. */
z-index: 10;
}