/* ============================================================================== 
   File: scr_paypal.css
	- Stylesheet for PayPal-button in TipTool
	- Author: Daniel Hugentobler (DH)
	- created: 19.DEC.2018, taken from scr_generic.css
	- amended: 07.AUG.2019, corrected byNight
   ============================================================================== */

/* PayPal donation form: override input-image's background */
#donatePP {
	background-color: inherit;
}

/* PayPal donation form: override input-image's white background */
#donatePP input[type=image] {
	padding-top: 0.6rem;
	padding-bottom: 0.6rem;
	margin: 0.1rem;					/* prevent img-shivering when changing to 0.1rem-border */
	border: 0;
	background-color: inherit;
}
#donatePP input[type=image]:hover,
#donatePP input[type=image]:active {
	margin: 0;						/* allow for 0.1rem border */
	background-color: white;
	border: 0.1rem solid silver;
	/* a darker shadow for a dark background */
	-webkit-box-shadow: 0.2rem 0.2rem 0.6rem #4b4b4b;
	-moz-box-shadow: 0.2rem 0.2rem 0.6rem #4b4b4b;
	box-shadow: 0.4rem 0.4rem 1rem #4b4b4b;			/* a bit larger for MS IEx */
}
.byNight #donatePP input[type=image]:hover,
.byNight #donatePP input[type=image]:active {
	background-color: #303030;						/* very dark gray */
	border: 0.1rem solid #303030;
	-webkit-box-shadow: 0 0 3rem lightgray;			/* glow */
	-moz-box-shadow: 0 0 3rem lightgray;
	box-shadow: 0 0 3rem lightgray;
}
