MediaWiki:Common.css: Difference between revisions

From Modding Haven
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: div.gallerytext > p { font-size: 1px !important; color: transparent !important; line-height: 1% !important } div.gallerytext > p a { font-size: initial !important; line-height: initial !important; color: initial !important; }")
 
mNo edit summary
 
(17 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
div.gallerytext > p {
div.gallerytext > p {  
font-size: 1px !important;
font-size: 0px !important;
color: transparent !important;
line-height: 1% !important
}
}


div.gallerytext > p a {
div.gallerytext > p a {  
font-size: initial !important;
font-size: 14px !important;
line-height: initial !important;
}
color: initial !important;
 
/*dpl column layout - avoid header orphans */
.dplcategory {-webkit-column-count:2;column-count:2;}
.dplcategory .mw-category .mw-category-group {display:block}
.dplcategory .mw-category-group {margin:0 2em 2em 2em;}
.dplcategory .mw-category-group h3 {break-after:avoid}
.dplcategory .mw-category-group h3 {margin:0 0 0.3em; border-bottom:1px solid #e2e2e2}
 
.externalimage-holder {
    position: relative;
}
.externalimage-holder img {
    max-width: 100%;
    height: auto;
}
.logoimage-holder {
    position: relative;
}
.logoimage-holder img {
max-width: 320px;
max-height: 320px;
}
}

Latest revision as of 05:40, 22 February 2024

/* CSS placed here will be applied to all skins */
div.gallerytext > p { 
	font-size: 0px !important;
}

div.gallerytext > p a { 
	font-size: 14px !important;
}

/*dpl column layout - avoid header orphans */
.dplcategory {-webkit-column-count:2;column-count:2;}
.dplcategory .mw-category .mw-category-group {display:block}
.dplcategory .mw-category-group {margin:0 2em 2em 2em;}
.dplcategory .mw-category-group h3 {break-after:avoid}
.dplcategory .mw-category-group h3 {margin:0 0 0.3em; border-bottom:1px solid #e2e2e2}

.externalimage-holder {
    position: relative;
}
.externalimage-holder img {
    max-width: 100%;
    height: auto;
}
.logoimage-holder {
    position: relative;
}
.logoimage-holder img {
	max-width: 320px;
	max-height: 320px;
}