Your IP : 216.73.217.154


Current Path : /home/ereika83/public_html/wp-content/plugins/bb-plugin/modules/separator/includes/
Upload File :
Current File : /home/ereika83/public_html/wp-content/plugins/bb-plugin/modules/separator/includes/frontend.css.php

.fl-node-<?php echo $id; ?> .fl-separator {
	border-top-width: <?php echo $settings->height; ?>px;
	max-width: <?php echo $settings->width . $settings->width_unit; ?>;
	margin: <?php echo $settings->align; ?>;
}

<?php
FLBuilderCSS::responsive_rule( array(
	'settings'     => $settings,
	'setting_name' => 'color',
	'selector'     => ".fl-node-$id .fl-separator",
	'prop'         => 'border-top-color',
) );

FLBuilderCSS::responsive_rule( array(
	'settings'     => $settings,
	'setting_name' => 'style',
	'selector'     => ".fl-node-$id .fl-separator",
	'prop'         => 'border-top-style',
) );

if ( $global_settings->responsive_enabled ) {
	?>
	<?php if ( ! empty( $settings->height_large ) || ! empty( $settings->width_large ) || ! empty( $settings->align_large ) ) { ?>
	@media (max-width: <?php echo $global_settings->large_breakpoint; ?>px) {
		.fl-node-<?php echo $id; ?> .fl-separator {
			<?php if ( ! empty( $settings->height_large ) ) { ?>
				border-top-width: <?php echo $settings->height_large; ?>px;
			<?php } ?>
			<?php if ( ! empty( $settings->width_large ) ) { ?>
				max-width: <?php echo $settings->width_large . $settings->width_large_unit; ?>;
			<?php } ?>
			<?php if ( ! empty( $settings->align_large ) ) { ?>
				margin: <?php echo $settings->align_large; ?>;
			<?php } ?>
		}
	}
	<?php } ?>
	<?php if ( ! empty( $settings->height_medium ) || ! empty( $settings->width_medium ) || ! empty( $settings->align_medium ) ) { ?>
	@media (max-width: <?php echo $global_settings->medium_breakpoint; ?>px) {
		.fl-node-<?php echo $id; ?> .fl-separator {
			<?php if ( ! empty( $settings->height_medium ) ) { ?>
				border-top-width: <?php echo $settings->height_medium; ?>px;
			<?php } ?>
			<?php if ( ! empty( $settings->width_medium ) ) { ?>
				max-width: <?php echo $settings->width_medium . $settings->width_medium_unit; ?>;
			<?php } ?>
			<?php if ( ! empty( $settings->align_medium ) ) { ?>
				margin: <?php echo $settings->align_medium; ?>;
			<?php } ?>
		}
	}
	<?php } ?>
	<?php if ( ! empty( $settings->height_responsive ) || ! empty( $settings->width_responsive ) || ! empty( $settings->align_responsive ) ) { ?>
	@media (max-width: <?php echo $global_settings->responsive_breakpoint; ?>px) {
		.fl-node-<?php echo $id; ?> .fl-separator {
			<?php if ( ! empty( $settings->height_responsive ) ) { ?>
				border-top-width: <?php echo $settings->height_responsive; ?>px;
			<?php } ?>
			<?php if ( ! empty( $settings->width_responsive ) ) { ?>
				max-width: <?php echo $settings->width_responsive . $settings->width_responsive_unit; ?>;
			<?php } ?>
			<?php if ( ! empty( $settings->align_responsive ) ) { ?>
				margin: <?php echo $settings->align_responsive; ?>;
			<?php } ?>
		}
	}
	<?php } ?>
<?php } ?>