User:FrozenPlum/common.css: Difference between revisions

From the Nintendo Wiki, a wiki covering all things Nintendo
Jump to navigationJump to search
Content added Content deleted
No edit summary
Tags: Mobile edit Mobile web edit
mNo edit summary
Tags: Mobile edit Mobile web edit
Line 1: Line 1:
/* mainpage new-releases box input field to adjust to width of parent */
/* -- At 700 px wide or less -- */
.new_releases .mw-inputbox-createbox {
.new_releases .mw-inputbox-createbox {
width: 100%;
width: 100%;
}
}

/* -- At 900 px wide or less -- */
@media only screen and (max-width: 900px) {
@media only screen and (max-width: 900px) {
.mainpagebox .wikicolumns {
.mainpagebox .wikicolumns {
column-count: 2;
column-count: 2!important;
}
}
}
}

/* -- At 800 px wide or less -- */
@media only screen and (max-width: 800px) {
@media only screen and (max-width: 800px) {
.twocol-left {
.twocol-left {

Revision as of 00:51, March 25, 2022

/* mainpage new-releases box input field to adjust to width of parent */
.new_releases .mw-inputbox-createbox {
    width: 100%; 
}

/* -- At 900 px wide or less -- */
@media only screen and (max-width: 900px) {
    .mainpagebox .wikicolumns {
		column-count: 2!important;
	}
}

/* -- At 800 px wide or less -- */
@media only screen and (max-width: 800px) {
    .twocol-left {
		width:100%!important;
	}
	.twocol-right {
		width:100%!important;
	}
}