HEX
Server: nginx/1.18.0
System: Linux iZj6c1ieg2jrpk1z5tzi19Z 6.3.9-1.el7.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 21 22:18:40 EDT 2023 x86_64
User: www (1001)
PHP: 8.2.4
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.cytocare.cn/wp-content/themes/peakshops/assets/sass/shortcodes/_flipbox.scss
/* Flip Box */
.thb-flip-box {
	display: flex;
	position: relative;
	min-height: 300px;
	@include transform-style(preserve-3d);
	@include perspective(1000px);

	svg {
		width: 60px;
		margin-bottom: 20px;
	}
	.thb-flip-box-side {
		display: flex;
		flex: 1;
		background-position: center;
		background-size: cover;
		@include backface-visibility(hidden);
		@include transform-style(preserve-3d);
		@extend .transition;
		.thb-flip-box-inner {
			display: flex;
			flex: 1;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			text-align: center;
			padding: 15px;

			@include transform(translateZ(50px) scale(0.95));
			@include min-break($break-small) {
				padding: 30px;
			}
			@include min-break($break-medium) {
				padding: 45px;
			}
			h1,h2,h3,h4,h5,h6 {
				margin-bottom: 10px;
			}
			p {
				color: $black;
				font-size: 14px;
			}
			.flipbox-image {
				margin-bottom: 15px;
				img {
					width: 64px;
					display: inline-block;
				}
			}
			div {
				width: 100%;

				>* {
					&:last-child {
						margin-bottom: 0;
					}
				}
			}
		}
		&.thb-flip-box-back {
			position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
		}
	}
	&.thb-flip-horizontal {
		.thb-flip-box-side.thb-flip-box-back {
			@include rotateY(180);
		}
		&:hover {
			.thb-flip-box-front {
				@include rotateY(-180);
			}
			.thb-flip-box-back {
				@include rotateY(0);
			}
		}
	}
	&.thb-flip-vertical {
		.thb-flip-box-side.thb-flip-box-back {
			@include rotateX(180);
		}
		&:hover {
			.thb-flip-box-front {
				@include rotateX(-180);
			}
			.thb-flip-box-back {
				@include rotateX(0);
			}
		}
	}
	&.thb-flip-box-front-light {
		.thb-flip-box-front {
			color: #fff;
			h1,h2,h3,h4,h5,h6,p {
				color: #fff;
			}
			svg path,
			svg circle,
			svg rect,
			svg ellipse {
				stroke: #fff;
			}
		}
	}
	&.thb-flip-box-back-light {
		.thb-flip-box-back {
			color: #fff;
			h1,h2,h3,h4,h5,h6,p {
				color: #fff;
			}
			svg path,
			svg circle,
			svg rect,
			svg ellipse {
				stroke: #fff;
			}
		}
	}
	.thb-flip-box-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    @include translateZ(50px);
  }
}