Template:Main Page navigation/styles.css: Difference between revisions

Template page
Content added Content deleted
No edit summary
(moved styling from MediaWiki:Vector.css)
Line 4: Line 4:
grid-gap: 20px;
grid-gap: 20px;
grid-template-columns: repeat(auto-fill, minmax(12em, auto));
grid-template-columns: repeat(auto-fill, minmax(12em, auto));
}

.mp-nav-button {
border: 1px solid #2FD9E3;
background-color: rgba(47, 217, 227, 0.1);
}

.mp-link {
border: 1px solid #2FD9E3;
background-color: rgba(47, 217, 227, 0.1);
}
}


Line 16: Line 26:
}
}
}
}

/*
* Vector skin
*/


/*
/*

Revision as of 22:40, 20 December 2021

.mp-navigation {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fill, minmax(12em, auto));
}

.mp-nav-button {
    border: 1px solid #2FD9E3;
    background-color: rgba(47, 217, 227, 0.1);
}

.mp-link {
    border: 1px solid #2FD9E3;
    background-color: rgba(47, 217, 227, 0.1);
}

/* 
 * Different screen sizes
 */
@media only screen and (max-width: 576px) {
	.mp-navigation {
		grid-template-columns: repeat(3, 12em) !important;
		grid-template-rows: repeat(5, 3em);
		overflow-x: scroll;
	}
}

/*
 * Vector skin
 */

/*
 * Citizen skin
 */
body.skin-citizen .mp-nav-button {
	background-color: var(--color-surface-2);
	border: 1px solid var(--color-surface-3);
	border-radius: var(--border-radius--medium);
}

body.skin-citizen .mp-nav-button:hover {
    background-color: var(--color-surface-3);
    border: 1px solid var(--color-surface-4);
	transition: 0.15s ease-in-out;
}

body.skin-citizen .mp-nav-button a {
	color: var(--color-base);
}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.