PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/v1world.us/wp-content/themes/astra/inc/dynamic-css/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //home/trave494/v1world.us/wp-content/themes/astra/inc/dynamic-css/container-layouts.php

<?php
/**
 * Container Layout - Dynamic CSS
 *
 * @package astra
 * @since 3.3.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Container Layout - Dynamic CSS.
 *
 * @since 3.3.0
 */
function astra_container_layout_css() {
	$container_layout = astra_get_content_layout();
   
	$page_container_css = '';
   
	if ( 'page-builder' === $container_layout ) {

		$page_container_css = '
        .ast-page-builder-template .hentry {
            margin: 0;
          }
          .ast-page-builder-template .site-content > .ast-container {
            max-width: 100%;
            padding: 0;
          }
          .ast-page-builder-template .site-content #primary {
            padding: 0;
            margin: 0;
          }
          .ast-page-builder-template .no-results {
            text-align: center;
            margin: 4em auto;
          }
          .ast-page-builder-template .ast-pagination {
            padding: 2em;
          }
         
          .ast-page-builder-template .entry-header.ast-no-title.ast-no-thumbnail {
            margin-top: 0;
          }
          .ast-page-builder-template .entry-header.ast-header-without-markup {
            margin-top: 0;
            margin-bottom: 0;
          }
          
          .ast-page-builder-template .entry-header.ast-no-title.ast-no-meta {
            margin-bottom: 0;
          }
          .ast-page-builder-template.single .post-navigation {
            padding-bottom: 2em;
          }
          .ast-page-builder-template.single-post .site-content > .ast-container {
            max-width: 100%;
          }
          .ast-page-builder-template.single-post .site-content > .ast-container {
            max-width: 100%;
          }';

		if ( is_rtl() ) {

			$page_container_css .= '
            .ast-page-builder-template .entry-header {
                margin-top: 4em;
                margin-right: auto;
                margin-left: auto;
                padding-right: 20px;
                padding-left: 20px;
            }
            .ast-page-builder-template .ast-archive-description {
                margin-top: 4em;
                margin-right: auto;
                margin-left: auto;
                padding-right: 20px;
                padding-left: 20px;
            }
            .ast-page-builder-template.ast-no-sidebar .entry-content .alignwide {
                margin-right: 0;
                margin-left: 0;
            }
            .single.ast-page-builder-template .entry-header {
                padding-right: 20px;
                padding-left: 20px;
            }
            .ast-page-builder-template.ast-no-sidebar .entry-content .alignwide {
                margin-right: 0;
                margin-left: 0;
            }';

		} else {
			$page_container_css .= '
            .ast-page-builder-template .entry-header {
                margin-top: 4em;
                margin-left: auto;
                margin-right: auto;
                padding-left: 20px;
                padding-right: 20px;
            }
            .ast-page-builder-template .ast-archive-description {
                margin-top: 4em;
                margin-left: auto;
                margin-right: auto;
                padding-left: 20px;
                padding-right: 20px;
            }
            .ast-page-builder-template.ast-no-sidebar .entry-content .alignwide {
                margin-left: 0;
                margin-right: 0;
            }
            .single.ast-page-builder-template .entry-header {
                padding-left: 20px;
                padding-right: 20px;
            }
            .ast-page-builder-template.ast-no-sidebar .entry-content .alignwide {
                margin-left: 0;
                margin-right: 0;
            }';  
		}
		return Astra_Enqueue_Scripts::trim_css( $page_container_css );
	}
	return $page_container_css;
}