MediaWiki:Timeless.css

A VIK Wikiből
A lap korábbi változatát látod, amilyen Török Zsombor (vitalap | szerkesztései) 2024. július 21., 18:28-kor történt szerkesztése után volt. (bugfix: 14em a bal (amin először teszteltem), 16 a jobb)

Megjegyzés: közzététel után frissítened kell a böngésződ gyorsítótárát, hogy lásd a változásokat.

  • Firefox / Safari: tartsd lenyomva a Shift gombot és kattints a Frissítés gombra a címsorban, vagy használd a Ctrl–F5 vagy Ctrl–R (Macen ⌘–R) billentyűkombinációt
  • Google Chrome: használd a Ctrl–Shift–R (Macen ⌘–Shift–R) billentyűkombinációt
  • Internet Explorer / Edge: tartsd nyomva a Ctrl-t, és kattints a Frissítés gombra, vagy nyomj Ctrl–F5-öt
  • Opera: Nyomj Ctrl–F5-öt
#site-tools { display: none; }

@media screen and (min-width: 851px) {
	#site-navigation {
		position: sticky;
		top: 4em;
	}
}

@media screen and (max-width: 850px) {
	/* mobile friendly infobox */
	.infobox { 
		float: unset!important;
		max-width: 400px!important;
		margin: auto!important;
	}
	
	#personal-extra {
		right: 3em;
	}
}

/*
 * Sidebar hiding 
 */
@media screen and (min-width: 1340px) {
	#mw-related-navigation.hidden { display: none; }
	#mw-related-navigation.hide { animation: hide 0.4s forwards; }
	#mw-related-navigation.show { animation: show 0.4s forwards; }
}

@keyframes hide {
	from { margin-right: 0; }
	99% { margin-right: -16em; opacity: 0; }
	to { display: none; }
}

@keyframes show {
	from { margin-right: -16em; opacity: 0; }
	to { margin-right: 0; opacity: 100; }
}

/* Only show the button when the sidebar is shown */
@media screen and (max-width: 1339px) { #sidebar-toggle-btn { display: none; } }

#sidebar-toggle-btn > a {
	background-image: url(/skins/Timeless/resources/images/eyeball-grey.svg?f17bd);
	border: 0;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: left top;
	display: inline-block;
	padding: 0 2px 0 20px
}