Шаблон:Пандемія COVID-19 за країнами та територіями/styles.css

/* Test this both on firefox and chrome, they implement sticky a bit differently! */
#covid19-container {
	box-sizing: border-box; /* otherwise on mobile the table will stick to the left gutter - see https://phabricator.wikimedia.org/T247702#5976282 */
	float: right;
	max-width: 100%;
	max-height: 75vh;
	height: 50.25em;
	overflow: auto;
	/* On some desktop browsers (firefox on linux and macOS at least), the scrollbar comes out of the element, and if we don't have some padding, it overlaps the ref column */
	padding-right: 18px;
}


.covid-show-table {
	float: right;
	font-size: 75%;
}

#covid19-container:target .covid-show-table {
	display: none;
}

#covid19-container:target {
	max-width: none;
	max-height: none;
	height: auto;
	overflow-y: visible;
	padding-right: 0;
}

@media print {
	#covid19-container {
		max-width: none;
		max-height: none;
		height: auto;
		overflow-y: visible;
		padding-right: 0;
	}
	.covid-show-table {display: none;}
}


@media screen {
	.covid-sticky th {
		position: sticky;
		/* firefox works best with 0.9px to show top border, chrome wants 0. or it will show stuff behind. */
		top: 0;
		/* hack for firefox */
		background-clip: padding-box;
		/* to avoid overlapping references */
		z-index: 10;
	}
	
	/* based on https://stackoverflow.com/questions/50361698/border-style-do-not-work-with-sticky-position-element */
	
	.covid-sticky th:after,
	.covid-sticky th:before {
	  content: '';
	  position: absolute;
	  left: 0;
	  width: 100%;
	}
	.covid-sticky th:before {
	  /* make it overlap with top border before scrolling */
	  top: -1px;
	  border-top: 1px solid #a2a9b1;
	}
	.covid-sticky th:after {
	  bottom: -1px;
	  border-bottom: 1px solid #a2a9b1;
	}
}
/* Make country line wrap if on small screen */
@media only screen and (max-width: 650px) {
	.covid-country-narrow-on-mobile {width: 12ch;}

	/* needs to be specific */
	body th.covid-total-row {padding-right: 3px;}
}

/* For mobile devices */
@media only screen and (max-width: 500px) {
	#covid19-container {
		/* the scrollbar problem reference above doesn't seem to be an issue on mobile,
		and is currently causing the table to be clipped
		checked iOS (Firefox, Safari, Chrome), and Android (Firefox, Chrome) */
		padding-right: 0;
		/* create space between tablbe and the section hatnote above */
		margin-top: 10px;
	}
	
	/* float the [show more] element to the left */
	.covid-show-table {float: left;}
	
	/* hide the V • T • E element */
	.plainlinks.hlist.navbar.mini {display: none;}
	
	/* float the table header left */
	.plainlinks.hlist.navbar.mini + div {
		margin: 0 !important;
		float: left;
	}
}

/* For mobile app page content service - https://uk.wikipedia.org/api/rest_v1/page/mobile-html/Шаблон:Пандемія_COVID-19_за_країнами_та_територіями */
.pcs-collapse-table-container .covid-show-table {display: none;}

#covid19-container td {padding: 0 2px;}

/* Align flag */
#covid19-container #thetable td:nth-child(1):not(#covid19-table-notelist) {
	text-align: center;
}

/* [[Категорія:Підсторінки CSS]] */