Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 161: Line 161:
     display: block;
     display: block;
   }
   }
}
/* Uniform icon sizing and hover fix */
.icon-wrapper {
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}
.icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Hover effect on the wrapper */
.icon-wrapper:hover {
    transform: scale(1.1);
}
}