Anonymous
×
Create a new article
Write your page title here:
We currently have 7 articles on wiki.jedimud.net. Type your article name above or click on one of the titles below and start writing!



wiki.jedimud.net

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Override styles for the gallery box and thumb container */
/* Override styles for the gallery box */
.gallerybox {
.gallerybox {
     margin: 0;
     background-color: inherit; /* Match parent's background */
     padding: 0;
    border: none; /* Remove any border */
    padding: 0; /* Remove any padding */
     margin: 0; /* Remove any margin */
}
}


/* For the thumb container within gallerybox */
.gallerybox .thumb {
.gallerybox .thumb {
     background-color: inherit ; /* Match parent's background */
     background-color: inherit; /* Match parent's background */
     border: none ; /* Remove any border */
     border: none; /* Remove any border */
    width: 280px ; /* Match inline style */
    height: 150px ; /* Match inline style */
}
}


/* Ensure image itself doesn't add extra border or padding */
/* For the image inside thumb */
.gallerybox .thumb img {
.gallerybox .thumb img {
     border: none ;
     border: none; /* Remove border if any */
     padding: 0 ;
     padding: 0; /* Remove padding if any */
}
}

Revision as of 01:28, 20 January 2025

/* CSS placed here will be applied to all skins */
/* Override styles for the gallery box */
.gallerybox {
    background-color: inherit; /* Match parent's background */
    border: none; /* Remove any border */
    padding: 0; /* Remove any padding */
    margin: 0; /* Remove any margin */
}

/* For the thumb container within gallerybox */
.gallerybox .thumb {
    background-color: inherit; /* Match parent's background */
    border: none; /* Remove any border */
}

/* For the image inside thumb */
.gallerybox .thumb img {
    border: none; /* Remove border if any */
    padding: 0; /* Remove padding if any */
}