Module:PageSwitcher/styles.css

.pageswitcher__container {
	overflow-x: auto;
	max-width: 100%;
}

.pageswitcher__row {
	display: flex;
	padding: 4px;
}

.pageswitcher__button {
	min-width: 150px;
	border: 1px solid #444;
	background: #333;
	color: #01ff00;
	font-weight: bold;
	border-radius: 6px;
	padding: 4px 10px;
	text-align: center;
	margin-right: 8px;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.pageswitcher__button:last-child {
	margin-right: 0;
}

.pageswitcher__button a {
	color: inherit;
	text-decoration: none;
	display: inline-block;
}

.pageswitcher__button:hover:not(.pageswitcher__button--current) {
	border-color: #c3fc0d;
	background: #2a2a2a;
}

.pageswitcher__button--first {
	border-top-left-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
}

.pageswitcher__button--last {
	border-top-right-radius: 0.5rem;
	border-bottom-right-radius: 0.5rem;
}

.pageswitcher__button--current {
	background: #01ff00;
	color: #222;
	border-color: #01ff00;
}