HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/confeduphaar/backip-old-files/media/jdbuilder/scss/hover/effects/curls/_curl-bottom-left.scss
/* Curl Bottom Left */
@mixin curl-bottom-left {
	@include hacks();
	position: relative;

	&:before {
		pointer-events: none;
		position: absolute;
		content: '';
		height: 0;
		width: 0;
		bottom: 0;
		left: 0;
		background: $revealAreaColor; /* IE9 */
		background: linear-gradient(
			45deg,
			$revealAreaColor 45%,
			$curlLineColor 50%,
			$curlTransitionColor 56%,
			$curlLastColor 80%
		);
		box-shadow: 1px -1px 1px rgba(0, 0, 0, .4);
		@include prefixed(transition-duration, $mediumDuration);
		@include prefixed(transition-property, "width, height");
	}

	&:hover:before,
	&:focus:before,
	&:active:before {
		width: $curlWidth;
		height: $curlHeight;
	}
}