403Webshell
Server IP : 43.130.17.34  /  Your IP : 216.73.217.6
Web Server : nginx/1.28.0
System : Linux VM-4-12-opencloudos 6.6.92-34.1.oc9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 25 21:32:13 CST 2025 x86_64
User : www ( 1000)
PHP Version : 8.0.26
Disable Function : 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
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /www/wwwroot/yespkg.com/wp-content/plugins/bb-plugin/modules/countdown/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/wwwroot/yespkg.com/wp-content/plugins/bb-plugin/modules/countdown/includes/frontend.css.php
<?php if( isset( $settings->number_spacing ) ) : ?>
	.fl-node-<?php echo $id; ?> .fl-countdown .fl-countdown-number {
		font-size: 1px;
		margin-left: <?php echo $settings->number_spacing ?>px;
		margin-right: <?php echo $settings->number_spacing ?>px;
	}
<?php endif; ?>

.fl-node-<?php echo $id; ?> .fl-countdown .fl-countdown-unit-number {
	<?php 
		if( !empty( $settings->number_size ) ) {
			echo 'font-size: '. $settings->number_size .'px;';
		}
		if( !empty( $settings->number_color ) ) {
			echo 'color: #'. $settings->number_color .';';
		}
	?>	
}

.fl-node-<?php echo $id; ?> .fl-countdown .fl-countdown-unit-label {
	<?php 
		if( !empty( $settings->label_size ) ) {
			echo 'font-size: '. $settings->label_size .'px;';
		}
		if( !empty( $settings->label_color ) ) {
			echo 'color: #'. $settings->label_color .';';
		}
	?>	
}

<?php if( isset( $settings->layout ) && $settings->layout == 'default' ) : ?>
	.fl-node-<?php echo $id; ?> .fl-countdown .fl-countdown-unit {
		<?php 
			if( isset( $settings->vertical_padding ) ) {
				echo 'padding-top: '. $settings->vertical_padding .'px;';
				echo 'padding-bottom: '. $settings->vertical_padding .'px;';
			}
			if( isset( $settings->horizontal_padding ) ) {
				echo 'padding-left: '. $settings->horizontal_padding .'px;';
				echo 'padding-right: '. $settings->horizontal_padding .'px;';
			}
			if( !empty( $settings->number_bg_color ) ) {
				$number_raw_color = !empty( $settings->number_bg_color ) ? $settings->number_bg_color : 'transparent';
				$number_opacity   = !empty( $settings->number_bg_opacity ) ? $settings->number_bg_opacity : '100';
				$number_color     = 'rgba('. implode( ',', FLBuilderColor::hex_to_rgb( $number_raw_color ) ) .','. ( $number_opacity/100 ) .')';

				echo 'background-color: #'. $number_raw_color .';';
				echo 'background-color: '. $number_color .';';
			}
			if( isset( $settings->border_radius ) ) {
				echo 'border-radius: '. $settings->border_radius .'px;';
			}
		?>	
	}

	<?php if( $settings->show_separator == 'yes' && $settings->separator_type == 'colon' ) : ?>
		.fl-node-<?php echo $id; ?> .fl-countdown .fl-countdown-number:after {
			<?php 
				if( isset( $settings->number_spacing ) ) {
					echo 'width: '. ( $settings->number_spacing * 2 ) .'px;';
					echo 'right: -'. ( $settings->number_spacing * 2 ) .'px;';
				}
				if( isset( $settings->separator_color ) ) {
					echo 'color: #'. $settings->separator_color .';';
				}

			?>	
		}
	<?php endif; ?>

	<?php if( $settings->show_separator == 'yes' && $settings->separator_type == 'line' ) : ?>
		.fl-node-<?php echo $id; ?> .fl-countdown .fl-countdown-number:after {
			<?php 
				if( isset( $settings->number_spacing ) ) {
					echo 'right: -'. $settings->number_spacing .'px;';
				}
				if( isset( $settings->separator_color ) ) {
					echo 'border-color: #'. $settings->separator_color .';';
				}

			?>	
		}
	<?php endif; ?>

<?php elseif( isset( $settings->layout ) && $settings->layout == 'circle' ) : ?>
	.fl-node-<?php echo $id ?> .fl-countdown-unit{
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%,-50%);
		   -moz-transform: translate(-50%,-50%);
		    -ms-transform: translate(-50%,-50%);
		        transform: translate(-50%,-50%);
	}
	.fl-node-<?php echo $id ?> .fl-countdown-number{
		<?php 
			if( !empty( $settings->circle_width ) ) {
				echo 'width: '. $settings->circle_width .'px;';
				echo 'height: '. $settings->circle_width .'px;';
			} else {
				echo 'max-width: 100px;';
				echo 'max-height: 100px;';				
			}
		?>
	}
	.fl-node-<?php echo $id ?> .fl-countdown-circle-container{
		<?php 
			if( !empty( $settings->circle_width ) ) {
				echo 'max-width: '. $settings->circle_width .'px;';
				echo 'max-height: '. $settings->circle_width .'px;';
			} else {
				echo 'max-width: 100px;';
				echo 'max-height: 100px;';				
			}
		?>
	}

	.fl-node-<?php echo $id ?> .fl-countdown .svg circle{
	<?php 
		if( !empty( $settings->circle_dash_width ) ) {
			echo 'stroke-width: '. $settings->circle_dash_width .'px;';
		}
	?>
	}

	.fl-node-<?php echo $id ?> .fl-countdown .svg .fl-number-bg{
	<?php 
		if( !empty( $settings->circle_bg_color ) ) {
			echo 'stroke: #'. $settings->circle_bg_color .';';
		} else {
			echo 'stroke: transparent;';
		}
	?>
	}

	.fl-node-<?php echo $id ?> .fl-countdown .svg .fl-number{
	<?php 
		if( !empty( $settings->circle_color ) ) {
			echo 'stroke: #'. $settings->circle_color .';';
		} else {
			echo 'stroke: transparent;';
		}
	?>
	}
<?php endif; ?>

Youez - 2016 - github.com/yon3zu
LinuXploit