frontend.css.php 504 B

12345678910111213141516
  1. .fl-node-<?php echo $id; ?> .fl-separator {
  2. border-top:<?php echo $settings->height; ?>px <?php echo $settings->style; ?>;
  3. <?php if ( 'custom' == $settings->width ) : ?>
  4. width: <?php echo $settings->custom_width; ?>%;
  5. max-width: 100%;
  6. <?php endif; ?>
  7. <?php if ( 'center' == $settings->align ) : ?>
  8. margin: auto;
  9. <?php endif; ?>
  10. <?php if ( 'left' == $settings->align ) : ?>
  11. margin: 0 0 0 0;
  12. <?php endif; ?>
  13. <?php if ( 'right' == $settings->align ) : ?>
  14. margin: 0 0 0 auto;
  15. <?php endif; ?>
  16. }