MediaWiki:Gadget-snapToTop.css: Difference between revisions

From Tardis Wiki, the free Doctor Who reference
(Created page with "→‎from https://fallout.wiki/wiki/MediaWiki:Common.css under CC BY-SA 3.0 (https://creativecommons.org/licenses/by-sa/3.0/): #scrollUpButton { position: fixed; bottom: 10px; height: 110px; right: 18px; opacity: 0.7; cursor: pointer; display: inline; } @media only screen and (max-width: 450px) { #scrollUpButton { display: none; visibility: hidden; } }")
 
No edit summary
Line 8: Line 8:
cursor: pointer;
cursor: pointer;
display: inline;
display: inline;
z-index: 99999999;
}
}



Revision as of 19:58, 11 April 2024

/* from https://fallout.wiki/wiki/MediaWiki:Common.css under CC BY-SA 3.0 (https://creativecommons.org/licenses/by-sa/3.0/) */
#scrollUpButton {
	position: fixed;
	bottom: 10px;
	height: 110px;
	right: 18px;
	opacity: 0.7;
	cursor: pointer;
	display: inline;
	z-index: 99999999;
}

@media only screen and (max-width: 450px) {
	#scrollUpButton {
		display: none;
		visibility: hidden;
	}
}