Changeset 2439289
- Timestamp:
- 12/14/2020 07:23:18 PM (4 years ago)
- Location:
- envynotifs/trunk
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
envynotifs/trunk/README.txt
r2407363 r2439289 3 3 Tags: notification, notification bar, notice, announcement, countdown, header, footer, top, bottom, left side, right side, post, pages, home, headline, date, time, scrolling, fixed, marquee, message 4 4 Requires at least: 4.0 5 Tested up to: 5. 5.15 Tested up to: 5.6 6 6 Stable tag: 4.3 7 7 License: GPLv2 or later … … 79 79 == Changelog == 80 80 81 = 1.0.0 - 24/10/2020 = 81 = 1.1 - 15/12/2020 = 82 83 - Added: Background Image Option 84 - Added: Panel Layout Option 85 - Added: Description Option 86 - Added: MailChimp Subscription Form Option 87 - Added: Social Media Option 88 - Updated: Sidebar Options 89 90 = 1.0 - 24/10/2020 = 82 91 83 92 - Initial Release -
envynotifs/trunk/admin/class-envy-notifs-admin.php
r2405561 r2439289 5 5 * 6 6 * @link https://envytheme.com/ 7 * @since 1. 0.07 * @since 1.1 8 8 * 9 9 * @package Envy_Notifs … … 26 26 * The ID of this plugin. 27 27 * 28 * @since 1. 0.028 * @since 1.1 29 29 * @access private 30 30 * @var string $plugin_name The ID of this plugin. … … 35 35 * The version of this plugin. 36 36 * 37 * @since 1. 0.037 * @since 1.1 38 38 * @access private 39 39 * @var string $version The current version of this plugin. … … 44 44 * Initialize the class and set its properties. 45 45 * 46 * @since 1. 0.046 * @since 1.1 47 47 * @param string $plugin_name The name of this plugin. 48 48 * @param string $version The version of this plugin. … … 58 58 * Register the stylesheets for the admin area. 59 59 * 60 * @since 1. 0.060 * @since 1.1 61 61 */ 62 62 public function enqueue_styles() { 63 64 /**65 * This function is provided for demonstration purposes only.66 *67 * An instance of this class should be passed to the run() function68 * defined in Envy_Notifs_Loader as all of the hooks are defined69 * in that particular class.70 *71 * The Envy_Notifs_Loader will then create the relationship72 * between the defined hooks and the functions defined in this73 * class.74 */75 63 76 64 } … … 79 67 * Register the JavaScript for the admin area. 80 68 * 81 * @since 1. 0.069 * @since 1.1 82 70 */ 83 71 public function enqueue_scripts() { 84 85 /**86 * This function is provided for demonstration purposes only.87 *88 * An instance of this class should be passed to the run() function89 * defined in Envy_Notifs_Loader as all of the hooks are defined90 * in that particular class.91 *92 * The Envy_Notifs_Loader will then create the relationship93 * between the defined hooks and the functions defined in this94 * class.95 */96 72 97 73 } -
envynotifs/trunk/admin/partials/envy-notifs-admin-display.php
r2405561 r2439289 7 7 * 8 8 * @link https://envytheme.com/ 9 * @since 1. 0.09 * @since 1.1 10 10 * 11 11 * @package Envy_Notifs … … 13 13 */ 14 14 ?> 15 16 <!-- This file should primarily consist of HTML with a little bit of PHP. --> -
envynotifs/trunk/envy-notifs.php
r2405561 r2439289 5 5 * Plugin URI: https://wordpress.org/plugins/envy-notifs 6 6 * Description: All-in-One Notification Management WordPress Plugin. 7 * Version: 1. 0.07 * Version: 1.1 8 8 * Author: EnvyTheme 9 9 * Author URI: https://envytheme.com/ … … 21 21 /** 22 22 * Currently plugin version. 23 * Start at version 1. 0.0and use SemVer - https://semver.org23 * Start at version 1.1 and use SemVer - https://semver.org 24 24 * Rename this for your plugin and update it as you release new versions. 25 25 */ 26 define( 'ENVY_NOTIFS_VERSION', '1. 0.0' );26 define( 'ENVY_NOTIFS_VERSION', '1.1' ); 27 27 28 28 /** … … 64 64 * not affect the page life cycle. 65 65 * 66 * @since 1. 0.066 * @since 1.1 67 67 */ 68 68 function envy_notifs_run() { -
envynotifs/trunk/includes/class-envy-notifs-activator.php
r2405561 r2439289 5 5 * 6 6 * @link https://envytheme.com/ 7 * @since 1. 0.07 * @since 1.1 8 8 * 9 9 * @package Envy_Notifs … … 16 16 * This class defines all code necessary to run during the plugin's activation. 17 17 * 18 * @since 1. 0.018 * @since 1.1 19 19 * @package Envy_Notifs 20 20 * @subpackage Envy_Notifs/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1. 0.030 * @since 1.1 31 31 */ 32 32 public static function activate() { -
envynotifs/trunk/includes/class-envy-notifs-deactivator.php
r2405561 r2439289 5 5 * 6 6 * @link https://envytheme.com/ 7 * @since 1. 0.07 * @since 1.1 8 8 * 9 9 * @package Envy_Notifs … … 16 16 * This class defines all code necessary to run during the plugin's deactivation. 17 17 * 18 * @since 1. 0.018 * @since 1.1 19 19 * @package Envy_Notifs 20 20 * @subpackage Envy_Notifs/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1. 0.030 * @since 1.1 31 31 */ 32 32 public static function deactivate() { -
envynotifs/trunk/includes/class-envy-notifs-global-options.php
r2405561 r2439289 2 2 3 3 // Global Settings 4 5 4 if ( ! function_exists( 'envy_notifs_global_settings' ) ) : 6 5 … … 8 7 9 8 // Position Options 10 add_settings_section("position_section", __('Position Options', 'envy-notifs'), null, " plugin_options");11 12 add_settings_field("select-global-position", __('Select Notification Position', 'envy-notifs'), "envy_notifs_position_function_display", " plugin_options", "position_section");13 14 add_settings_field("select-single-position", __('Where You Want to Show?', 'envy-notifs'), "envy_notifs_position_single_function_display", " plugin_options", "position_section");15 16 add_settings_field(" notifs-mobile-hide", __('Notice Hide on Mobile Devices', 'envy-notifs'), "envy_notifs_mobile_display", "plugin_options", "position_section");17 18 add_settings_field("notifs- post-notice", __('N.B: Always Show Latest Notice.', 'envy-notifs'), "envy_notifs_post_notice_display", "plugin_options", "position_section");9 add_settings_section("position_section", __('Position Options', 'envy-notifs'), null, "envy_notifs_general_options"); 10 11 add_settings_field("select-global-position", __('Select Notification Position', 'envy-notifs'), "envy_notifs_position_function_display", "envy_notifs_general_options", "position_section"); 12 13 add_settings_field("select-single-position", __('Where You Want to Show?', 'envy-notifs'), "envy_notifs_position_single_function_display", "envy_notifs_general_options", "position_section"); 14 15 add_settings_field("select-left-right-position", __('Left & Right Sidebar Position', 'envy-notifs'), "envy_notifs_left_right_position_display", "envy_notifs_general_options", "position_section"); 16 17 add_settings_field("notifs-mobile-hide", __('Notice Hide on Mobile Devices', 'envy-notifs'), "envy_notifs_mobile_display", "envy_notifs_general_options", "position_section"); 19 18 20 19 register_setting("position_section", "new_settings"); 21 20 22 // Date Options23 add_settings_section("date_section", __('Date/Time Options', 'envy-notifs'), null, " plugin_options");24 25 add_settings_field("date-notice", __('Date/Time Instructions:', 'envy-notifs'), "envy_notifs_date_notice_display", " plugin_options", "date_section");21 // Date & Time Options 22 add_settings_section("date_section", __('Date/Time Options', 'envy-notifs'), null, "envy_notifs_general_options"); 23 24 add_settings_field("date-notice", __('Date/Time Instructions:', 'envy-notifs'), "envy_notifs_date_notice_display", "envy_notifs_general_options", "date_section"); 26 25 27 add_settings_field("select-start-date", __('Select Start Date for Notice', 'envy-notifs'), "envy_notifs_start_date_function_display", "plugin_options", "date_section"); 28 29 add_settings_field("select-end-date", __('Select End Date for Notice', 'envy-notifs'), "envy_notifs_end_date_function_display", "plugin_options", "date_section"); 30 31 add_settings_field("select-start-time", __('Select Start Time for Notice', 'envy-notifs'), "envy_notifs_start_time_function_display", "plugin_options", "date_section"); 32 33 add_settings_field("select-end-time", __('Select End Time for Notice', 'envy-notifs'), "envy_notifs_end_time_function_display", "plugin_options", "date_section"); 26 add_settings_field("select-start-date", __('Start Date for Notice', 'envy-notifs'), "envy_notifs_start_date_function_display", "envy_notifs_general_options", "date_section"); 27 add_settings_field("select-end-date", __('End Date for Notice', 'envy-notifs'), "envy_notifs_end_date_function_display", "envy_notifs_general_options", "date_section"); 28 29 add_settings_field("select-start-time", __('Start Time for Notice', 'envy-notifs'), "envy_notifs_start_time_function_display", "envy_notifs_general_options", "date_section"); 30 add_settings_field("select-end-time", __('End Time for Notice', 'envy-notifs'), "envy_notifs_end_time_function_display", "envy_notifs_general_options", "date_section"); 34 31 35 32 register_setting("date_section", "new_settings"); 36 33 37 34 // Content Options 38 add_settings_section(" button_section", __('Content Options', 'envy-notifs'), null, "plugin_options");39 40 add_settings_field("notifs-scroll-show", __('Notice Scrolling Enabled', 'envy-notifs'), "envy_notifs_scroll_display", " plugin_options", "button_section");41 42 add_settings_field("notifs-bar-font-size", __(' Add Notice Font Size', 'envy-notifs'), "envy_notifs_font_size_display", "plugin_options", "button_section");43 44 add_settings_field("notifs-bar-font-weight", __(' Add Notice Font Weight', 'envy-notifs'), "envy_notifs_font_weight_display", "plugin_options", "button_section");45 46 add_settings_field("notifs-bar-btn-text", __(' Add Button Text', 'envy-notifs'), "envy_notifs_btn_display", "plugin_options", "button_section");47 48 add_settings_field("notifs-bar-btn-border", __(' Add Button Border Radius', 'envy-notifs'), "envy_notifs_btn_border_display", "plugin_options", "button_section");49 50 add_settings_field("notifs-bar-icon-size", __(' Add Icon Font Size', 'envy-notifs'), "envy_notifs_icon_size_display", "plugin_options", "button_section");51 52 add_settings_field("notifs-bar-icon-class", __(' Add Icon Class', 'envy-notifs'), "envy_notifs_icon_display", "plugin_options", "button_section");53 54 add_settings_field("notifs-bar-icon-border", __(' Add Icon Border Radius', 'envy-notifs'), "envy_notifs_icon_border_display", "plugin_options", "button_section");35 add_settings_section("content_section", __('Content Options', 'envy-notifs'), null, "envy_notifs_general_options"); 36 37 add_settings_field("notifs-scroll-show", __('Notice Scrolling Enabled', 'envy-notifs'), "envy_notifs_scroll_display", "envy_notifs_general_options", "content_section"); 38 39 add_settings_field("notifs-bar-font-size", __('Notice Font Size', 'envy-notifs'), "envy_notifs_font_size_display", "envy_notifs_general_options", "content_section"); 40 41 add_settings_field("notifs-bar-font-weight", __('Notice Font Weight', 'envy-notifs'), "envy_notifs_font_weight_display", "envy_notifs_general_options", "content_section"); 42 43 add_settings_field("notifs-bar-btn-text", __('Button Text', 'envy-notifs'), "envy_notifs_btn_display", "envy_notifs_general_options", "content_section"); 44 45 add_settings_field("notifs-bar-btn-border", __('Button Border Radius', 'envy-notifs'), "envy_notifs_btn_border_display", "envy_notifs_general_options", "content_section"); 46 47 add_settings_field("notifs-bar-icon-size", __('Icon Font Size', 'envy-notifs'), "envy_notifs_icon_size_display", "envy_notifs_general_options", "content_section"); 48 49 add_settings_field("notifs-bar-icon-class", __('Icon Class', 'envy-notifs'), "envy_notifs_icon_display", "envy_notifs_general_options", "content_section"); 50 51 add_settings_field("notifs-bar-icon-border", __('Icon Border Radius', 'envy-notifs'), "envy_notifs_icon_border_display", "envy_notifs_general_options", "content_section"); 55 52 56 register_setting("button_section", "new_settings"); 53 // Subscribe Options 54 add_settings_field("notifs-bar-subscribe-title", __('Subscribe Title', 'envy-notifs'), "envy_notifs_subscribe_title_display", "envy_notifs_general_options", "content_section"); 55 56 add_settings_field("notifs-bar-subscribe", __('Subscribe Form Shortcode', 'envy-notifs'), "envy_notifs_subscribe_display", "envy_notifs_general_options", "content_section"); 57 58 add_settings_field("shortcode-notice", __('Recommended Plugin:', 'envy-notifs'), "envy_notifs_shortcode_notice_display", "envy_notifs_general_options", "content_section"); 59 60 register_setting("content_section", "new_settings"); 61 62 // Social Options 63 add_settings_section("social_section", __('Social Options', 'envy-notifs'), null, "envy_notifs_social_options"); 64 65 add_settings_field("notifs-bar-social-title", __('Social Title', 'envy-notifs'), "envy_notifs_social_title_display", "envy_notifs_social_options", "social_section"); 66 67 add_settings_field("facebook-display", __('Facebook Link:', 'envy-notifs'), "envy_notifs_social_facebook_display", "envy_notifs_social_options", "social_section"); 68 add_settings_field("twitter-display", __('Twitter Link:', 'envy-notifs'), "envy_notifs_social_twitter_display", "envy_notifs_social_options", "social_section"); 69 70 add_settings_field("instagram-display", __('Instagram Link:', 'envy-notifs'), "envy_notifs_social_instagram_display", "envy_notifs_social_options", "social_section"); 71 72 add_settings_field("linkedin-display", __('Linkedin Link:', 'envy-notifs'), "envy_notifs_social_linkedin_display", "envy_notifs_social_options", "social_section"); 73 74 add_settings_field("skype-display", __('Skype Link:', 'envy-notifs'), "envy_notifs_social_skype_display", "envy_notifs_social_options", "social_section"); 75 76 register_setting("social_section", "new_settings"); 57 77 58 78 // Color Options 59 add_settings_section("color_section", __('Color Options', 'envy-notifs'), null, "plugin_options"); 60 61 add_settings_field("notifs-bar-bg-color", __('Add Notifs Bar Background Color', 'envy-notifs'), "envy_notifs_bg_color_display", "plugin_options", "color_section"); 62 63 add_settings_field("notifs-bar-font-color", __('Add Notifs Bar Font Color', 'envy-notifs'), "envy_notifs_font_color_display", "plugin_options", "color_section"); 64 65 add_settings_field("notifs-btn-bg-color", __('Add Notifs Button Background Color', 'envy-notifs'), "envy_notifs_btn_bg_color_display", "plugin_options", "color_section"); 66 67 add_settings_field("notifs-btn-bg-hover-color", __('Add Notifs Button Background Hover Color', 'envy-notifs'), "envy_notifs_btn_bg_hover_color_display", "plugin_options", "color_section"); 68 69 add_settings_field("notifs-btn-font-color", __('Add Notifs Button Font Color', 'envy-notifs'), "envy_notifs_btn_font_color_display", "plugin_options", "color_section"); 70 71 add_settings_field("notifs-btn-font-hover-color", __('Add Notifs Button Font Hover Color', 'envy-notifs'), "envy_notifs_btn_font_hover_color_display", "plugin_options", "color_section"); 72 73 add_settings_field("notifs-icon-bg-color", __('Add Notifs Close Icon Background Color', 'envy-notifs'), "envy_notifs_icon_bg_color_display", "plugin_options", "color_section"); 74 75 add_settings_field("notifs-icon-bg-hover-color", __('Add Notifs Close Icon Background Hover Color', 'envy-notifs'), "envy_notifs_icon_bg_hover_color_display", "plugin_options", "color_section"); 76 77 add_settings_field("notifs-icon-font-color", __('Add Notifs Close Icon Font Color', 'envy-notifs'), "envy_notifs_icon_font_color_display", "plugin_options", "color_section"); 78 79 add_settings_field("notifs-icon-font-hover-color", __('Add Notifs Close Icon Font Hover Color', 'envy-notifs'), "envy_notifs_icon_font_hover_color_display", "plugin_options", "color_section"); 79 add_settings_section("color_section", __('Color Options', 'envy-notifs'), null, "envy_notifs_color_options"); 80 81 add_settings_field("notifs-bar-bg-color", __('Notifs Bar Background Color', 'envy-notifs'), "envy_notifs_bg_color_display", "envy_notifs_color_options", "color_section"); 82 83 add_settings_field("notifs-bar-font-color", __('Notifs Bar Font Color', 'envy-notifs'), "envy_notifs_font_color_display", "envy_notifs_color_options", "color_section"); 84 85 add_settings_field("notifs-btn-bg-color", __('Notifs Button Background Color', 'envy-notifs'), "envy_notifs_btn_bg_color_display", "envy_notifs_color_options", "color_section"); 86 87 add_settings_field("notifs-btn-bg-hover-color", __('Notifs Button Background Hover Color', 'envy-notifs'), "envy_notifs_btn_bg_hover_color_display", "envy_notifs_color_options", "color_section"); 88 89 add_settings_field("notifs-btn-font-color", __('Notifs Button Font Color', 'envy-notifs'), "envy_notifs_btn_font_color_display", "envy_notifs_color_options", "color_section"); 90 91 add_settings_field("notifs-btn-font-hover-color", __('Notifs Button Font Hover Color', 'envy-notifs'), "envy_notifs_btn_font_hover_color_display", "envy_notifs_color_options", "color_section"); 92 93 add_settings_field("notifs-icon-bg-color", __('Notifs Close Icon Background Color', 'envy-notifs'), "envy_notifs_icon_bg_color_display", "envy_notifs_color_options", "color_section"); 94 95 add_settings_field("notifs-icon-bg-hover-color", __('Notifs Close Icon Background Hover Color', 'envy-notifs'), "envy_notifs_icon_bg_hover_color_display", "envy_notifs_color_options", "color_section"); 96 97 add_settings_field("notifs-icon-font-color", __('Notifs Close Icon Font Color', 'envy-notifs'), "envy_notifs_icon_font_color_display", "envy_notifs_color_options", "color_section"); 98 99 add_settings_field("notifs-icon-font-hover-color", __('Notifs Close Icon Font Hover Color', 'envy-notifs'), "envy_notifs_icon_font_hover_color_display", "envy_notifs_color_options", "color_section"); 100 101 add_settings_field("notifs-open-icon-bg-color", __('Notifs Open Icon Background Color', 'envy-notifs'), "envy_notifs_open_icon_bg_color_display", "envy_notifs_color_options", "color_section"); 102 103 add_settings_field("notifs-open-icon-font-color", __('Notifs Open Icon Font Color', 'envy-notifs'), "envy_notifs_open_icon_font_color_display", "envy_notifs_color_options", "color_section"); 80 104 81 105 register_setting("color_section", "new_settings"); … … 88 112 // Position Display 89 113 function envy_notifs_position_function_display() { 90 $notifs_bar_position 114 $notifs_bar_position = (array)get_option('new_settings'); 91 115 if( isset( $notifs_bar_position['select-global-position'] ) ) : 92 $notifs_bar_position_new 116 $notifs_bar_position_new = $notifs_bar_position['select-global-position']; 93 117 endif; ?> 94 118 <select name="new_settings[select-global-position]"> … … 105 129 // Individual Display 106 130 function envy_notifs_position_single_function_display() { 107 $notifs_bar_single 131 $notifs_bar_single = (array)get_option('new_settings'); 108 132 if( isset( $notifs_bar_single['select-single-position'] ) ) : 109 $notifs_bar_single_new =$notifs_bar_single['select-single-position'];133 $notifs_bar_single_new = $notifs_bar_single['select-single-position']; 110 134 endif; ?> 111 135 <select name="new_settings[select-single-position]"> … … 117 141 <?php } 118 142 119 // Display notice message 120 function envy_notifs_post_notice_display() { 121 } 122 143 // Left & Right Sidebar Position Display 144 function envy_notifs_left_right_position_display() { 145 $notifs_left_right_position = (array)get_option('new_settings'); 146 if( isset( $notifs_left_right_position['select-left-right-position'] ) ) : 147 $notifs_left_right_position_new = $notifs_left_right_position['select-left-right-position']; 148 endif; ?> 149 <select name="new_settings[select-left-right-position]"> 150 <option value="inside-window" <?php if(isset($notifs_left_right_position_new)) : selected($notifs_left_right_position_new, "inside-window"); endif; ?>><?php echo esc_html__('Inside Window', 'envy-notifs'); ?></option> 151 <option value="outside-window" <?php if(isset($notifs_left_right_position_new)) : selected($notifs_left_right_position_new, "outside-window"); endif; ?>><?php echo esc_html__('Ouside Window', 'envy-notifs'); ?></option> 152 </select> 153 <?php } 154 155 // Mobile Display 123 156 function envy_notifs_mobile_display() { 124 $notifs_bar_mobile_hide 157 $notifs_bar_mobile_hide = (array)get_option('new_settings'); 125 158 if( isset( $notifs_bar_mobile_hide['notifs-mobile-hide'] ) ) : 126 $notifs_bar_mobile_hide_new 159 $notifs_bar_mobile_hide_new = $notifs_bar_mobile_hide['notifs-mobile-hide']; 127 160 else: 128 161 $notifs_bar_mobile_hide_new = ''; … … 133 166 <?php } 134 167 168 // Timezone Display 135 169 function envy_notifs_date_notice_display() { 136 170 echo __('Before set your date & time, you should set your timezone from'.'<br>'.'<b><a href="options-general.php">Settings - General - Timezone - Set your country</b></a>', 'envy-notifs'); 137 171 } 138 172 139 // Date Display173 // Start Date Display 140 174 function envy_notifs_start_date_function_display() { 141 $notifs_bar_start_date 175 $notifs_bar_start_date = (array)get_option('new_settings'); 142 176 if( isset( $notifs_bar_start_date['select-start-date'] ) ) : 143 $notifs_bar_start_date_new = $notifs_bar_start_date['select-start-date']; 144 endif; ?> 145 <input type="date" id="startDate" name="<?php echo esc_attr( 'new_settings[select-start-date]' ); ?>" value="<?php if( isset( $notifs_bar_start_date_new ) ) : echo esc_attr( $notifs_bar_start_date_new ); endif; ?>" class="regular-text"> 146 <?php } 147 177 $notifs_bar_start_date_new = $notifs_bar_start_date['select-start-date']; 178 endif; ?> 179 <input type="date" id="startDate" name="<?php echo esc_attr( 'new_settings[select-start-date]' ); ?>" value="<?php if( isset( $notifs_bar_start_date_new ) ) : echo esc_attr( $notifs_bar_start_date_new ); endif; ?>" class="regular-text"><br/><br/> 180 <?php echo esc_html__("N.B: Before Today's Date Is Not Valid", "envy-notifs"); ?> 181 <?php } 182 183 // End Date Display 148 184 function envy_notifs_end_date_function_display() { 149 $notifs_bar_end_date 185 $notifs_bar_end_date = (array)get_option('new_settings'); 150 186 if( isset( $notifs_bar_end_date['select-end-date'] ) ) : 151 $notifs_bar_end_date_new = $notifs_bar_end_date['select-end-date']; 152 endif; ?> 153 <input type="date" id="endDate" name="<?php echo esc_attr( 'new_settings[select-end-date]' ); ?>" value="<?php if( isset( $notifs_bar_end_date_new ) ) : echo esc_attr( $notifs_bar_end_date_new ); endif; ?>" class="regular-text"> 154 <?php } 155 156 // Time Display 187 $notifs_bar_end_date_new = $notifs_bar_end_date['select-end-date']; 188 endif; ?> 189 <input type="date" id="endDate" name="<?php echo esc_attr( 'new_settings[select-end-date]' ); ?>" value="<?php if( isset( $notifs_bar_end_date_new ) ) : echo esc_attr( $notifs_bar_end_date_new ); endif; ?>" class="regular-text"><br/><br/> 190 <?php echo esc_html__("N.B: Before Today's Date Is Not Valid", "envy-notifs"); ?> 191 <?php } 192 193 // Start Time Display 157 194 function envy_notifs_start_time_function_display() { 158 $notifs_bar_start_time 195 $notifs_bar_start_time = (array)get_option('new_settings'); 159 196 if( isset( $notifs_bar_start_time['select-start-time'] ) ) : 160 $notifs_bar_start_time_new 197 $notifs_bar_start_time_new = $notifs_bar_start_time['select-start-time']; 161 198 endif; ?> 162 199 <input type="time" name="<?php echo esc_attr( 'new_settings[select-start-time]' ); ?>" value="<?php if( isset( $notifs_bar_start_time_new ) ) : echo esc_attr( $notifs_bar_start_time_new ); endif; ?>" class="regular-text"><br/><br/> <?php echo esc_html__ ('N.B: Select Specific Time as Your Local Time.', 'envy-notifs'); ?> 163 200 <?php } 164 201 202 // End Time Display 165 203 function envy_notifs_end_time_function_display() { 166 $notifs_bar_end_time 204 $notifs_bar_end_time = (array)get_option('new_settings'); 167 205 if( isset( $notifs_bar_end_time['select-end-time'] ) ) : 168 $notifs_bar_end_time_new 206 $notifs_bar_end_time_new = $notifs_bar_end_time['select-end-time']; 169 207 endif; ?> 170 208 <input type="time" name="<?php echo esc_attr('new_settings[select-end-time]'); ?>" value="<?php if( isset( $notifs_bar_end_time_new ) ) : echo esc_attr( $notifs_bar_end_time_new ); endif; ?>" class="regular-text"><br/><br/> <?php echo esc_html__ ('N.B: Select Specific Time as Your Local Time.', 'envy-notifs'); ?> … … 173 211 // Scroll Display 174 212 function envy_notifs_scroll_display() { 175 $notifs_bar_scroll_show 213 $notifs_bar_scroll_show = (array)get_option('new_settings'); 176 214 if( isset( $notifs_bar_scroll_show['notifs-scroll-show'] ) ) : 177 $notifs_bar_scroll_show_new= $notifs_bar_scroll_show['notifs-scroll-show'];215 $notifs_bar_scroll_show_new = $notifs_bar_scroll_show['notifs-scroll-show']; 178 216 else: 179 $notifs_bar_scroll_show_new = '';217 $notifs_bar_scroll_show_new = ''; 180 218 endif; 181 219 echo __('<input type="checkbox" name="new_settings[notifs-scroll-show]" value="1" '.checked(1, $notifs_bar_scroll_show_new, false).' >', 'envy-notifs').__('Enable', 'envy-notifs'); … … 185 223 // Font Size Display 186 224 function envy_notifs_font_size_display() { 187 $notifs_bar_font_size 225 $notifs_bar_font_size = (array)get_option('new_settings'); 188 226 if( isset($notifs_bar_font_size['notifs-bar-font-size']) ) : 189 $notifs_bar_font_size_new 190 endif; ?> 191 <input type="text" placeholder=" 18px" name="<?php echo esc_attr( 'new_settings[notifs-bar-font-size]' ); ?>" value="<?php if( isset( $notifs_bar_font_size_new ) ) : echo esc_attr( $notifs_bar_font_size_new ); else : echo esc_html__('18px', 'envy-notifs'); endif; ?>" class="regular-text">227 $notifs_bar_font_size_new = $notifs_bar_font_size['notifs-bar-font-size']; 228 endif; ?> 229 <input type="text" placeholder="20px" name="<?php echo esc_attr( 'new_settings[notifs-bar-font-size]' ); ?>" value="<?php if( isset( $notifs_bar_font_size_new ) ) : echo esc_attr( $notifs_bar_font_size_new ); else : echo esc_html__('20px', 'envy-notifs'); endif; ?>" class="regular-text"> 192 230 <?php } 193 231 194 232 // Font Weight Display 195 233 function envy_notifs_font_weight_display() { 196 $notifs_bar_font_weight 234 $notifs_bar_font_weight = (array)get_option('new_settings'); 197 235 if( isset($notifs_bar_font_weight['notifs-bar-font-weight']) ) : 198 $notifs_bar_font_weight_new 199 endif; ?> 200 <input type="text" placeholder=" 400" name="<?php echo esc_attr( 'new_settings[notifs-bar-font-weight]' ); ?>" value="<?php if( isset( $notifs_bar_font_weight_new ) ) : echo esc_attr( $notifs_bar_font_weight_new ); else : echo esc_html__('400', 'envy-notifs'); endif; ?>" class="regular-text">236 $notifs_bar_font_weight_new = $notifs_bar_font_weight['notifs-bar-font-weight']; 237 endif; ?> 238 <input type="text" placeholder="600" name="<?php echo esc_attr( 'new_settings[notifs-bar-font-weight]' ); ?>" value="<?php if( isset( $notifs_bar_font_weight_new ) ) : echo esc_attr( $notifs_bar_font_weight_new ); else : echo esc_html__('600', 'envy-notifs'); endif; ?>" class="regular-text"> 201 239 <?php } 202 240 203 241 // Button Display 204 242 function envy_notifs_btn_display() { 205 $notifs_bar_btn_text 243 $notifs_bar_btn_text = (array)get_option('new_settings'); 206 244 if( isset( $notifs_bar_btn_text['notifs-bar-btn-text'] ) ) : 207 $notifs_bar_btn_text_new 245 $notifs_bar_btn_text_new = $notifs_bar_btn_text['notifs-bar-btn-text']; 208 246 endif; ?> 209 247 <input type="text" placeholder="Read More" name="<?php echo esc_attr( 'new_settings[notifs-bar-btn-text]' ); ?>"value="<?php if( isset( $notifs_bar_btn_text_new ) ) : echo esc_attr( $notifs_bar_btn_text_new ); else : echo esc_html__('Read More', 'envy-notifs'); endif; ?>" class="regular-text"> 210 248 <?php } 211 249 250 // Button Border Display 212 251 function envy_notifs_btn_border_display() { 213 $notifs_bar_btn_border 252 $notifs_bar_btn_border = (array)get_option('new_settings'); 214 253 if( isset( $notifs_bar_btn_border['notifs-bar-btn-border'] ) ) : 215 $notifs_bar_btn_border_new 216 endif; ?> 217 <input type="text" placeholder=" 5%" name="<?php echo esc_attr( 'new_settings[notifs-bar-btn-border]' ); ?>" value="<?php if( isset( $notifs_bar_btn_border_new ) ) : echo esc_attr( $notifs_bar_btn_border_new ); else : echo esc_html__('5%', 'envy-notifs'); endif; ?>" class="regular-text">254 $notifs_bar_btn_border_new = $notifs_bar_btn_border['notifs-bar-btn-border']; 255 endif; ?> 256 <input type="text" placeholder="4px" name="<?php echo esc_attr( 'new_settings[notifs-bar-btn-border]' ); ?>" value="<?php if( isset( $notifs_bar_btn_border_new ) ) : echo esc_attr( $notifs_bar_btn_border_new ); else : echo esc_html__('4px', 'envy-notifs'); endif; ?>" class="regular-text"> 218 257 <?php } 219 258 220 259 // Icon Display 221 260 function envy_notifs_icon_display() { 222 $notifs_bar_icon_class 261 $notifs_bar_icon_class = (array)get_option('new_settings'); 223 262 if( isset( $notifs_bar_icon_class['notifs-bar-icon-class'] ) ) : 224 $notifs_bar_icon_class_new 263 $notifs_bar_icon_class_new = $notifs_bar_icon_class['notifs-bar-icon-class']; 225 264 endif; ?> 226 <input type="text" placeholder="fa fa-close" name="<?php echo esc_attr( 'new_settings[notifs-bar-icon-class]' ); ?>" value="<?php if( isset( $notifs_bar_icon_class_new ) ) : echo esc_attr( $notifs_bar_icon_class_new ); else : echo esc_html__('fa fa-close'); endif; ?>" class="regular-text"> 227 <?php } 228 265 <input type="text" placeholder="fa fa-times" name="<?php echo esc_attr( 'new_settings[notifs-bar-icon-class]' ); ?>" value="<?php if( isset( $notifs_bar_icon_class_new ) ) : echo esc_attr( $notifs_bar_icon_class_new ); else : echo esc_html__('fa fa-times'); endif; ?>" class="regular-text"> 266 <?php } 267 268 // Icon Size Display 229 269 function envy_notifs_icon_size_display() { 230 $notifs_bar_icon_size 270 $notifs_bar_icon_size = (array)get_option('new_settings'); 231 271 if( isset( $notifs_bar_icon_size['notifs-bar-icon-size'] ) ) : 232 $notifs_bar_icon_size_new= $notifs_bar_icon_size['notifs-bar-icon-size'];272 $notifs_bar_icon_size_new = $notifs_bar_icon_size['notifs-bar-icon-size']; 233 273 endif; ?> 234 <input type="text" placeholder="18px" name="<?php echo esc_attr( 'new_settings[notifs-bar-icon-size]' ); ?>" value="<?php if( isset( $notifs_bar_icon_size_new ) ) : echo esc_attr( $notifs_bar_icon_size_new ); else : echo esc_html__('18px', 'envy-notifs'); endif; ?>" class="regular-text">' 235 <?php } 236 274 <input type="text" placeholder="15px" name="<?php echo esc_attr( 'new_settings[notifs-bar-icon-size]' ); ?>" value="<?php if( isset( $notifs_bar_icon_size_new ) ) : echo esc_attr( $notifs_bar_icon_size_new ); else : echo esc_html__('15px', 'envy-notifs'); endif; ?>" class="regular-text">' 275 <?php } 276 277 // Icon Border Display 237 278 function envy_notifs_icon_border_display() { 238 $notifs_bar_icon_border 279 $notifs_bar_icon_border = (array)get_option('new_settings'); 239 280 if( isset( $notifs_bar_icon_border['notifs-bar-icon-border'] ) ) : 240 $notifs_bar_icon_border_new = $notifs_bar_icon_border['notifs-bar-icon-border']; 241 endif; ?> 242 <input type="text" placeholder="50%" name="<?php echo esc_attr( 'new_settings[notifs-bar-icon-border]' ); ?>" value="<?php if( isset( $notifs_bar_icon_border_new ) ) : echo esc_attr( $notifs_bar_icon_border_new ); else : echo esc_html__('50%', 'envy-notifs'); endif; ?>" class="regular-text"> 243 <?php } 244 245 // Color Display 281 $notifs_bar_icon_border_new = $notifs_bar_icon_border['notifs-bar-icon-border']; 282 endif; ?> 283 <input type="text" placeholder="4px" name="<?php echo esc_attr( 'new_settings[notifs-bar-icon-border]' ); ?>" value="<?php if( isset( $notifs_bar_icon_border_new ) ) : echo esc_attr( $notifs_bar_icon_border_new ); else : echo esc_html__('4px', 'envy-notifs'); endif; ?>" class="regular-text"> 284 <?php } 285 286 // Subscriber Title Display 287 function envy_notifs_subscribe_title_display() { 288 $notifs_bar_subscribe_title = (array)get_option('new_settings'); 289 if( isset( $notifs_bar_subscribe_title['notifs-bar-subscribe-title'] ) ) : 290 $notifs_bar_subscribe_title_new = $notifs_bar_subscribe_title['notifs-bar-subscribe-title']; 291 endif; ?> 292 <input type="text" placeholder="Write title here..." name="<?php echo esc_attr( 'new_settings[notifs-bar-subscribe-title]' ); ?>" value="<?php if( isset( $notifs_bar_subscribe_title_new ) ) : echo esc_attr( $notifs_bar_subscribe_title_new ); else : echo esc_html__('Subscribe:', 'envy-notifs'); endif; ?>" class="regular-text"> 293 <?php } 294 295 // Subscriber Display 296 function envy_notifs_subscribe_display() { 297 $notifs_bar_subscribe = (array)get_option('new_settings'); 298 if( isset( $notifs_bar_subscribe['notifs-bar-subscribe'] ) ) : 299 $notifs_bar_subscribe_new = $notifs_bar_subscribe['notifs-bar-subscribe']; 300 endif; ?> 301 <input type="text" placeholder="Write shortcode here..." name="<?php echo esc_attr( 'new_settings[notifs-bar-subscribe]' ); ?>" value="<?php if( isset( $notifs_bar_subscribe_new ) ) : echo esc_attr( $notifs_bar_subscribe_new ); endif; ?>" class="regular-text"> 302 <?php } 303 304 // Subscriber Notice Display 305 function envy_notifs_shortcode_notice_display() { 306 echo __('We recommended to use Mailchimp for WordPress Plugin For Subsrcibe'.'<br>'.'<b><a href="https://wordpress.org/plugins/mailchimp-for-wp">MC4WP: Mailchimp for WordPress</b></a>', 'envy-notifs'); 307 } 308 309 // Social Title Display 310 function envy_notifs_social_title_display() { 311 $notifs_bar_social_title = (array)get_option('new_settings'); 312 if( isset( $notifs_bar_social_title['notifs-bar-social-title'] ) ) : 313 $notifs_bar_social_title_new = $notifs_bar_social_title['notifs-bar-social-title']; 314 endif; ?> 315 <input type="text" placeholder="Write title here..." name="<?php echo esc_attr( 'new_settings[notifs-bar-social-title]' ); ?>" value="<?php if( isset( $notifs_bar_social_title_new ) ) : echo esc_attr( $notifs_bar_social_title_new ); endif; ?>" class="regular-text"> 316 <?php } 317 318 function envy_notifs_social_facebook_display() { 319 $notifs_bar_social_facebook = (array)get_option('new_settings'); 320 if( isset( $notifs_bar_social_facebook['facebook-display'] ) ) : 321 $notifs_bar_social_facebook_new = $notifs_bar_social_facebook['facebook-display']; 322 endif; ?> 323 <input type="text" placeholder="Write social link here..." name="<?php echo esc_attr( 'new_settings[facebook-display]' ); ?>" value="<?php if( isset( $notifs_bar_social_facebook_new ) ) : echo esc_attr( $notifs_bar_social_facebook_new ); endif; ?>" class="regular-text"> 324 <?php } 325 326 function envy_notifs_social_twitter_display() { 327 $notifs_bar_social_twitter = (array)get_option('new_settings'); 328 if( isset( $notifs_bar_social_twitter['twitter-display'] ) ) : 329 $notifs_bar_social_twitter_new = $notifs_bar_social_twitter['twitter-display']; 330 endif; ?> 331 <input type="text" placeholder="Write social link here..." name="<?php echo esc_attr( 'new_settings[twitter-display]' ); ?>" value="<?php if( isset( $notifs_bar_social_twitter_new ) ) : echo esc_attr( $notifs_bar_social_twitter_new ); endif; ?>" class="regular-text"> 332 <?php } 333 334 function envy_notifs_social_instagram_display() { 335 $notifs_bar_social_instagram = (array)get_option('new_settings'); 336 if( isset( $notifs_bar_social_instagram['instagram-display'] ) ) : 337 $notifs_bar_social_instagram_new = $notifs_bar_social_instagram['instagram-display']; 338 endif; ?> 339 <input type="text" placeholder="Write social link here..." name="<?php echo esc_attr( 'new_settings[instagram-display]' ); ?>" value="<?php if( isset( $notifs_bar_social_instagram_new ) ) : echo esc_attr( $notifs_bar_social_instagram_new ); endif; ?>" class="regular-text"> 340 <?php } 341 342 function envy_notifs_social_linkedin_display() { 343 $notifs_bar_social_linkedin = (array)get_option('new_settings'); 344 if( isset( $notifs_bar_social_linkedin['linkedin-display'] ) ) : 345 $notifs_bar_social_linkedin_new = $notifs_bar_social_linkedin['linkedin-display']; 346 endif; ?> 347 <input type="text" placeholder="Write social link here..." name="<?php echo esc_attr( 'new_settings[linkedin-display]' ); ?>" value="<?php if( isset( $notifs_bar_social_linkedin_new ) ) : echo esc_attr( $notifs_bar_social_linkedin_new ); endif; ?>" class="regular-text"> 348 <?php } 349 350 function envy_notifs_social_skype_display() { 351 $notifs_bar_social_skype = (array)get_option('new_settings'); 352 if( isset( $notifs_bar_social_skype['skype-display'] ) ) : 353 $notifs_bar_social_skype_new = $notifs_bar_social_skype['skype-display']; 354 endif; ?> 355 <input type="text" placeholder="Write social link here..." name="<?php echo esc_attr( 'new_settings[skype-display]' ); ?>" value="<?php if( isset( $notifs_bar_social_skype_new ) ) : echo esc_attr( $notifs_bar_social_skype_new ); endif; ?>" class="regular-text"> 356 <?php } 357 358 // Background Color Display 246 359 function envy_notifs_bg_color_display() { 247 $notifs_bar_bg_color 360 $notifs_bar_bg_color = (array)get_option('new_settings'); 248 361 if( isset( $notifs_bar_bg_color['notifs-bar-bg-color'] ) ) : 249 $notifs_bar_bg_color_new = $notifs_bar_bg_color['notifs-bar-bg-color']; 250 endif; ?> 251 <input type="color" placeholder="#5B5BFF" name="<?php echo esc_attr( 'new_settings[notifs-bar-bg-color]' ); ?>" value="<?php if( isset( $notifs_bar_bg_color_new ) ) : echo esc_attr( $notifs_bar_bg_color_new ); else : echo esc_html__('#5B5BFF'); endif; ?>" class="regular-text"> 252 <?php } 253 362 $notifs_bar_bg_color_new = $notifs_bar_bg_color['notifs-bar-bg-color']; 363 endif; ?> 364 <input type="color" placeholder="#DD3333" name="<?php echo esc_attr( 'new_settings[notifs-bar-bg-color]' ); ?>" value="<?php if( isset( $notifs_bar_bg_color_new ) ) : echo esc_attr( $notifs_bar_bg_color_new ); else : echo esc_html__('#DD3333'); endif; ?>" class="regular-text"> 365 <?php } 366 367 // Font Color Display 254 368 function envy_notifs_font_color_display() { 255 $notifs_bar_font_color 369 $notifs_bar_font_color = (array)get_option('new_settings'); 256 370 if( isset( $notifs_bar_font_color['notifs-bar-font-color'] ) ) : 257 $notifs_bar_font_color_new 371 $notifs_bar_font_color_new = $notifs_bar_font_color['notifs-bar-font-color']; 258 372 endif; ?> 259 373 <input type="color" placeholder="#FFFFFF" name="<?php echo esc_attr( 'new_settings[notifs-bar-font-color]' ); ?>" value="<?php if( isset( $notifs_bar_font_color_new ) ) : echo esc_attr( $notifs_bar_font_color_new ); else : echo esc_html__('#FFFFFF'); endif; ?>" class="regular-text"> 260 374 <?php } 261 375 376 // Button Background Color Display 262 377 function envy_notifs_btn_bg_color_display() { 263 $notifs_btn_bg_color 378 $notifs_btn_bg_color = (array)get_option('new_settings'); 264 379 if( isset( $notifs_btn_bg_color['notifs-btn-bg-color'] ) ) : 265 $notifs_btn_bg_color_new = $notifs_btn_bg_color['notifs-btn-bg-color']; 266 endif; ?> 267 <input type="color" placeholder="#DD3333" name="<?php echo esc_attr( 'new_settings[notifs-btn-bg-color]' ); ?>" value="<?php if( isset( $notifs_btn_bg_color_new ) ) : echo esc_attr( $notifs_btn_bg_color_new ); else : echo esc_html__('#DD3333'); endif; ?>" class="regular-text"> 268 <?php } 269 380 $notifs_btn_bg_color_new = $notifs_btn_bg_color['notifs-btn-bg-color']; 381 endif; ?> 382 <input type="color" placeholder="#0000FF" name="<?php echo esc_attr( 'new_settings[notifs-btn-bg-color]' ); ?>" value="<?php if( isset( $notifs_btn_bg_color_new ) ) : echo esc_attr( $notifs_btn_bg_color_new ); else : echo esc_html__('#0000FF'); endif; ?>" class="regular-text"> 383 <?php } 384 385 // Button Background Hover Color Display 270 386 function envy_notifs_btn_bg_hover_color_display() { 271 $notifs_btn_bg_hover_color 387 $notifs_btn_bg_hover_color = (array)get_option('new_settings'); 272 388 if( isset( $notifs_btn_bg_hover_color['notifs-btn-bg-hover-color'] ) ) : 273 $notifs_btn_bg_hover_color_new = $notifs_btn_bg_hover_color['notifs-btn-bg-hover-color']; 274 endif; ?> 275 <input type="color" placeholder="#FA7035" name="<?php echo esc_attr( 'new_settings[notifs-btn-bg-hover-color]' ); ?>" value="<?php if( isset( $notifs_btn_bg_hover_color_new ) ) : echo esc_attr( $notifs_btn_bg_hover_color_new ); else : echo esc_html__('#FA7035'); endif; ?>" class="regular-text"> 276 <?php } 277 389 $notifs_btn_bg_hover_color_new = $notifs_btn_bg_hover_color['notifs-btn-bg-hover-color']; 390 endif; ?> 391 <input type="color" placeholder="#FFFFFF" name="<?php echo esc_attr( 'new_settings[notifs-btn-bg-hover-color]' ); ?>" value="<?php if( isset( $notifs_btn_bg_hover_color_new ) ) : echo esc_attr( $notifs_btn_bg_hover_color_new ); else : echo esc_html__('#FFFFFF'); endif; ?>" class="regular-text"> 392 <?php } 393 394 // Button Font Color Display 278 395 function envy_notifs_btn_font_color_display() { 279 $notifs_btn_font_color 396 $notifs_btn_font_color = (array)get_option('new_settings'); 280 397 if( isset( $notifs_btn_font_color['notifs-btn-font-color'] ) ) : 281 $notifs_btn_font_color_new 398 $notifs_btn_font_color_new = $notifs_btn_font_color['notifs-btn-font-color']; 282 399 endif; ?> 283 400 <input type="color" placeholder="#FFFFFF" name="<?php echo esc_attr( 'new_settings[notifs-btn-font-color]' ); ?>" value="<?php if( isset( $notifs_btn_font_color_new ) ) : echo esc_attr( $notifs_btn_font_color_new ); else : echo esc_html__('#FFFFFF'); endif; ?>" class="regular-text"> 284 401 <?php } 285 402 403 // Button Font Hover Color Display 286 404 function envy_notifs_btn_font_hover_color_display() { 287 $notifs_btn_font_hover_color 405 $notifs_btn_font_hover_color = (array)get_option('new_settings'); 288 406 if( isset( $notifs_btn_font_hover_color['notifs-btn-font-hover-color'] ) ) : 289 $notifs_btn_font_hover_color_new = $notifs_btn_font_hover_color['notifs-btn-font-hover-color']; 290 endif; ?> 291 <input type="color" placeholder="#FFFFFF" name="<?php echo esc_attr( 'new_settings[notifs-btn-font-hover-color]' ); ?>" value="<?php if( isset( $notifs_btn_font_hover_color_new ) ) : echo esc_attr( $notifs_btn_font_hover_color_new ); else : echo esc_html__('#FFFFFF'); endif; ?>" class="regular-text"> 292 <?php } 293 407 $notifs_btn_font_hover_color_new = $notifs_btn_font_hover_color['notifs-btn-font-hover-color']; 408 endif; ?> 409 <input type="color" placeholder="#0000FF" name="<?php echo esc_attr( 'new_settings[notifs-btn-font-hover-color]' ); ?>" value="<?php if( isset( $notifs_btn_font_hover_color_new ) ) : echo esc_attr( $notifs_btn_font_hover_color_new ); else : echo esc_html__('#0000FF'); endif; ?>" class="regular-text"> 410 <?php } 411 412 // Icon Background Color Display 294 413 function envy_notifs_icon_bg_color_display() { 295 $notifs_icon_bg_color 414 $notifs_icon_bg_color = (array)get_option('new_settings'); 296 415 if( isset( $notifs_icon_bg_color['notifs-icon-bg-color'] ) ) : 297 $notifs_icon_bg_color_new 416 $notifs_icon_bg_color_new = $notifs_icon_bg_color['notifs-icon-bg-color']; 298 417 endif; ?> 299 418 <input type="color" placeholder="#FFFFFF" name="<?php echo esc_attr( 'new_settings[notifs-icon-bg-color]' ); ?>" value="<?php if( isset( $notifs_icon_bg_color_new ) ) : echo esc_attr( $notifs_icon_bg_color_new ); else : echo esc_html__('#FFFFFF'); endif; ?>" class="regular-text"> 300 419 <?php } 301 420 421 // Icon Background Hover Color Display 302 422 function envy_notifs_icon_bg_hover_color_display() { 303 $notifs_icon_bg_hover_color 423 $notifs_icon_bg_hover_color = (array)get_option('new_settings'); 304 424 if( isset( $notifs_icon_bg_hover_color['notifs-icon-bg-hover-color'] ) ) : 305 $notifs_icon_bg_hover_color_new 425 $notifs_icon_bg_hover_color_new = $notifs_icon_bg_hover_color['notifs-icon-bg-hover-color']; 306 426 endif; ?> 307 427 <input type="color" placeholder="#1A82A4" name="<?php echo esc_attr( 'new_settings[notifs-icon-bg-hover-color]' ); ?>" value="<?php if( isset( $notifs_icon_bg_hover_color_new ) ) : echo esc_attr( $notifs_icon_bg_hover_color_new ); else : echo esc_html__('#1A82A4'); endif; ?>" class="regular-text"> 308 428 <?php } 309 429 430 // Icon Font Color Display 310 431 function envy_notifs_icon_font_color_display() { 311 $notifs_icon_font_color 432 $notifs_icon_font_color = (array)get_option('new_settings'); 312 433 if( isset( $notifs_icon_font_color['notifs-icon-font-color'] ) ) : 313 $notifs_icon_font_color_new 434 $notifs_icon_font_color_new = $notifs_icon_font_color['notifs-icon-font-color']; 314 435 endif; ?> 315 436 <input type="color" placeholder="#1A82A4" name="<?php echo esc_attr( 'new_settings[notifs-icon-font-color]' ); ?>" value="<?php if( isset( $notifs_icon_font_color_new ) ) : echo esc_attr( $notifs_icon_font_color_new ); else : echo esc_html__('#1A82A4'); endif; ?>" class="regular-text"> 316 437 <?php } 317 438 439 // Icon Font Hover Color Display 318 440 function envy_notifs_icon_font_hover_color_display() { 319 $notifs_icon_font_hover_color 441 $notifs_icon_font_hover_color = (array)get_option('new_settings'); 320 442 if( isset( $notifs_icon_font_hover_color['notifs-icon-font-hover-color'] ) ) : 321 $notifs_icon_font_hover_color_new 443 $notifs_icon_font_hover_color_new = $notifs_icon_font_hover_color['notifs-icon-font-hover-color']; 322 444 endif; ?> 323 445 <input type="color" placeholder="#FFFFFF" name="<?php echo esc_attr( 'new_settings[notifs-icon-font-hover-color]' ); ?>" value="<?php if( isset( $notifs_icon_font_hover_color_new ) ) : echo esc_attr( $notifs_icon_font_hover_color_new ); else : echo esc_html__('#FFFFFF'); endif; ?>" class="regular-text"> 446 <?php } 447 448 // Open Icon Background Color Display 449 function envy_notifs_open_icon_bg_color_display() { 450 $notifs_open_icon_bg_color = (array)get_option('new_settings'); 451 if( isset( $notifs_open_icon_bg_color['notifs-open-icon-bg-color'] ) ) : 452 $notifs_open_icon_bg_color_new = $notifs_open_icon_bg_color['notifs-open-icon-bg-color']; 453 endif; ?> 454 <input type="color" placeholder="#dd3333" name="<?php echo esc_attr( 'new_settings[notifs-open-icon-bg-color]' ); ?>" value="<?php if( isset( $notifs_open_icon_bg_color_new ) ) : echo esc_attr( $notifs_open_icon_bg_color_new ); else : echo esc_html__('#dd3333'); endif; ?>" class="regular-text"> 455 <?php } 456 457 // Open Icon Font Color Display 458 function envy_notifs_open_icon_font_color_display() { 459 $notifs_open_icon_font_color = (array)get_option('new_settings'); 460 if( isset( $notifs_open_icon_font_color['notifs-open-icon-font-color'] ) ) : 461 $notifs_open_icon_font_color_new = $notifs_open_icon_font_color['notifs-open-icon-font-color']; 462 endif; ?> 463 <input type="color" placeholder="#FFFFFF" name="<?php echo esc_attr( 'new_settings[notifs-open-icon-font-color]' ); ?>" value="<?php if( isset( $notifs_open_icon_font_color_new ) ) : echo esc_attr( $notifs_open_icon_font_color_new ); else : echo esc_html__('#FFFFFF'); endif; ?>" class="regular-text"> 324 464 <?php } 325 465 326 466 // Global Function 327 467 function envy_notifs_menu() { 328 add_submenu_page("edit.php?post_type=envynotifs", __(' Plugin Settings', 'envy-notifs'), __('Plugin Settings', 'envy-notifs'), "manage_options", "plugin_options", "envy_notifs_plugin_menu_page");468 add_submenu_page("edit.php?post_type=envynotifs", __('Settings', 'envy-notifs'), __('Settings', 'envy-notifs'), "manage_options", "envy_notifs_options", "envy_notifs_plugin_menu_page"); 329 469 } 330 470 … … 333 473 function envy_notifs_plugin_menu_page() { ?> 334 474 <div class="wrap"> 475 <?php settings_errors(); ?> 335 476 <h1><?php echo esc_html__( 'Notification Bar Options', 'envy-notifs' ) ?></h1> 336 477 <form method="POST" action="options.php"> 337 478 <?php 338 do_settings_sections(" plugin_options");479 do_settings_sections("envy_notifs_general_options"); 339 480 settings_fields("position_section"); 340 481 settings_fields("date_section"); 341 settings_fields("button_section"); 482 settings_fields("content_section"); 483 submit_button(); 484 do_settings_sections("envy_notifs_social_options"); 485 settings_fields("social_section"); 486 submit_button(); 487 do_settings_sections("envy_notifs_color_options"); 342 488 settings_fields("color_section"); 343 489 submit_button(); -
envynotifs/trunk/includes/class-envy-notifs-i18n.php
r2405561 r2439289 8 8 * 9 9 * @link https://envytheme.com/ 10 * @since 1. 0.010 * @since 1.1 11 11 * 12 12 * @package Envy_Notifs … … 20 20 * so that it is ready for translation. 21 21 * 22 * @since 1. 0.022 * @since 1.1 23 23 * @package Envy_Notifs 24 24 * @subpackage Envy_Notifs/includes … … 31 31 * Load the plugin text domain for translation. 32 32 * 33 * @since 1. 0.033 * @since 1.1 34 34 */ 35 35 public function load_plugin_textdomain() { … … 43 43 } 44 44 45 46 47 45 } -
envynotifs/trunk/includes/class-envy-notifs-loader.php
r2405561 r2439289 5 5 * 6 6 * @link https://envytheme.com/ 7 * @since 1. 0.07 * @since 1.1 8 8 * 9 9 * @package Envy_Notifs … … 27 27 * The array of actions registered with WordPress. 28 28 * 29 * @since 1. 0.029 * @since 1.1 30 30 * @access protected 31 31 * @var array $actions The actions registered with WordPress to fire when the plugin loads. … … 36 36 * The array of filters registered with WordPress. 37 37 * 38 * @since 1. 0.038 * @since 1.1 39 39 * @access protected 40 40 * @var array $filters The filters registered with WordPress to fire when the plugin loads. … … 45 45 * Initialize the collections used to maintain the actions and filters. 46 46 * 47 * @since 1. 0.047 * @since 1.1 48 48 */ 49 49 public function __construct() { … … 57 57 * Add a new action to the collection to be registered with WordPress. 58 58 * 59 * @since 1. 0.059 * @since 1.1 60 60 * @param string $hook The name of the WordPress action that is being registered. 61 61 * @param object $component A reference to the instance of the object on which the action is defined. … … 71 71 * Add a new filter to the collection to be registered with WordPress. 72 72 * 73 * @since 1. 0.073 * @since 1.1 74 74 * @param string $hook The name of the WordPress filter that is being registered. 75 75 * @param object $component A reference to the instance of the object on which the filter is defined. … … 86 86 * collection. 87 87 * 88 * @since 1. 0.088 * @since 1.1 89 89 * @access private 90 90 * @param array $hooks The collection of hooks that is being registered (that is, actions or filters). … … 113 113 * Register the filters and actions with WordPress. 114 114 * 115 * @since 1. 0.0115 * @since 1.1 116 116 */ 117 117 public function run() { -
envynotifs/trunk/includes/class-envy-notifs-post-options.php
r2405561 r2439289 1 1 <?php 2 2 3 // Post Settings 4 3 // Notifs Bar Button URL Options 5 4 add_action( 'add_meta_boxes', 'envy_notifs_custom_button_box' ); 6 5 … … 8 7 9 8 function envy_notifs_custom_button_box($post){ 10 add_meta_box('envy_notifs_btn_meta_box', __( 'Add Button URL', 'envy-notifs') , 'envy_notifs_custom_element_grid_class_meta_box', 'envynotifs', 'normal' , 'high'); 11 add_meta_box('envY-notifs_btn_meta_box_two', __( 'Description', 'envy-notifs') , 'envy_notifs_custom_element_grid_class_meta_box_two', 'envynotifs', 'normal' , 'high'); 9 add_meta_box('envy_notifs_btn_meta_box', __( 'Notifs Bar Button URL', 'envy-notifs') , 'envy_notifs_custom_element_grid_class_meta_box', 'envynotifs', 'normal' , 'high'); 12 10 } 13 11 … … 21 19 global $post; 22 20 if( isset( $_POST["custom_element_grid_class"] ) ){ 23 //UPDATE: 21 24 22 $envy_notifs_meta_element_class = sanitize_text_field( $_POST['custom_element_grid_class'] ); 25 //END OF UPDATE26 23 27 24 update_post_meta($post->ID, 'custom_element_grid_class_meta_box', $envy_notifs_meta_element_class); 28 //print_r($_POST);29 }30 if( isset( $_POST["custom_element_grid_class_two"] ) ){31 //UPDATE:32 $envy_notifs_meta_element_class_two = sanitize_text_field( $_POST['custom_element_grid_class_two'] );33 //END OF UPDATE34 35 update_post_meta($post->ID, 'custom_element_grid_class_meta_box_two', $envy_notifs_meta_element_class_two);36 //print_r($_POST);37 25 } 38 26 } … … 50 38 51 39 endif; 52 53 if ( ! function_exists( 'envy_notifs_custom_element_grid_class_meta_box_two' ) ) :54 55 function envy_notifs_custom_element_grid_class_meta_box_two($post){56 $meta_element_class_two = get_post_meta($post->ID, 'custom_element_grid_class_meta_box_two', true);57 ?>58 <input type="text" name="custom_element_grid_class_two" id="custom_element_grid_class_two" value="<?php echo esc_attr( $meta_element_class_two ); ?>" class="widefat" ?>59 <?php60 }61 62 endif; -
envynotifs/trunk/includes/class-envy-notifs.php
r2405561 r2439289 8 8 * 9 9 * @link https://envytheme.com/ 10 * @since 1. 0.010 * @since 1.1 11 11 * 12 12 * @package Envy_Notifs … … 23 23 * version of the plugin. 24 24 * 25 * @since 1. 0.025 * @since 1.1 26 26 * @package Envy_Notifs 27 27 * @subpackage Envy_Notifs/includes … … 34 34 * the plugin. 35 35 * 36 * @since 1. 0.036 * @since 1.1 37 37 * @access protected 38 38 * @var Envy_Notifs_Loader $loader Maintains and registers all hooks for the plugin. … … 43 43 * The unique identifier of this plugin. 44 44 * 45 * @since 1. 0.045 * @since 1.1 46 46 * @access protected 47 47 * @var string $plugin_name The string used to uniquely identify this plugin. … … 52 52 * The current version of the plugin. 53 53 * 54 * @since 1. 0.054 * @since 1.1 55 55 * @access protected 56 56 * @var string $version The current version of the plugin. … … 65 65 * the public-facing side of the site. 66 66 * 67 * @since 1. 0.067 * @since 1.1 68 68 */ 69 69 public function __construct() { … … 71 71 $this->version = ENVY_NOTIFS_VERSION; 72 72 } else { 73 $this->version = '1. 0.0';73 $this->version = '1.1'; 74 74 } 75 75 $this->plugin_name = 'envy-notifs'; … … 95 95 * with WordPress. 96 96 * 97 * @since 1. 0.097 * @since 1.1 98 98 * @access private 99 99 */ … … 133 133 * with WordPress. 134 134 * 135 * @since 1. 0.0135 * @since 1.1 136 136 * @access private 137 137 */ … … 148 148 * of the plugin. 149 149 * 150 * @since 1. 0.0150 * @since 1.1 151 151 * @access private 152 152 */ … … 164 164 * of the plugin. 165 165 * 166 * @since 1. 0.0166 * @since 1.1 167 167 * @access private 168 168 */ … … 179 179 * Run the loader to execute all of the hooks with WordPress. 180 180 * 181 * @since 1. 0.0181 * @since 1.1 182 182 */ 183 183 public function run() { … … 189 189 * WordPress and to define internationalization functionality. 190 190 * 191 * @since 1. 0.0191 * @since 1.1 192 192 * @return string The name of the plugin. 193 193 */ … … 199 199 * The reference to the class that orchestrates the hooks with the plugin. 200 200 * 201 * @since 1. 0.0201 * @since 1.1 202 202 * @return Envy_Notifs_Loader Orchestrates the hooks of the plugin. 203 203 */ … … 209 209 * Retrieve the version number of the plugin. 210 210 * 211 * @since 1. 0.0211 * @since 1.1 212 212 * @return string The version number of the plugin. 213 213 */ … … 219 219 220 220 // Register custom post type 221 222 221 function envy_notifs_custom_post() { 223 222 register_post_type( 'envynotifs', array( … … 225 224 'name' => 'EnvyNotifs', 226 225 'all_items' => esc_html__('All Notices', 'envy-notifs'), 227 'add_new_item' => esc_html__('Add New Notice', 'envy-notifs') 226 'add_new_item' => esc_html__('Add New Notice', 'envy-notifs'), 227 'featured_image' => __( 'Background image', 'envy-notifs' ), 228 'set_featured_image' => __( 'Upload Background Image', 'envy-notifs' ), 229 'remove_featured_image' => __( 'Remove Background image', 'envy-notifs' ) 228 230 ), 229 231 230 232 'public' => true, 231 233 'menu_icon' => 'dashicons-bell', 232 'supports' => array( 'title' )234 'supports' => array( 'title', 'editor', 'thumbnail' ) 233 235 234 236 )); -
envynotifs/trunk/languages/envy-notifs.pot
r2405561 r2439289 2 2 msgstr "" 3 3 "Project-Id-Version: EnvyNotifs\n" 4 "POT-Creation-Date: 2020-1 0-15 22:06+0600\n"5 "PO-Revision-Date: 2020-1 0-15 22:06+0600\n"4 "POT-Creation-Date: 2020-11-24 19:18+0600\n" 5 "PO-Revision-Date: 2020-11-24 19:18+0600\n" 6 6 "Last-Translator: \n" 7 7 "Language-Team: EnvyTeam\n" … … 13 13 "X-Poedit-Basepath: ..\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 "X-Poedit-KeywordsList: __;esc_attr;esc_html;esc_html_;esc_html__\n" 15 "X-Poedit-SourceCharset: UTF-8\n" 16 "X-Poedit-KeywordsList: __;esc_attr;esc_html;esc_html__;esc_url\n" 16 17 "X-Poedit-SearchPath-0: .\n" 17 18 18 #: includes/class-envy-notifs-global-options.php: 1019 #: includes/class-envy-notifs-global-options.php:9 19 20 msgid "Position Options" 20 21 msgstr "" 21 22 22 #: includes/class-envy-notifs-global-options.php:1 223 #: includes/class-envy-notifs-global-options.php:11 23 24 msgid "Select Notification Position" 24 25 msgstr "" 25 26 26 #: includes/class-envy-notifs-global-options.php:1 427 #: includes/class-envy-notifs-global-options.php:13 27 28 msgid "Where You Want to Show?" 28 29 msgstr "" 29 30 30 #: includes/class-envy-notifs-global-options.php:16 31 #: includes/class-envy-notifs-global-options.php:15 32 msgid "Left & Right Sidebar Position" 33 msgstr "" 34 35 #: includes/class-envy-notifs-global-options.php:17 31 36 msgid "Notice Hide on Mobile Devices" 32 37 msgstr "" 33 38 34 #: includes/class-envy-notifs-global-options.php:18 35 msgid "N.B: Always Show Latest Notice." 36 msgstr "" 37 38 #: includes/class-envy-notifs-global-options.php:23 39 #: includes/class-envy-notifs-global-options.php:22 39 40 msgid "Date/Time Options" 40 41 msgstr "" 41 42 42 #: includes/class-envy-notifs-global-options.php:2 543 #: includes/class-envy-notifs-global-options.php:24 43 44 msgid "Date/Time Instructions:" 44 45 msgstr "" 45 46 47 #: includes/class-envy-notifs-global-options.php:26 48 msgid "Start Date for Notice" 49 msgstr "" 50 46 51 #: includes/class-envy-notifs-global-options.php:27 47 msgid " Select StartDate for Notice"52 msgid "End Date for Notice" 48 53 msgstr "" 49 54 50 55 #: includes/class-envy-notifs-global-options.php:29 51 msgid "Select End Date for Notice" 52 msgstr "" 53 54 #: includes/class-envy-notifs-global-options.php:31 55 msgid "Select Start Time for Notice" 56 msgstr "" 57 58 #: includes/class-envy-notifs-global-options.php:33 59 msgid "Select End Time for Notice" 60 msgstr "" 61 62 #: includes/class-envy-notifs-global-options.php:38 56 msgid "Start Time for Notice" 57 msgstr "" 58 59 #: includes/class-envy-notifs-global-options.php:30 60 msgid "End Time for Notice" 61 msgstr "" 62 63 #: includes/class-envy-notifs-global-options.php:35 63 64 msgid "Content Options" 64 65 msgstr "" 65 66 66 #: includes/class-envy-notifs-global-options.php: 4067 #: includes/class-envy-notifs-global-options.php:37 67 68 msgid "Notice Scrolling Enabled" 68 69 msgstr "" 69 70 70 #: includes/class-envy-notifs-global-options.php:42 71 msgid "Add Notice Font Size" 72 msgstr "" 73 74 #: includes/class-envy-notifs-global-options.php:44 75 msgid "Add Notice Font Weight" 76 msgstr "" 77 78 #: includes/class-envy-notifs-global-options.php:46 79 msgid "Add Button Text" 80 msgstr "" 81 82 #: includes/class-envy-notifs-global-options.php:48 83 msgid "Add Button Border Radius" 84 msgstr "" 85 86 #: includes/class-envy-notifs-global-options.php:50 87 msgid "Add Icon Font Size" 88 msgstr "" 89 90 #: includes/class-envy-notifs-global-options.php:52 91 msgid "Add Icon Class" 71 #: includes/class-envy-notifs-global-options.php:39 72 msgid "Notice Font Size" 73 msgstr "" 74 75 #: includes/class-envy-notifs-global-options.php:41 76 msgid "Notice Font Weight" 77 msgstr "" 78 79 #: includes/class-envy-notifs-global-options.php:43 80 msgid "Button Text" 81 msgstr "" 82 83 #: includes/class-envy-notifs-global-options.php:45 84 msgid "Button Border Radius" 85 msgstr "" 86 87 #: includes/class-envy-notifs-global-options.php:47 88 msgid "Icon Font Size" 89 msgstr "" 90 91 #: includes/class-envy-notifs-global-options.php:49 92 msgid "Icon Class" 93 msgstr "" 94 95 #: includes/class-envy-notifs-global-options.php:51 96 msgid "Icon Border Radius" 92 97 msgstr "" 93 98 94 99 #: includes/class-envy-notifs-global-options.php:54 95 msgid "Add Icon Border Radius" 96 msgstr "" 97 98 #: includes/class-envy-notifs-global-options.php:59 100 msgid "Subscribe Title" 101 msgstr "" 102 103 #: includes/class-envy-notifs-global-options.php:56 104 msgid "Subscribe Form Shortcode" 105 msgstr "" 106 107 #: includes/class-envy-notifs-global-options.php:58 108 msgid "Recommended Plugin:" 109 msgstr "" 110 111 #: includes/class-envy-notifs-global-options.php:63 112 msgid "Social Options" 113 msgstr "" 114 115 #: includes/class-envy-notifs-global-options.php:65 116 msgid "Social Title" 117 msgstr "" 118 119 #: includes/class-envy-notifs-global-options.php:67 120 msgid "Facebook Link:" 121 msgstr "" 122 123 #: includes/class-envy-notifs-global-options.php:68 124 msgid "Twitter Link:" 125 msgstr "" 126 127 #: includes/class-envy-notifs-global-options.php:70 128 msgid "Instagram Link:" 129 msgstr "" 130 131 #: includes/class-envy-notifs-global-options.php:72 132 msgid "Linkedin Link:" 133 msgstr "" 134 135 #: includes/class-envy-notifs-global-options.php:74 136 msgid "Skype Link:" 137 msgstr "" 138 139 #: includes/class-envy-notifs-global-options.php:79 99 140 msgid "Color Options" 100 141 msgstr "" 101 142 102 #: includes/class-envy-notifs-global-options.php:61 103 msgid "Add Notifs Bar Background Color" 104 msgstr "" 105 106 #: includes/class-envy-notifs-global-options.php:63 107 msgid "Add Notifs Bar Font Color" 108 msgstr "" 109 110 #: includes/class-envy-notifs-global-options.php:65 111 msgid "Add Notifs Button Background Color" 112 msgstr "" 113 114 #: includes/class-envy-notifs-global-options.php:67 115 msgid "Add Notifs Button Background Hover Color" 116 msgstr "" 117 118 #: includes/class-envy-notifs-global-options.php:69 119 msgid "Add Notifs Button Font Color" 120 msgstr "" 121 122 #: includes/class-envy-notifs-global-options.php:71 123 msgid "Add Notifs Button Font Hover Color" 124 msgstr "" 125 126 #: includes/class-envy-notifs-global-options.php:73 127 msgid "Add Notifs Close Icon Background Color" 128 msgstr "" 129 130 #: includes/class-envy-notifs-global-options.php:75 131 msgid "Add Notifs Close Icon Background Hover Color" 132 msgstr "" 133 134 #: includes/class-envy-notifs-global-options.php:77 135 msgid "Add Notifs Close Icon Font Color" 136 msgstr "" 137 138 #: includes/class-envy-notifs-global-options.php:79 139 msgid "Add Notifs Close Icon Font Hover Color" 143 #: includes/class-envy-notifs-global-options.php:81 144 msgid "Notifs Bar Background Color" 145 msgstr "" 146 147 #: includes/class-envy-notifs-global-options.php:83 148 msgid "Notifs Bar Font Color" 149 msgstr "" 150 151 #: includes/class-envy-notifs-global-options.php:85 152 msgid "Notifs Button Background Color" 153 msgstr "" 154 155 #: includes/class-envy-notifs-global-options.php:87 156 msgid "Notifs Button Background Hover Color" 157 msgstr "" 158 159 #: includes/class-envy-notifs-global-options.php:89 160 msgid "Notifs Button Font Color" 161 msgstr "" 162 163 #: includes/class-envy-notifs-global-options.php:91 164 msgid "Notifs Button Font Hover Color" 165 msgstr "" 166 167 #: includes/class-envy-notifs-global-options.php:93 168 msgid "Notifs Close Icon Background Color" 140 169 msgstr "" 141 170 142 171 #: includes/class-envy-notifs-global-options.php:95 172 msgid "Notifs Close Icon Background Hover Color" 173 msgstr "" 174 175 #: includes/class-envy-notifs-global-options.php:97 176 msgid "Notifs Close Icon Font Color" 177 msgstr "" 178 179 #: includes/class-envy-notifs-global-options.php:99 180 msgid "Notifs Close Icon Font Hover Color" 181 msgstr "" 182 183 #: includes/class-envy-notifs-global-options.php:101 184 msgid "Notifs Open Icon Background Color" 185 msgstr "" 186 187 #: includes/class-envy-notifs-global-options.php:103 188 msgid "Notifs Open Icon Font Color" 189 msgstr "" 190 191 #: includes/class-envy-notifs-global-options.php:119 143 192 msgid "None" 144 193 msgstr "" 145 194 146 #: includes/class-envy-notifs-global-options.php: 96195 #: includes/class-envy-notifs-global-options.php:120 147 196 msgid "Top" 148 197 msgstr "" 149 198 150 #: includes/class-envy-notifs-global-options.php: 97199 #: includes/class-envy-notifs-global-options.php:121 151 200 msgid "Bottom" 152 201 msgstr "" 153 202 154 #: includes/class-envy-notifs-global-options.php: 98203 #: includes/class-envy-notifs-global-options.php:122 155 204 msgid "Leftside" 156 205 msgstr "" 157 206 158 #: includes/class-envy-notifs-global-options.php: 99207 #: includes/class-envy-notifs-global-options.php:123 159 208 msgid "Rightside" 160 209 msgstr "" 161 210 162 #: includes/class-envy-notifs-global-options.php:1 00211 #: includes/class-envy-notifs-global-options.php:124 163 212 msgid "Popup" 164 213 msgstr "" 165 214 166 #: includes/class-envy-notifs-global-options.php:1 12215 #: includes/class-envy-notifs-global-options.php:136 167 216 msgid "All" 168 217 msgstr "" 169 218 170 #: includes/class-envy-notifs-global-options.php:1 13219 #: includes/class-envy-notifs-global-options.php:137 171 220 msgid "Home" 172 221 msgstr "" 173 222 174 #: includes/class-envy-notifs-global-options.php:1 14223 #: includes/class-envy-notifs-global-options.php:138 175 224 msgid "Pages" 176 225 msgstr "" 177 226 178 #: includes/class-envy-notifs-global-options.php:1 15227 #: includes/class-envy-notifs-global-options.php:139 179 228 msgid "Posts" 180 229 msgstr "" 181 230 182 #: includes/class-envy-notifs-global-options.php:130 231 #: includes/class-envy-notifs-global-options.php:150 232 msgid "Inside Window" 233 msgstr "" 234 235 #: includes/class-envy-notifs-global-options.php:151 236 msgid "Ouside Window" 237 msgstr "" 238 239 #: includes/class-envy-notifs-global-options.php:164 183 240 msgid "" 184 241 "<input type=\"checkbox\" name=\"new_settings[notifs-mobile-hide]\" value=" … … 186 243 msgstr "" 187 244 188 #: includes/class-envy-notifs-global-options.php:1 30245 #: includes/class-envy-notifs-global-options.php:164 189 246 msgid "Hide" 190 247 msgstr "" 191 248 192 #: includes/class-envy-notifs-global-options.php:1 35249 #: includes/class-envy-notifs-global-options.php:170 193 250 msgid "" 194 251 "Before set your date & time, you should set your timezone from<br><b><a href=" … … 197 254 msgstr "" 198 255 199 #: includes/class-envy-notifs-global-options.php:1 44256 #: includes/class-envy-notifs-global-options.php:179 200 257 msgid "new_settings[select-start-date]" 201 258 msgstr "" 202 259 203 #: includes/class-envy-notifs-global-options.php:152 260 #: includes/class-envy-notifs-global-options.php:180 261 #: includes/class-envy-notifs-global-options.php:190 262 msgid "N.B: Before Today's Date Is Not Valid" 263 msgstr "" 264 265 #: includes/class-envy-notifs-global-options.php:189 204 266 msgid "new_settings[select-end-date]" 205 267 msgstr "" 206 268 207 #: includes/class-envy-notifs-global-options.php:1 61269 #: includes/class-envy-notifs-global-options.php:199 208 270 msgid "new_settings[select-start-time]" 209 271 msgstr "" 210 272 211 #: includes/class-envy-notifs-global-options.php:1 61212 #: includes/class-envy-notifs-global-options.php: 169273 #: includes/class-envy-notifs-global-options.php:199 274 #: includes/class-envy-notifs-global-options.php:208 213 275 msgid "N.B: Select Specific Time as Your Local Time." 214 276 msgstr "" 215 277 216 #: includes/class-envy-notifs-global-options.php: 169278 #: includes/class-envy-notifs-global-options.php:208 217 279 msgid "new_settings[select-end-time]" 218 280 msgstr "" 219 281 220 #: includes/class-envy-notifs-global-options.php: 180282 #: includes/class-envy-notifs-global-options.php:219 221 283 msgid "" 222 284 "<input type=\"checkbox\" name=\"new_settings[notifs-scroll-show]\" value=" … … 224 286 msgstr "" 225 287 226 #: includes/class-envy-notifs-global-options.php: 180288 #: includes/class-envy-notifs-global-options.php:219 227 289 msgid "Enable" 228 290 msgstr "" 229 291 230 #: includes/class-envy-notifs-global-options.php: 190292 #: includes/class-envy-notifs-global-options.php:229 231 293 msgid "new_settings[notifs-bar-font-size]" 232 294 msgstr "" 233 295 234 #: includes/class-envy-notifs-global-options.php:190 235 #: includes/class-envy-notifs-global-options.php:233 236 msgid "18px" 237 msgstr "" 238 239 #: includes/class-envy-notifs-global-options.php:199 296 #: includes/class-envy-notifs-global-options.php:229 297 msgid "20px" 298 msgstr "" 299 300 #: includes/class-envy-notifs-global-options.php:238 240 301 msgid "new_settings[notifs-bar-font-weight]" 241 302 msgstr "" 242 303 243 #: includes/class-envy-notifs-global-options.php: 199244 msgid " 400"245 msgstr "" 246 247 #: includes/class-envy-notifs-global-options.php:2 08304 #: includes/class-envy-notifs-global-options.php:238 305 msgid "600" 306 msgstr "" 307 308 #: includes/class-envy-notifs-global-options.php:247 248 309 msgid "new_settings[notifs-bar-btn-text]" 249 310 msgstr "" 250 311 251 #: includes/class-envy-notifs-global-options.php:208 252 #: public/partials/envy-notifs-public-display.php:157 253 #: public/partials/envy-notifs-public-display.php:278 254 #: public/partials/envy-notifs-public-display.php:477 255 #: public/partials/envy-notifs-public-display.php:591 256 #: public/partials/envy-notifs-public-display.php:715 312 #: includes/class-envy-notifs-global-options.php:247 257 313 msgid "Read More" 258 314 msgstr "" 259 315 260 #: includes/class-envy-notifs-global-options.php:2 16316 #: includes/class-envy-notifs-global-options.php:256 261 317 msgid "new_settings[notifs-bar-btn-border]" 262 318 msgstr "" 263 319 264 #: includes/class-envy-notifs-global-options.php:216 265 msgid "5%" 266 msgstr "" 267 268 #: includes/class-envy-notifs-global-options.php:225 320 #: includes/class-envy-notifs-global-options.php:256 321 #: includes/class-envy-notifs-global-options.php:283 322 msgid "4px" 323 msgstr "" 324 325 #: includes/class-envy-notifs-global-options.php:265 269 326 msgid "new_settings[notifs-bar-icon-class]" 270 327 msgstr "" 271 328 272 #: includes/class-envy-notifs-global-options.php:2 25273 msgid "fa fa- close"274 msgstr "" 275 276 #: includes/class-envy-notifs-global-options.php:2 33329 #: includes/class-envy-notifs-global-options.php:265 330 msgid "fa fa-times" 331 msgstr "" 332 333 #: includes/class-envy-notifs-global-options.php:274 277 334 msgid "new_settings[notifs-bar-icon-size]" 278 335 msgstr "" 279 336 280 #: includes/class-envy-notifs-global-options.php:241 337 #: includes/class-envy-notifs-global-options.php:274 338 msgid "15px" 339 msgstr "" 340 341 #: includes/class-envy-notifs-global-options.php:283 281 342 msgid "new_settings[notifs-bar-icon-border]" 282 343 msgstr "" 283 344 284 #: includes/class-envy-notifs-global-options.php:241 285 msgid "50%" 286 msgstr "" 287 288 #: includes/class-envy-notifs-global-options.php:250 345 #: includes/class-envy-notifs-global-options.php:292 346 msgid "new_settings[notifs-bar-subscribe-title]" 347 msgstr "" 348 349 #: includes/class-envy-notifs-global-options.php:292 350 msgid "Subscribe:" 351 msgstr "" 352 353 #: includes/class-envy-notifs-global-options.php:301 354 msgid "new_settings[notifs-bar-subscribe]" 355 msgstr "" 356 357 #: includes/class-envy-notifs-global-options.php:306 358 msgid "" 359 "We recommended to use Mailchimp for WordPress Plugin For Subsrcibe<br><b><a " 360 "href=\"https://wordpress.org/plugins/mailchimp-for-wp\">MC4WP: Mailchimp for " 361 "WordPress</b></a>" 362 msgstr "" 363 364 #: includes/class-envy-notifs-global-options.php:315 365 msgid "new_settings[notifs-bar-social-title]" 366 msgstr "" 367 368 #: includes/class-envy-notifs-global-options.php:323 369 msgid "new_settings[facebook-display]" 370 msgstr "" 371 372 #: includes/class-envy-notifs-global-options.php:331 373 msgid "new_settings[twitter-display]" 374 msgstr "" 375 376 #: includes/class-envy-notifs-global-options.php:339 377 msgid "new_settings[instagram-display]" 378 msgstr "" 379 380 #: includes/class-envy-notifs-global-options.php:347 381 msgid "new_settings[linkedin-display]" 382 msgstr "" 383 384 #: includes/class-envy-notifs-global-options.php:355 385 msgid "new_settings[skype-display]" 386 msgstr "" 387 388 #: includes/class-envy-notifs-global-options.php:364 289 389 msgid "new_settings[notifs-bar-bg-color]" 290 390 msgstr "" 291 391 292 #: includes/class-envy-notifs-global-options.php: 250392 #: includes/class-envy-notifs-global-options.php:364 293 393 msgid "#5B5BFF" 294 394 msgstr "" 295 395 296 #: includes/class-envy-notifs-global-options.php: 258396 #: includes/class-envy-notifs-global-options.php:373 297 397 msgid "new_settings[notifs-bar-font-color]" 298 398 msgstr "" 299 399 300 #: includes/class-envy-notifs-global-options.php:258 301 #: includes/class-envy-notifs-global-options.php:282 302 #: includes/class-envy-notifs-global-options.php:290 303 #: includes/class-envy-notifs-global-options.php:298 304 #: includes/class-envy-notifs-global-options.php:322 400 #: includes/class-envy-notifs-global-options.php:373 401 #: includes/class-envy-notifs-global-options.php:400 402 #: includes/class-envy-notifs-global-options.php:409 403 #: includes/class-envy-notifs-global-options.php:418 404 #: includes/class-envy-notifs-global-options.php:445 405 #: includes/class-envy-notifs-global-options.php:463 305 406 msgid "#FFFFFF" 306 407 msgstr "" 307 408 308 #: includes/class-envy-notifs-global-options.php: 266409 #: includes/class-envy-notifs-global-options.php:382 309 410 msgid "new_settings[notifs-btn-bg-color]" 310 411 msgstr "" 311 412 312 #: includes/class-envy-notifs-global-options.php: 266413 #: includes/class-envy-notifs-global-options.php:382 313 414 msgid "#DD3333" 314 415 msgstr "" 315 416 316 #: includes/class-envy-notifs-global-options.php: 274417 #: includes/class-envy-notifs-global-options.php:391 317 418 msgid "new_settings[notifs-btn-bg-hover-color]" 318 419 msgstr "" 319 420 320 #: includes/class-envy-notifs-global-options.php: 274421 #: includes/class-envy-notifs-global-options.php:391 321 422 msgid "#FA7035" 322 423 msgstr "" 323 424 324 #: includes/class-envy-notifs-global-options.php: 282425 #: includes/class-envy-notifs-global-options.php:400 325 426 msgid "new_settings[notifs-btn-font-color]" 326 427 msgstr "" 327 428 328 #: includes/class-envy-notifs-global-options.php: 290429 #: includes/class-envy-notifs-global-options.php:409 329 430 msgid "new_settings[notifs-btn-font-hover-color]" 330 431 msgstr "" 331 432 332 #: includes/class-envy-notifs-global-options.php: 298433 #: includes/class-envy-notifs-global-options.php:418 333 434 msgid "new_settings[notifs-icon-bg-color]" 334 435 msgstr "" 335 436 336 #: includes/class-envy-notifs-global-options.php: 306437 #: includes/class-envy-notifs-global-options.php:427 337 438 msgid "new_settings[notifs-icon-bg-hover-color]" 338 439 msgstr "" 339 440 340 #: includes/class-envy-notifs-global-options.php: 306341 #: includes/class-envy-notifs-global-options.php: 314441 #: includes/class-envy-notifs-global-options.php:427 442 #: includes/class-envy-notifs-global-options.php:436 342 443 msgid "#1A82A4" 343 444 msgstr "" 344 445 345 #: includes/class-envy-notifs-global-options.php: 314446 #: includes/class-envy-notifs-global-options.php:436 346 447 msgid "new_settings[notifs-icon-font-color]" 347 448 msgstr "" 348 449 349 #: includes/class-envy-notifs-global-options.php: 322450 #: includes/class-envy-notifs-global-options.php:445 350 451 msgid "new_settings[notifs-icon-font-hover-color]" 351 452 msgstr "" 352 453 353 #: includes/class-envy-notifs-global-options.php:327 354 msgid "Plugin Settings" 355 msgstr "" 356 357 #: includes/class-envy-notifs-global-options.php:334 454 #: includes/class-envy-notifs-global-options.php:454 455 msgid "new_settings[notifs-open-icon-bg-color]" 456 msgstr "" 457 458 #: includes/class-envy-notifs-global-options.php:454 459 msgid "#dd3333" 460 msgstr "" 461 462 #: includes/class-envy-notifs-global-options.php:463 463 msgid "new_settings[notifs-open-icon-font-color]" 464 msgstr "" 465 466 #: includes/class-envy-notifs-global-options.php:468 467 msgid "Settings" 468 msgstr "" 469 470 #: includes/class-envy-notifs-global-options.php:476 358 471 msgid "Notification Bar Options" 359 472 msgstr "" 360 473 361 #: includes/class-envy-notifs-post-options.php: 10362 msgid " AddButton URL"363 msgstr "" 364 365 #: includes/class-envy-notifs -post-options.php:11366 msgid " Description"474 #: includes/class-envy-notifs-post-options.php:9 475 msgid "Notifs Bar Button URL" 476 msgstr "" 477 478 #: includes/class-envy-notifs.php:225 479 msgid "All Notices" 367 480 msgstr "" 368 481 369 482 #: includes/class-envy-notifs.php:226 370 msgid "A ll Notices"483 msgid "Add New Notice" 371 484 msgstr "" 372 485 373 486 #: includes/class-envy-notifs.php:227 374 msgid "Add New Notice" 375 msgstr "" 376 377 #: public/partials/envy-notifs-public-display.php:137 378 #: public/partials/envy-notifs-public-display.php:234 379 #: public/partials/envy-notifs-public-display.php:433 380 #: public/partials/envy-notifs-public-display.php:567 381 #: public/partials/envy-notifs-public-display.php:691 487 msgid "Background image" 488 msgstr "" 489 490 #: includes/class-envy-notifs.php:228 491 msgid "Upload Background Image" 492 msgstr "" 493 494 #: includes/class-envy-notifs.php:229 495 msgid "Remove Background image" 496 msgstr "" 497 498 #: public/partials/templates/envy-notifs-bottom-bar.php:54 499 #: public/partials/templates/envy-notifs-left-sidebar-inside.php:54 500 #: public/partials/templates/envy-notifs-left-sidebar-outside.php:54 501 #: public/partials/templates/envy-notifs-popup.php:53 502 #: public/partials/templates/envy-notifs-right-sidebar-inside.php:54 503 #: public/partials/templates/envy-notifs-right-sidebar-outside.php:54 504 #: public/partials/templates/envy-notifs-top-bar.php:54 382 505 msgid "Days" 383 506 msgstr "" 384 507 385 #: public/partials/envy-notifs-public-display.php:137 386 #: public/partials/envy-notifs-public-display.php:234 387 #: public/partials/envy-notifs-public-display.php:433 388 #: public/partials/envy-notifs-public-display.php:567 389 #: public/partials/envy-notifs-public-display.php:691 508 #: public/partials/templates/envy-notifs-bottom-bar.php:54 509 #: public/partials/templates/envy-notifs-left-sidebar-inside.php:54 510 #: public/partials/templates/envy-notifs-left-sidebar-outside.php:54 511 #: public/partials/templates/envy-notifs-popup.php:53 512 #: public/partials/templates/envy-notifs-right-sidebar-inside.php:54 513 #: public/partials/templates/envy-notifs-right-sidebar-outside.php:54 514 #: public/partials/templates/envy-notifs-top-bar.php:54 390 515 msgid "Hours" 391 516 msgstr "" 392 517 393 #: public/partials/envy-notifs-public-display.php:137 394 #: public/partials/envy-notifs-public-display.php:234 395 #: public/partials/envy-notifs-public-display.php:433 396 #: public/partials/envy-notifs-public-display.php:567 397 #: public/partials/envy-notifs-public-display.php:691 518 #: public/partials/templates/envy-notifs-bottom-bar.php:54 519 #: public/partials/templates/envy-notifs-left-sidebar-inside.php:54 520 #: public/partials/templates/envy-notifs-left-sidebar-outside.php:54 521 #: public/partials/templates/envy-notifs-popup.php:53 522 #: public/partials/templates/envy-notifs-right-sidebar-inside.php:54 523 #: public/partials/templates/envy-notifs-right-sidebar-outside.php:54 524 #: public/partials/templates/envy-notifs-top-bar.php:54 398 525 msgid "Minutes" 399 526 msgstr "" 400 527 401 #: public/partials/envy-notifs-public-display.php:137 402 #: public/partials/envy-notifs-public-display.php:234 403 #: public/partials/envy-notifs-public-display.php:433 404 #: public/partials/envy-notifs-public-display.php:567 405 #: public/partials/envy-notifs-public-display.php:691 528 #: public/partials/templates/envy-notifs-bottom-bar.php:54 529 #: public/partials/templates/envy-notifs-left-sidebar-inside.php:54 530 #: public/partials/templates/envy-notifs-left-sidebar-outside.php:54 531 #: public/partials/templates/envy-notifs-popup.php:53 532 #: public/partials/templates/envy-notifs-right-sidebar-inside.php:54 533 #: public/partials/templates/envy-notifs-right-sidebar-outside.php:54 534 #: public/partials/templates/envy-notifs-top-bar.php:54 406 535 msgid "Seconds" 407 536 msgstr "" -
envynotifs/trunk/public/class-envy-notifs-public.php
r2405561 r2439289 5 5 * 6 6 * @link https://envytheme.com/ 7 * @since 1. 0.07 * @since 1.1 8 8 * 9 9 * @package Envy_Notifs … … 27 27 * The ID of this plugin. 28 28 * 29 * @since 1. 0.029 * @since 1.1 30 30 * @access private 31 31 * @var string $plugin_name The ID of this plugin. … … 36 36 * The version of this plugin. 37 37 * 38 * @since 1. 0.038 * @since 1.1 39 39 * @access private 40 40 * @var string $version The current version of this plugin. … … 45 45 * Initialize the class and set its properties. 46 46 * 47 * @since 1. 0.047 * @since 1.1 48 48 * @param string $plugin_name The name of the plugin. 49 49 * @param string $version The version of this plugin. … … 59 59 * Register the stylesheets for the public-facing side of the site. 60 60 * 61 * @since 1. 0.061 * @since 1.1 62 62 */ 63 63 public function enqueue_styles() { 64 65 wp_enqueue_style( 'envy-notifs-font-family', plugin_dir_url( __FILE__ ) . 'css/font-family.css', array(), $this->version, 'all' ); 64 66 65 67 wp_enqueue_style( 'envy-notifs-font-awesome', plugin_dir_url( __FILE__ ) . 'css/font-awesome.min.css', array(), $this->version, 'all' ); 66 68 67 wp_enqueue_style( 'envy-notifs-bootstrap', plugin_dir_url( __FILE__ ) . 'css/bootstrap.min.css', array(), $this->version, 'all' );68 69 69 wp_enqueue_style( 'envy-notifs-main-css', plugin_dir_url( __FILE__ ) . 'css/envy-notifs-public.css', array(), $this->version, 'all' ); 70 70 71 $notifs_bar_font_size = (array)get_option('new_settings'); 72 $notifs_bar_font_weight = (array)get_option('new_settings'); 73 $notifs_bar_bg_color = (array)get_option('new_settings'); 74 $notifs_bar_font_color = (array)get_option('new_settings'); 75 $notifs_btn_bg_color = (array)get_option('new_settings'); 76 $notifs_btn_bg_hover_color = (array)get_option('new_settings'); 77 $notifs_btn_font_color = (array)get_option('new_settings'); 78 $notifs_btn_font_hover_color = (array)get_option('new_settings'); 79 $notifs_icon_bg_color = (array)get_option('new_settings'); 80 $notifs_icon_bg_hover_color = (array)get_option('new_settings'); 81 $notifs_icon_font_color = (array)get_option('new_settings'); 82 $notifs_icon_font_hover_color = (array)get_option('new_settings'); 83 $notifs_bar_btn_border = (array)get_option('new_settings'); 84 $notifs_bar_icon_border = (array)get_option('new_settings'); 85 $notifs_bar_icon_size = (array)get_option('new_settings'); 71 wp_enqueue_style( 'envy-notifs-responsive-css', plugin_dir_url( __FILE__ ) . 'css/responsive.css', array(), $this->version, 'all' ); 86 72 87 //All the user input CSS settings as set in the plugin settings 88 $notifs_bar_position = (array)get_option('new_settings'); 89 if ( isset( $notifs_bar_position['select-global-position'] ) ) : 90 $envy_notifs_global = $notifs_bar_position['select-global-position']; 91 else : 92 $envy_notifs_global = ''; 93 endif; 94 95 if ( isset( $envy_notifs_custom_css ) ) : 96 echo esc_html__( $envy_notifs_custom_css ); 97 else : 98 $envy_notifs_custom_css = ''; 99 endif; 100 101 if( $envy_notifs_global == 'popup' || $envy_notifs_global == 'top' || $envy_notifs_global == 'bottom' || $envy_notifs_global == 'leftside' || $envy_notifs_global == 'rightside' ) : 102 103 $envy_notifs_custom_css = ' 104 .notifino { 105 background-color: '.esc_attr($notifs_bar_bg_color["notifs-bar-bg-color"]).' !important; 106 color: '.esc_attr($notifs_bar_font_color["notifs-bar-font-color"]).' !important; 107 } 108 .notifino h2 { 109 color: '.esc_attr($notifs_bar_font_color["notifs-bar-font-color"]).' !important; 110 } 111 .notice_heading { 112 font-weight: '.esc_attr($notifs_bar_font_size['notifs-bar-font-weight']).' !important; 113 } 114 .notifino-second-button { 115 background-color: '.esc_attr($notifs_btn_bg_color['notifs-btn-bg-color']).' !important; 116 color: '.esc_attr($notifs_btn_font_color['notifs-btn-font-color']).' !important; 117 } 118 .notifino-second-button:hover { 119 background-color: '.esc_attr($notifs_btn_bg_hover_color['notifs-btn-bg-hover-color']).' !important; 120 color: '.esc_attr($notifs_btn_font_hover_color['notifs-btn-font-hover-color']).' !important; 121 } 122 .notifino-btn-rounded { 123 background-color: '.esc_attr($notifs_icon_bg_color['notifs-icon-bg-color']).' !important; 124 color: '.esc_attr($notifs_icon_font_color['notifs-icon-font-color']).' !important; 125 } 126 .notifino-btn-rounded:hover { 127 background-color: '.esc_attr($notifs_icon_bg_hover_color['notifs-icon-bg-hover-color']).' !important; 128 color: '.esc_attr($notifs_icon_font_hover_color['notifs-icon-font-hover-color']).' !important; 129 } 130 .notifino-second-button { 131 border-radius: '.esc_attr($notifs_bar_btn_border['notifs-bar-btn-border']).'; 132 } 133 .notifino-btn-rounded { 134 border-radius: '.esc_attr($notifs_bar_icon_border['notifs-bar-icon-border']).'; 135 } 136 .notifino-close-btn-small .fa { 137 font-size: '.esc_attr($notifs_bar_icon_size['notifs-bar-icon-size']).' !important; 138 } 139 .notice_popup .close i { 140 font-size: '.esc_attr($notifs_bar_icon_size['notifs-bar-icon-size']).' !important; 141 } 142 #notifino-open-close1, #notifino-open-close2, #notifino-open-close3, #notifino-open-close4 { 143 background-color: '.esc_attr($notifs_btn_bg_color['notifs-btn-bg-color']).' !important; 144 color: '.esc_attr($notifs_btn_font_color['notifs-btn-font-color']).' !important; 145 } 146 @media only screen and (max-width: 600px) { 147 .notice_heading { 148 font-size: 16px !important; 149 } 150 } 151 @media only screen and (min-width: 600px) { 152 .notice_heading { 153 font-size: 16px !important; 154 } 155 } 156 @media only screen and (min-width: 768px) { 157 .notice_heading { 158 font-size: '.esc_attr($notifs_bar_font_size['notifs-bar-font-size']).' !important; 159 } 160 } 161 @media only screen and (min-width: 992px) { 162 .notice_heading { 163 font-size: '.esc_attr($notifs_bar_font_size['notifs-bar-font-size']).' !important; 164 } 165 } 166 '; 167 168 endif; 169 170 wp_add_inline_style( 'envy-notifs-main-css', $envy_notifs_custom_css ); 73 require plugin_dir_path( __FILE__ ) . '../includes/class-envy-notifs-css-options.php'; 171 74 } 172 75 … … 174 77 * Register the JavaScript for the public-facing side of the site. 175 78 * 176 * @since 1. 0.079 * @since 1.1 177 80 */ 178 81 public function enqueue_scripts() { 179 180 wp_enqueue_script( 'envy-notifs-bootstrap', plugin_dir_url( __FILE__ ) . 'js/bootstrap.min.js', array( 'jquery' ), $this->version );181 182 wp_enqueue_script( 'envy-notifs-magnific-popup', plugin_dir_url( __FILE__ ) . 'js/magnific-popup.min.js', array( 'jquery' ), $this->version );183 184 wp_enqueue_script( 'envy-notifs-parallax', plugin_dir_url( __FILE__ ) . 'js/parallax.js', array( 'jquery' ), $this->version );185 82 186 83 wp_enqueue_script( 'envy-notifs-countdown', plugin_dir_url( __FILE__ ) . 'js/multi-countdown.js', array( 'jquery' ), $this->version ); -
envynotifs/trunk/public/css/envy-notifs-public.css
r2405561 r2439289 4 4 */ 5 5 6 6 /*! 7 7 * 8 8 * EnvyNotifs WP Plugin - Stylesheet 9 9 * 10 10 */ 11 .notifino { 12 width: 100%; 13 } 14 15 .notifino-text { 16 float: left; 17 padding: 0 15px; 18 } 19 20 .notice_heading { 11 12 body { 13 padding: 0; 14 margin: 0; 15 font-family: "Poppins", sans-serif; 16 } 17 18 /** 19 EnvyNotifs Bar 20 =======================**/ 21 .envynotifs-bar { 22 background-position: center center; 23 background-repeat: no-repeat; 24 background-size: cover; 25 padding-top: 10px; 26 padding-bottom: 10px; 27 } 28 29 /** EnvyNotifs Bar bottom 30 =====================================================**/ 31 32 .envynotifs-bar.envynotifs-bar-bottom { 33 position: sticky; 34 bottom: 0; 35 left: 0; 36 right: 0; 37 } 38 39 .envynotifs-bar.envynotifs-bar-bottom .envynotifs-details { 40 top: -22px; 41 bottom: 0; 42 } 43 44 .envynotifs-bar.envynotifs-bar-bottom .envynotifs-details .envynotifs-details-show { 45 border-radius: 50% 50% 0 0 !important; 46 } 47 48 .envynotifs-bar.envynotifs-bar-bottom .envynotifs-details .envynotifsshow { 49 top: auto; 50 bottom: 0; 51 border-top: none; 52 border-bottom: 1px solid #ffffff; 53 } 54 55 .envynotifs-bar.envynotifs-bar-bottom .envynotifs-details .envynotifsshow .envynotifs-details-hide { 56 bottom: auto; 57 top: -22px; 58 border-radius: 50% 50% 0 0; 59 } 60 61 .envynotifs-bar.envynotifs-bar-bottom .envynotifs-details .envynotifsshow.active { 62 top: auto; 63 bottom: 62px; 64 } 65 66 .envynotifs-bar::before { 67 content: ""; 68 position: absolute; 69 top: 0; 70 right: 0; 71 width: 100%; 72 height: 100%; 73 background-color: #000000; 74 opacity: 0.5; 75 z-index: -1; 76 display: none; 77 } 78 79 .envynotifs-bar .envynotifs-container { 80 max-width: 100%; 81 margin: auto; 82 display: table; 83 padding-left: 15px; 84 padding-right: 15px; 85 font-size: 0; 86 } 87 88 .envynotifs-bar .envynotifs-wrap { 89 padding: 0; 90 margin: 0; 91 list-style-type: none; 92 text-align: center; 93 display: -webkit-box; 94 display: -ms-flexbox; 95 display: flex; 96 -ms-flex-wrap: wrap; 97 flex-wrap: wrap; 98 margin-right: -15px; 99 margin-left: -15px; 100 -webkit-box-align: center; 101 -ms-flex-align: center; 102 align-items: center; 103 line-height: initial !important; 104 letter-spacing: initial !important; 105 } 106 107 .envynotifs-bar .envynotifs-wrap .envynotifs-single { 108 display: inline-block; 109 margin: 0 10px; 110 line-height: normal !important; 111 letter-spacing: initial !important; 112 } 113 114 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-title h2 { 115 margin: 0; 116 font-family: "Poppins", sans-serif !important; 117 letter-spacing: initial !important; 118 line-height: 2.1 !important; 119 } 120 121 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-time .envynotifs-time-list { 122 list-style-type: none; 123 padding: 0; 124 margin: 0; 125 } 126 127 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-time .envynotifs-time-list li { 128 display: inline-block; 129 font-size: 14px; 130 margin: 0 5px; 131 font-family: "Poppins", sans-serif !important; 132 line-height: normal !important; 133 letter-spacing: initial !important; 134 } 135 136 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-time .envynotifs-time-list li span { 137 display: inline; 138 font-size: 14px; 139 position: relative; 140 } 141 142 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-time .envynotifs-time-list li span::before, .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-time .envynotifs-time-list li span::after { 143 content: ""; 144 position: absolute; 145 top: 5px; 146 right: -10px; 147 width: 3px; 148 height: 3px; 149 background-color: #ffffff; 150 border-radius: 50%; 151 } 152 153 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-time .envynotifs-time-list li span::after { 154 top: 12px; 155 } 156 157 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-time .envynotifs-time-list li:last-child span::before, .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-time .envynotifs-time-list li:last-child span::after { 158 display: none; 159 } 160 161 .running .labels span { 162 padding: 0 4px; 163 } 164 165 .running timer .days { 166 padding: 0 15px; 167 margin-right: 10px; 168 } 169 170 .running timer .hours { 171 padding: 0 15px; 172 margin-right: 10px; 173 } 174 175 .running timer .minutes { 176 padding: 0 15px; 177 margin-right: 10px; 178 } 179 180 .running timer .seconds { 181 padding: 0 15px; 182 margin-right: 10px; 183 } 184 185 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-sign-up form { 186 position: relative; 187 } 188 189 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-sign-up form .form-control { 190 height: 40px; 191 border: none; 192 padding: 0 5px; 193 border-radius: 4px; 194 } 195 196 .envynotifs-email { 197 display: initial !important; 198 font-size: initial !important; 199 letter-spacing: initial !important; 200 width: 50% !important; 201 font-family: "Poppins", sans-serif !important; 202 } 203 204 .envynotifs-sign-up-btn { 205 font-weight: initial; 206 letter-spacing: initial; 207 line-height: initial; 208 margin: 0; 209 text-transform: initial; 210 font-family: "Poppins", sans-serif !important; 211 } 212 213 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-sign-up form .form-control:focus { 214 outline: none !important; 215 border: none !important; 216 background-color: #f5f5f5 !important; 217 } 218 219 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-sign-up form .form-control::-webkit-input-placeholder { 220 font-size: 12px; 221 } 222 223 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-sign-up form .form-control:-ms-input-placeholder { 224 font-size: 12px; 225 } 226 227 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-sign-up form .form-control::-ms-input-placeholder { 228 font-size: 12px; 229 } 230 231 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-sign-up form .form-control::placeholder { 232 font-size: 12px; 233 } 234 235 form .envynotifs-sign-up-btn { 236 height: 40px; 237 border: none; 238 background-color: #222222 !important; 239 color: #ffffff; 240 cursor: pointer; 241 padding: 0 10px; 242 border-radius: 4px; 243 margin-left: -10px; 244 text-decoration: none !important; 245 font-size: 13px !important; 246 padding-top: 3px; 247 } 248 249 form .envynotifs-sign-up-btn:focus { 250 outline: none; 251 border: none; 252 } 253 254 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-sign-up .envynotifs-subscribe-title { 255 font-size: 14px; 256 margin-right: 5px; 257 position: relative; 258 font-family: "Poppins", sans-serif !important; 259 } 260 261 .mc4wp-form-fields p label { 262 display: inline !important; 263 } 264 265 .mc4wp-form-fields p { 266 display: inline !important; 267 } 268 269 .mc4wp-form-fields p label input[type='email'] { 270 display: inline !important; 271 } 272 273 .mc4wp-form-fields p input[type='submit'] { 274 display: inline !important; 275 border-radius: 4px !important; 276 line-height: 1.25 !important; 277 } 278 279 .envynotifs-social-icon-list li { 280 letter-spacing: initial !important 281 } 282 283 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list { 284 padding: 0; 285 margin: 0; 286 list-style-type: none; 287 } 288 289 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list li { 290 display: inline-block; 291 margin-right: 5px; 292 margin-left: 0; 293 margin-top: 0; 294 margin-bottom: 0; 295 } 296 297 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list li:last-child { 298 margin-right: 0; 299 } 300 301 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list li .envynotifs-social { 302 font-size: 14px; 303 font-family: "Poppins", sans-serif !important; 304 } 305 306 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list li a { 307 color: #ffffff; 308 } 309 310 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list li a i { 311 font-size: 13px; 312 width: 25px; 313 height: 25px; 314 line-height: 25px; 315 background-color: #5b5bff; 316 color: #ffffff; 317 text-align: center; 318 border-radius: 50%; 319 -webkit-transition: all ease 0.5s; 320 transition: all ease 0.5s; 321 } 322 323 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list li a:hover i { 324 -webkit-transform: translateY(-2px); 325 transform: translateY(-2px); 326 } 327 328 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list li:nth-child(2) a i { 329 background-color: #3b5998; 330 } 331 332 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list li:nth-child(3) a i { 333 background-color: #00acee; 334 } 335 336 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list li:nth-child(4) a i { 337 background-color: #dd4b39; 338 } 339 340 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list li:nth-child(5) a i { 341 background-color: #0e76a8; 342 } 343 344 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-social-icon .envynotifs-social-icon-list li:nth-child(6) a i { 345 background-color: #00aff0; 346 } 347 348 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-btn .envynotifs-button { 349 text-decoration: none; 350 display: inline-block; 351 padding: 10px 15px; 352 -webkit-transition: all ease 0.5s; 353 transition: all ease 0.5s; 354 font-size: 14px; 355 font-family: "Poppins", sans-serif !important; 356 } 357 358 .envynotifs-bar .envynotifs-wrap .envynotifs-single .envynotifs-btn .envynotifs-button:hover { 359 background-color: #fa7035; 360 } 361 362 .envynotifs-bar .envynotifs-details { 363 text-align: center; 364 position: absolute; 365 bottom: -22px; 366 left: 0; 367 right: 0; 368 } 369 370 .envynotifs-bar .envynotifs-details .envynotifs-details-show { 371 font-size: 16px; 372 width: 22px; 373 height: 22px; 21 374 line-height: 22px; 22 margin: 0 auto; 23 padding: 5px 0; 24 letter-spacing: 0; 25 text-align: center !important; 26 } 27 28 /* Layouts type */ 29 .notifino-standard { 30 max-width: 1200px; 31 position: relative; 32 margin: 0 auto 0; 33 padding: 7px 20px; 34 } 35 36 .notifino-fluid { 37 width: 90%; 38 margin-left: 5%; 39 padding: 15px 20px; 40 clear: both; 41 overflow: hidden; 42 position: relative; 43 } 44 45 .notifino-fluid, .notifino-standard, .notifino-boxed { 46 clear: both; 47 } 48 49 .notifino-boxed { 50 max-width: 940px; 51 padding: 15px 20px; 52 position: relative; 53 margin: 10px auto 10px; 54 } 55 56 /* Notifino Buttons */ 57 .notifino-buttons a, #notifino-open-close1, #notifino-open-close2, #notifino-open-close3, #notifino-open-close4 { 58 font-size: 15px; 59 cursor: pointer; 60 } 61 62 button, input, optgroup, select, textarea { 63 font-family: auto !important; 64 } 65 66 #notifino-open-close1, #notifino-open-close2, #notifino-open-close3, #notifino-open-close4 { 67 border-radius: 0%; 68 height: 30px; 69 width: 30px; 70 padding: 0 !important; 375 background-color: #5b5bff; 376 color: #ffffff; 377 border-radius: 0 0 50% 50%; 378 cursor: pointer; 379 } 380 381 .envynotifs-bar .envynotifs-details .envynotifsshow { 382 margin: auto; 383 visibility: hidden; 384 opacity: 0; 385 -webkit-transition: all ease 0.5s; 386 transition: all ease 0.5s; 387 position: absolute; 388 top: -170px; 389 left: 0; 390 right: 0; 391 padding: 30px; 392 border-top: 1px solid #ffffff; 393 } 394 395 .envynotifs-bar .envynotifs-details .envynotifsshow p { 396 color: #ffffff; 397 font-size: 15px; 398 letter-spacing: initial !important; 399 font-family: "Poppins", sans-serif; 400 } 401 402 .envynotifs-bar .envynotifs-details .envynotifsshow .envynotifs-details-hide { 403 position: absolute; 404 bottom: -22px; 405 left: 0; 406 right: 0; 407 text-align: center; 408 margin: auto; 409 font-size: 15px; 410 width: 22px; 411 height: 22px; 412 line-height: 22px; 413 background-color: #5b5bff; 414 color: #ffffff; 415 border-radius: 0 0 50% 50%; 416 cursor: pointer; 417 } 418 419 .envynotifs-bar .envynotifs-details .envynotifsshow.active { 420 visibility: visible; 421 opacity: 1; 422 top: 0; 423 } 424 425 .envynotifs-bar .envynotifs-close-button { 426 position: absolute; 427 top: 18px; 428 right: 15px; 429 width: 25px; 430 height: 25px; 431 line-height: 25px; 432 display: inline-block; 433 -webkit-transition: all ease 0.5s; 434 transition: all ease 0.5s; 435 text-align: center; 436 border: none; 437 cursor: pointer; 438 font-size: 15px; 439 padding: 0 !important; 440 } 441 442 .envynotifs-bar .envynotifs-close-button:focus { 443 outline: 0; 444 } 445 446 .envynotifs-bar .envynotifs-close-button i { 447 position: relative; 448 left: 0.60px; 449 top: -1px; 450 } 451 452 .envynotifs-bar .envynotifs-close-button:hover { 453 background-color: #fa7035; 454 } 455 456 .envynotifs-bar .envynotifs-show-button1 { 457 position: absolute; 458 top: 0; 459 right: 15px; 460 width: 30px; 461 height: 30px; 462 line-height: 30px; 463 background-color: #dd3333; 464 display: inline-block; 465 color: #ffffff; 466 -webkit-transition: all ease 0.5s; 467 transition: all ease 0.5s; 468 text-align: center; 469 cursor: pointer; 470 font-size: 15px; 471 border: none; 472 opacity: 0; 473 } 474 475 .envynotifs-bar .envynotifs-show-button1:focus { 476 outline: 0; 477 } 478 479 .envynotifs-bar .envynotifs-show-button1 i { 480 position: relative; 481 left: 0.90px; 482 font-size: 20px; 483 } 484 485 .envynotifs-bar .envynotifs-show-button1:hover { 486 background-color: #fa7035; 487 } 488 489 #notifino-open-close1, #notifino-open-close2, #notifino-open-close4, #notifino-open-close5, #notifino-open-close6, #notifino-open-close7 { 490 border-radius: 0%; 491 height: 30px; 492 width: 30px; 493 padding: 0 !important; 71 494 text-align: center; 72 495 line-height: 24px !important; 73 496 } 74 497 75 .fa-angle-double-up { 76 font-size: 22px !important; 77 margin: 2px; 78 } 79 80 .fa-angle-double-down { 81 font-size: 22px !important; 82 margin: 5px; 83 } 84 85 .fa-angle-double-left { 86 font-size: 22px !important; 87 margin: 3px 0; 88 } 89 90 .fa-angle-double-right { 91 font-size: 22px !important; 92 margin: 3px 0; 93 } 94 95 #notifino-close1, #notifino-close2, #notifino-close3, #notifino-close4 { 96 text-decoration: none; 97 float: left; 98 } 99 100 #notifino-close .fa { 101 margin-right: 5px; 102 line-height: 30px; 103 text-align:center; 104 } 105 106 .notifino-second-button { 107 text-decoration: none; 108 display: inline-block; 109 padding: 7px 14px; 110 float: left; 111 margin-right: 15px; 112 text-align: center; 113 } 114 115 .notifino-second-button:hover { 116 text-decoration: none; 117 display: inline-block; 118 padding: 7px 14px; 119 float: left; 120 margin-right: 15px; 121 text-align: center; 122 } 123 124 .notifino-close-btn-small { 125 width: 24px; 126 height: 24px !important; 127 padding: 0 !important; 128 text-align: center; 129 line-height: 21px !important; 130 margin: 6px 0; 131 } 132 133 .notifino-close-btn-small .fa { 134 line-height: 24px !important; 135 margin-right: 0 !important; 136 } 137 138 #notifino-close.notifino-btn-square { 139 padding: 0 10px; 140 text-align: center; 141 } 142 143 .notifino-btn-rounded { 144 padding: 0 15px; 145 height: 34px; 146 line-height: 34px; 147 transition: all .35s ease-in-out; 148 font-weight: bold; 149 } 150 151 .notifino-btn-square { 152 padding: 0 15px; 153 height: 30px; 154 line-height: 30px !important; 155 background: none !important; 156 border: 2px solid #fff; 157 border-radius: 5px; 158 color: #fff !important; 159 transition: all .35s ease-in-out; 160 } 161 162 .notifino-btn-square:hover, 163 .notifino-btn-square:active { 164 color: #ccc !important; 165 background: #fff !important; 498 #notifino-open-close1 i, #notifino-open-close2 i, #notifino-open-close4 i, 499 #notifino-open-close5 i, #notifino-open-close6 i, #notifino-open-close7 i { 500 margin: 5px 0; 166 501 } 167 502 168 503 #notifino-open-close1 { 169 display: none;170 top: 0;504 display: none; 505 top: 0; 171 506 right: 20px; 172 507 position: fixed; 173 508 z-index: 9999; 509 cursor: pointer; 174 510 } 175 511 176 512 #notifino-open-close2 { 177 display: none;178 bottom: 0;513 display: none; 514 bottom: 0; 179 515 right: 20px; 180 516 position: fixed; 181 517 z-index: 9999; 182 } 183 184 #notifino-open-close3 { 185 display: none; 186 top: 20px; 518 cursor: pointer; 519 } 520 521 #notifino-open-close4, #notifino-open-close6 { 522 display: none; 523 top: 20px; 187 524 left: 0px; 188 525 position: fixed; 189 526 z-index: 9999; 190 } 191 192 #notifino-open-close4 { 193 display: none; 194 top: 20px; 527 cursor: pointer; 528 } 529 530 #notifino-open-close5, #notifino-open-close7 { 531 display: none; 532 top: 20px; 195 533 right: 0px; 196 534 position: fixed; 197 535 z-index: 9999; 198 } 199 200 /* Notice Countdown */ 201 .running .labels span { 202 margin: 0 3px; 203 } 204 205 /* Popup Panel */ 206 #onload-popup { 207 padding-right: 17px; 208 display: block; 209 } 210 211 .modal-open .modal { 212 overflow-x: hidden; 213 overflow-y: auto; 214 } 215 216 .notice_popup .modal-content { 217 border: 0; 218 border-radius: 0; 219 } 220 221 .notice_popup .notifino-second-button { 222 float: none; 223 } 224 225 .popup_content { 226 padding: 40px; 227 text-align: center; 228 } 229 230 .notice_popup .close { 231 position: absolute; 232 right: 0; 233 top: 0; 234 z-index: 9; 235 opacity: 1; 236 text-shadow: none; 237 padding: 5px; 238 } 239 240 .notice_popup #notifino-close1 { 241 margin-top: 0; 242 } 243 244 .modal { 245 z-index: 99999; 246 padding-right: 0 !important; 247 } 248 249 .modal-backdrop { 250 z-index: 9999; 251 } 252 253 .modal.fade .modal-dialog { 254 transform: translate(0,-50px) !important; 536 cursor: pointer; 255 537 } 256 538 257 539 /* Top Panel */ 258 540 .notifino-top-panel { 259 position: fixed; 260 top: 0; 261 z-index: 9999; 541 position: fixed; 542 top: 0; 543 z-index: 9999; 544 width: 100%; 262 545 } 263 546 264 547 /* Bottom Panel */ 265 548 .notifino-bottom-panel { 266 position: sticky; 267 bottom: 0; 268 z-index: 9999; 269 height: auto; 270 } 271 272 /* Sidebar Left Panel */ 273 .sidebar-left-panel { 274 height: 100%; 275 width: 60px !important; 276 position: fixed; 277 z-index: 9999; 278 top: 0; 279 left: 0; 280 transition: 0.5s; 281 writing-mode: vertical-rl; 282 transform: rotate(180deg); 283 } 284 285 .sidebar-left-panel .notice_heading { 286 line-height: 23px; 287 } 288 289 .sidebar-left-panel .notifino-standard { 290 padding: 0px; 291 width: 60px; 292 } 293 294 .sidebar-left-panel .notifino-content { 295 height: 75%; 296 float: left; 297 width: 60px; 298 } 299 300 .sidebar-left-panel .notifino-buttons { 301 float: left; 302 margin: 5px auto; 303 } 304 305 .sidebar-left-panel .notifino-second-button { 306 text-decoration: none; 307 display: inline-block; 308 padding: 7px; 309 margin-right: 0px; 310 } 311 312 .sidebar-left-panel #notifino-close3 { 313 margin: 5px 8px; 314 } 315 316 .sidebar-left-panel .countdown{ 317 height: 50%; 318 } 319 320 .sidebar-right-panel .countdown { 321 height: 50%; 322 } 323 324 .sidebar-left-panel .running .labels span { 325 margin: 3px 0px; 326 font-size: 10px; 327 } 328 329 /* Sidebar Right Panel */ 330 .sidebar-right-panel { 331 height: 100%; 332 width: 60px !important; 333 position: fixed; 334 z-index: 9999; 335 top: 0; 336 right: 0; 337 transition: 0.5s; 338 writing-mode: vertical-rl; 339 text-orientation: mixed; 340 } 341 342 .sidebar-right-panel .notice_heading { 343 line-height: 23px; 344 } 345 346 .sidebar-right-panel .notifino-standard { 347 padding: 0px; 348 width: 60px; 349 } 350 351 .sidebar-right-panel .notifino-content { 352 height: 75%; 353 float: left; 354 width: 60px; 355 } 356 357 .sidebar-right-panel .notifino-buttons { 358 float: left; 359 margin: 5px auto; 360 } 361 362 .sidebar-right-panel .notifino-second-button { 363 text-decoration: none; 364 display: inline-block; 365 padding: 7px; 366 margin-right: 0px; 367 } 368 369 .sidebar-right-panel #notifino-close4 { 370 margin: 5px 8px; 371 } 372 373 .sidebar-right-panel .running .labels span { 374 margin: 3px 0px; 375 font-size: 10px; 376 } 377 378 /* Extra small devices (phones, 600px and down) */ 379 @media only screen and (max-width: 600px) { 380 .countdown { 381 margin-bottom: 10px; 382 } 383 384 .sidebar-left-panel, .sidebar-right-panel { 385 padding-top: 5px; 386 padding-bottom: 5px; 387 } 388 389 .sidebar-left-panel .notifino-second-button, .sidebar-right-panel .notifino-second-button { 390 margin-bottom: 10px; 391 } 392 393 timer span { 394 margin: 0 15px; 395 } 396 397 .align-self-center { 398 -ms-flex-item-align: center!important; 399 align-self: center!important; 400 margin: 0 auto; 401 } 402 } 403 404 /* Small devices (portrait tablets and large phones, 600px and up) */ 405 @media only screen and (min-width: 600px) { 406 .countdown { 407 margin-bottom: 10px; 408 } 409 410 .sidebar-left-panel, .sidebar-right-panel { 411 padding-top: 5px; 412 padding-bottom: 5px; 413 } 414 415 .sidebar-left-panel .notice_heading, .sidebar-right-panel .notice_heading { 416 margin: 0px; 417 } 418 419 .sidebar-left-panel .notifino-second-button, .sidebar-right-panel .notifino-second-button { 420 margin-bottom: 10px; 421 } 422 423 timer span { 424 margin: 0 15px; 425 } 426 427 .align-self-center { 428 -ms-flex-item-align: center!important; 429 align-self: center!important; 430 margin: 0 auto; 431 } 432 } 433 434 /* Medium devices (landscape tablets, 768px and up) */ 435 @media only screen and (min-width: 768px) { 436 .countdown { 437 margin-bottom: 10px; 438 } 439 440 .no-countdown { 441 min-width: 768px; 442 } 443 444 .sidebar-left-panel, .sidebar-right-panel { 445 padding-top: 10px; 446 padding-bottom: 10px; 447 } 448 449 .sidebar-left-panel .notifino-second-button, .sidebar-right-panel .notifino-second-button { 450 margin-bottom: 20px; 451 } 452 453 timer span { 454 margin: 0 15px; 455 } 456 457 .align-self-center { 458 -ms-flex-item-align: center!important; 459 align-self: center!important; 460 margin: 0 auto; 461 } 462 } 463 464 /* Large devices (laptops/desktops, 992px and up) */ 465 @media only screen and (min-width: 992px) { 466 .countdown { 467 margin-bottom: 0px; 468 } 469 470 .no-countdown { 471 min-width: 1000px; 472 } 473 474 .sidebar-left-panel, .sidebar-right-panel { 475 padding-top: 10px; 476 padding-bottom: 10px; 477 } 478 479 .sidebar-left-panel .notice_heading, .sidebar-right-panel .notice_heading { 480 margin: 0px; 481 } 482 483 .sidebar-left-panel .notifino-second-button, .sidebar-right-panel .notifino-second-button { 484 margin-bottom: 20px; 485 } 486 487 .running .labels span { 488 font-size: 1.5rem; 489 } 490 491 timer span { 492 margin: 0 15px; 493 } 494 495 .align-self-center { 496 -ms-flex-item-align: center!important; 497 align-self: center!important; 498 margin: 0; 499 } 500 } 501 502 /* Extra large devices (large laptops and desktops, 1200px and up) */ 503 @media only screen and (min-width: 1200px) { 504 .countdown { 505 margin-bottom: 0px; 506 } 507 508 .no-countdown { 509 min-width: 1000px; 510 } 511 512 .sidebar-left-panel, .sidebar-right-panel { 513 padding-top: 10px; 514 padding-bottom: 10px; 515 } 516 517 .sidebar-left-panel .notice_heading, .sidebar-right-panel .notice_heading { 518 margin: 0px; 519 } 520 521 .sidebar-left-panel .notifino-second-button, .sidebar-right-panel .notifino-second-button { 522 margin-bottom: 5px; 523 } 524 525 .running .labels span { 526 font-size: 1.3rem; 527 } 528 529 .sidebar-left-panel .notifino-second-button, .sidebar-right-panel .notifino-second-button { 530 margin-bottom: 10px; 531 } 532 533 timer span { 534 margin: 0 20px; 535 } 536 537 .align-self-center { 538 -ms-flex-item-align: center!important; 539 align-self: center!important; 540 margin: 0; 541 } 542 } 549 position: sticky; 550 bottom: 0; 551 z-index: 9999; 552 width: 100%; 553 } 554 555 /** 556 EnvyNotifs Left Sidebar 557 =====================================================**/ 558 .envynotifs-left-sidebar { 559 background-position: center center; 560 background-repeat: no-repeat; 561 background-size: cover; 562 background-color: #5b5bff; 563 padding: 30px; 564 z-index: 9999; 565 max-width: 320px; 566 position: fixed; 567 top: 50%; 568 left: 0; 569 margin: auto; 570 -webkit-transform: translate(0%, -50%); 571 transform: translate(0%, -50%); 572 } 573 574 .envynotifs-left-sidebar-wrap, .envynotifs-left-sidebar-container { 575 font-size: smaller !important; 576 font-family: "Poppins", sans-serif; 577 } 578 579 .envynotifs-left-sidebar.envynotifs-left-sidebar-bg::before { 580 content: ""; 581 position: absolute; 582 top: 0; 583 left: 0; 584 width: 100%; 585 height: 100%; 586 background-color: #000000; 587 opacity: 0.5; 588 z-index: -1; 589 } 590 591 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap { 592 padding: 0; 593 margin: 0; 594 list-style-type: none; 595 } 596 597 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single { 598 margin: 0 0; 599 margin-bottom: 30px; 600 } 601 602 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-title h2 { 603 font-size: 22px; 604 color: #ffffff; 605 margin: 10px 0 0; 606 } 607 608 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-time .envynotifs-left-sidebar-time-list { 609 list-style-type: none; 610 padding: 0; 611 margin: 0; 612 } 613 614 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-time .envynotifs-left-sidebar-time-list li { 615 display: inline-block; 616 color: #ffffff; 617 font-size: 14px; 618 margin: 0 5px; 619 } 620 621 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-time .envynotifs-left-sidebar-time-list li:first-child { 622 margin-left: 0; 623 } 624 625 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-time .envynotifs-left-sidebar-time-list li:last-child { 626 margin-right: 0; 627 } 628 629 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-time .envynotifs-left-sidebar-time-list li span { 630 display: inline; 631 font-size: 15px; 632 margin-top: 5px; 633 position: relative; 634 } 635 636 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-time .envynotifs-left-sidebar-time-list li span::before, .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-time .envynotifs-left-sidebar-time-list li span::after { 637 content: ""; 638 position: absolute; 639 top: 7px; 640 right: -10px; 641 width: 3px; 642 height: 3px; 643 background-color: #ffffff; 644 border-radius: 50%; 645 } 646 647 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-time .envynotifs-left-sidebar-time-list li span::after { 648 top: 14px; 649 } 650 651 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-time .envynotifs-left-sidebar-time-list li:last-child span::before, .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-time .envynotifs-left-sidebar-time-list li:last-child span::after { 652 display: none; 653 } 654 655 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-sign-up form { 656 position: relative; 657 } 658 659 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-sign-up form .form-control { 660 height: 40px; 661 border: none; 662 padding: 0 5px; 663 border-radius: 4px; 664 width: 100%; 665 } 666 667 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-sign-up form .form-control:focus { 668 outline: none !important; 669 border: none !important; 670 background-color: #f5f5f5 !important; 671 } 672 673 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-sign-up form .form-control::-webkit-input-placeholder { 674 font-size: 12px; 675 } 676 677 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-sign-up form .form-control:-ms-input-placeholder { 678 font-size: 12px; 679 } 680 681 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-sign-up form .form-control::-ms-input-placeholder { 682 font-size: 12px; 683 } 684 685 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-sign-up form .form-control::placeholder { 686 font-size: 12px; 687 } 688 689 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-sign-up form .envynotifs-left-sidebar-sign-up-btn { 690 height: 40px; 691 border: none; 692 background-color: #222222; 693 color: #ffffff; 694 cursor: pointer; 695 padding: 0 10px; 696 border-radius: 4px; 697 position: absolute; 698 top: 0; 699 right: -10px; 700 } 701 702 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-sign-up form .envynotifs-left-sidebar-sign-up-btn:focus { 703 outline: none !important; 704 border: none !important; 705 background-color: #f5f5f5 !important; 706 } 707 708 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-sign-up .envynotifs-left-sidebar-subscribe-title { 709 font-size: 14px; 710 color: #ffffff; 711 margin-bottom: 10px; 712 position: relative; 713 display: block; 714 } 715 716 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list { 717 padding: 0; 718 margin: 0; 719 list-style-type: none; 720 } 721 722 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list li { 723 display: inline-block; 724 margin: 0 5px 0 0; 725 } 726 727 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list li:last-child { 728 margin-right: 0; 729 } 730 731 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list li .envynotifs-left-sidebar-social { 732 color: #ffffff; 733 font-size: 14px; 734 } 735 736 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list li a { 737 color: #ffffff; 738 } 739 740 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list li a i { 741 font-size: 13px; 742 width: 25px; 743 height: 25px; 744 line-height: 25px; 745 background-color: #5b5bff; 746 color: #ffffff; 747 text-align: center; 748 border-radius: 50%; 749 -webkit-transition: all ease 0.5s; 750 transition: all ease 0.5s; 751 } 752 753 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list li a:hover i { 754 -webkit-transform: translateY(-2px); 755 transform: translateY(-2px); 756 } 757 758 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list li:nth-child(2) a i { 759 background-color: #3b5998; 760 } 761 762 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list li:nth-child(3) a i { 763 background-color: #00acee; 764 } 765 766 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list li:nth-child(4) a i { 767 background-color: #dd4b39; 768 } 769 770 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list li:nth-child(5) a i { 771 background-color: #0e76a8; 772 } 773 774 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-social-icon .envynotifs-left-sidebar-social-icon-list li:nth-child(6) a i { 775 background-color: #00aff0; 776 } 777 778 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single.envynotifs-left-sidebar-read-more { 779 margin-bottom: 0; 780 } 781 782 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-btn .envynotifs-left-sidebar-button { 783 text-decoration: none; 784 background-color: #dd3333; 785 display: inline-block; 786 padding: 10px 15px; 787 color: #ffffff; 788 border-radius: 4px; 789 -webkit-transition: all ease 0.5s; 790 transition: all ease 0.5s; 791 font-size: 14px; 792 } 793 794 .envynotifs-left-sidebar .envynotifs-left-sidebar-wrap .envynotifs-left-sidebar-single .envynotifs-left-sidebar-btn .envynotifs-left-sidebar-button:hover { 795 background-color: #fa7035; 796 } 797 798 .envynotifs-left-sidebar .envynotifs-left-sidebar-close-button { 799 position: absolute; 800 top: 0; 801 right: 0; 802 width: 30px; 803 height: 30px; 804 line-height: 30px; 805 background-color: transparent; 806 display: inline-block; 807 color: #ffffff; 808 -webkit-transition: all ease 0.5s; 809 transition: all ease 0.5s; 810 text-align: center; 811 border: none; 812 cursor: pointer; 813 font-size: 15px; 814 padding: 0 !important; 815 } 816 817 .envynotifs-left-sidebar .envynotifs-left-sidebar-close-button:focus { 818 outline: 0; 819 } 820 821 .envynotifs-left-sidebar .envynotifs-left-sidebar-close-button i { 822 position: relative; 823 left: 0px; 824 font-size: 15px; 825 top: 0px; 826 } 827 828 .envynotifs-left-sidebar .envynotifs-left-sidebar-close-button:hover { 829 background-color: #fa7035; 830 } 831 832 .envynotifs-left-sidebar .envynotifs-left-sidebar-show-button { 833 position: absolute; 834 top: 0; 835 right: 15px; 836 width: 30px; 837 height: 30px; 838 line-height: 30px; 839 background-color: #dd3333; 840 display: inline-block; 841 color: #ffffff; 842 -webkit-transition: all ease 0.5s; 843 transition: all ease 0.5s; 844 text-align: center; 845 cursor: pointer; 846 font-size: 15px; 847 border: none; 848 opacity: 0; 849 display: none; 850 } 851 852 .envynotifs-left-sidebar .envynotifs-left-sidebar-show-button:focus { 853 outline: 0; 854 } 855 856 .envynotifs-left-sidebar .envynotifs-left-sidebar-show-button i { 857 position: relative; 858 left: 0.90px; 859 font-size: 20px; 860 } 861 862 .envynotifs-left-sidebar .envynotifs-left-sidebar-show-button:hover { 863 background-color: #fa7035; 864 } 865 866 .envynotifs-left-sidebar-sign-up .envynotifs-email { 867 width: 60% !important; 868 } 869 870 /** 871 EnvyNotifs Right Sidebar 872 =====================================================**/ 873 .envynotifs-right-sidebar { 874 background-position: center center; 875 background-repeat: no-repeat; 876 background-size: cover; 877 background-color: #5b5bff; 878 padding: 30px; 879 z-index: 9999; 880 max-width: 320px; 881 position: fixed; 882 top: 50%; 883 right: 0; 884 margin: auto; 885 -webkit-transform: translate(0%, -50%); 886 transform: translate(0%, -50%); 887 } 888 889 .envynotifs-right-sidebar-wrap, .envynotifs-right-sidebar-container { 890 font-size: smaller !important; 891 font-family: "Poppins", sans-serif; 892 } 893 894 .envynotifs-right-sidebar.envynotifs-right-sidebar-bg::before { 895 content: ""; 896 position: absolute; 897 top: 0; 898 right: 0; 899 width: 100%; 900 height: 100%; 901 background-color: #000000; 902 opacity: 0.5; 903 z-index: -1; 904 } 905 906 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap { 907 padding: 0; 908 margin: 0; 909 list-style-type: none; 910 } 911 912 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single { 913 margin: 0 0; 914 margin-bottom: 30px; 915 } 916 917 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-title h2 { 918 font-size: 22px; 919 color: #ffffff; 920 margin: 10px 0 0; 921 } 922 923 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-time .envynotifs-right-sidebar-time-list { 924 list-style-type: none; 925 padding: 0; 926 margin: 0; 927 } 928 929 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-time .envynotifs-right-sidebar-time-list li { 930 display: inline-block; 931 color: #ffffff; 932 font-size: 14px; 933 margin: 0 5px; 934 } 935 936 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-time .envynotifs-right-sidebar-time-list li:first-child { 937 margin-right: 0; 938 } 939 940 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-time .envynotifs-right-sidebar-time-list li:last-child { 941 margin-right: 0; 942 } 943 944 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-time .envynotifs-right-sidebar-time-list li span { 945 display: inline; 946 font-size: 15px; 947 margin-top: 5px; 948 position: relative; 949 } 950 951 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-time .envynotifs-right-sidebar-time-list li span::before, .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-time .envynotifs-right-sidebar-time-list li span::after { 952 content: ""; 953 position: absolute; 954 top: 7px; 955 right: -10px; 956 width: 3px; 957 height: 3px; 958 background-color: #ffffff; 959 border-radius: 50%; 960 } 961 962 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-time .envynotifs-right-sidebar-time-list li span::after { 963 top: 14px; 964 } 965 966 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-time .envynotifs-right-sidebar-time-list li:last-child span::before, .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-time .envynotifs-right-sidebar-time-list li:last-child span::after { 967 display: none; 968 } 969 970 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-sign-up form { 971 position: relative; 972 } 973 974 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-sign-up form .form-control { 975 height: 40px; 976 border: none; 977 padding: 0 5px; 978 border-radius: 4px; 979 width: 100%; 980 } 981 982 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-sign-up form .form-control:focus { 983 outline: none !important; 984 border: none !important; 985 background-color: #f5f5f5 !important; 986 } 987 988 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-sign-up form .form-control::-webkit-input-placeholder { 989 font-size: 12px; 990 } 991 992 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-sign-up form .form-control:-ms-input-placeholder { 993 font-size: 12px; 994 } 995 996 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-sign-up form .form-control::-ms-input-placeholder { 997 font-size: 12px; 998 } 999 1000 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-sign-up form .form-control::placeholder { 1001 font-size: 12px; 1002 } 1003 1004 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-sign-up form .envynotifs-right-sidebar-sign-up-btn { 1005 height: 40px; 1006 border: none; 1007 background-color: #222222; 1008 color: #ffffff; 1009 cursor: pointer; 1010 padding: 0 10px; 1011 border-radius: 4px; 1012 position: absolute; 1013 top: 0; 1014 right: -10px; 1015 } 1016 1017 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-sign-up form .envynotifs-right-sidebar-sign-up-btn:focus { 1018 outline: none !important; 1019 border: none !important; 1020 background-color: #f5f5f5 !important; 1021 } 1022 1023 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-sign-up .envynotifs-right-sidebar-subscribe-title { 1024 font-size: 14px; 1025 color: #ffffff; 1026 margin-bottom: 10px; 1027 position: relative; 1028 display: block; 1029 } 1030 1031 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list { 1032 padding: 0; 1033 margin: 0; 1034 list-style-type: none; 1035 } 1036 1037 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list li { 1038 display: inline-block; 1039 margin: 0 5px 0 0; 1040 } 1041 1042 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list li:last-child { 1043 margin-right: 0; 1044 } 1045 1046 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list li .envynotifs-right-sidebar-social { 1047 color: #ffffff; 1048 font-size: 14px; 1049 } 1050 1051 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list li a { 1052 color: #ffffff; 1053 } 1054 1055 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list li a i { 1056 font-size: 13px; 1057 width: 25px; 1058 height: 25px; 1059 line-height: 25px; 1060 background-color: #5b5bff; 1061 color: #ffffff; 1062 text-align: center; 1063 border-radius: 50%; 1064 -webkit-transition: all ease 0.5s; 1065 transition: all ease 0.5s; 1066 } 1067 1068 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list li a:hover i { 1069 -webkit-transform: translateY(-2px); 1070 transform: translateY(-2px); 1071 } 1072 1073 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list li:nth-child(2) a i { 1074 background-color: #3b5998; 1075 } 1076 1077 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list li:nth-child(3) a i { 1078 background-color: #00acee; 1079 } 1080 1081 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list li:nth-child(4) a i { 1082 background-color: #dd4b39; 1083 } 1084 1085 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list li:nth-child(5) a i { 1086 background-color: #0e76a8; 1087 } 1088 1089 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-social-icon .envynotifs-right-sidebar-social-icon-list li:nth-child(6) a i { 1090 background-color: #00aff0; 1091 } 1092 1093 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single.envynotifs-right-sidebar-read-more { 1094 margin-bottom: 0; 1095 } 1096 1097 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-btn .envynotifs-right-sidebar-button { 1098 text-decoration: none; 1099 background-color: #dd3333; 1100 display: inline-block; 1101 padding: 10px 15px; 1102 color: #ffffff; 1103 border-radius: 4px; 1104 -webkit-transition: all ease 0.5s; 1105 transition: all ease 0.5s; 1106 font-size: 14px; 1107 } 1108 1109 .envynotifs-right-sidebar .envynotifs-right-sidebar-wrap .envynotifs-right-sidebar-single .envynotifs-right-sidebar-btn .envynotifs-right-sidebar-button:hover { 1110 background-color: #fa7035; 1111 } 1112 1113 .envynotifs-right-sidebar .envynotifs-right-sidebar-close-button { 1114 position: absolute; 1115 top: 0; 1116 right: 0; 1117 width: 30px; 1118 height: 30px; 1119 line-height: 30px; 1120 background-color: transparent; 1121 display: inline-block; 1122 color: #ffffff; 1123 -webkit-transition: all ease 0.5s; 1124 transition: all ease 0.5s; 1125 text-align: center; 1126 border: none; 1127 cursor: pointer; 1128 font-size: 15px; 1129 padding: 0 !important; 1130 } 1131 1132 .envynotifs-right-sidebar .envynotifs-right-sidebar-close-button:focus { 1133 outline: 0; 1134 } 1135 1136 .envynotifs-right-sidebar .envynotifs-right-sidebar-close-button i { 1137 position: relative; 1138 left: 0; 1139 font-size: 15px; 1140 top: 0; 1141 } 1142 1143 .envynotifs-right-sidebar .envynotifs-right-sidebar-close-button:hover { 1144 background-color: #fa7035; 1145 } 1146 1147 .envynotifs-right-sidebar .envynotifs-right-sidebar-show-button { 1148 position: absolute; 1149 top: 0; 1150 right: 15px; 1151 width: 30px; 1152 height: 30px; 1153 line-height: 30px; 1154 background-color: #dd3333; 1155 display: inline-block; 1156 color: #ffffff; 1157 -webkit-transition: all ease 0.5s; 1158 transition: all ease 0.5s; 1159 text-align: center; 1160 cursor: pointer; 1161 font-size: 15px; 1162 border: none; 1163 opacity: 0; 1164 display: none; 1165 } 1166 1167 .envynotifs-right-sidebar .envynotifs-right-sidebar-show-button:focus { 1168 outline: 0; 1169 } 1170 1171 .envynotifs-right-sidebar .envynotifs-right-sidebar-show-button i { 1172 position: relative; 1173 right: 0.90px; 1174 font-size: 20px; 1175 } 1176 1177 .envynotifs-right-sidebar .envynotifs-right-sidebar-show-button:hover { 1178 background-color: #fa7035; 1179 } 1180 1181 .envynotifs-right-sidebar-sign-up .envynotifs-email { 1182 width: 60% !important; 1183 } 1184 1185 /** 1186 EnvyNotifs Popup 1187 =====================================================**/ 1188 .envynotifs-popup { 1189 background-position: center center; 1190 background-repeat: no-repeat; 1191 background-size: cover; 1192 padding: 30px; 1193 z-index: 9999; 1194 width: 700px; 1195 position: absolute; 1196 top: 50%; 1197 left: 50%; 1198 margin: auto; 1199 -webkit-transform: translate(-50%, -50%); 1200 transform: translate(-50%, -50%); 1201 } 1202 1203 .envynotifs-popup.envynotifs-popup-bg::before { 1204 content: ""; 1205 position: absolute; 1206 top: 0; 1207 left: 0; 1208 width: 100%; 1209 height: 100%; 1210 background-color: #000000; 1211 opacity: 0.5; 1212 z-index: -1; 1213 } 1214 1215 .envynotifs-popup .envynotifs-popup-wrap { 1216 padding: 0; 1217 margin: 0; 1218 list-style-type: none; 1219 text-align: center; 1220 } 1221 1222 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single { 1223 margin: 0 0; 1224 margin-bottom: 30px; 1225 } 1226 1227 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-title h2 { 1228 margin: 10px 0 0; 1229 letter-spacing: initial; 1230 } 1231 1232 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-time .envynotifs-popup-time-list { 1233 list-style-type: none; 1234 padding: 0; 1235 margin: 0; 1236 } 1237 1238 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-time .envynotifs-popup-time-list li { 1239 display: inline-block; 1240 font-size: 14px; 1241 margin: 0 15px; 1242 } 1243 1244 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-time .envynotifs-popup-time-list li:first-child { 1245 margin-left: 0; 1246 } 1247 1248 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-time .envynotifs-popup-time-list li:last-child { 1249 margin-right: 0; 1250 } 1251 1252 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-time .envynotifs-popup-time-list li span { 1253 display: inline; 1254 font-size: 18px; 1255 font-weight: 600; 1256 margin-top: 5px; 1257 position: relative; 1258 } 1259 1260 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-time .envynotifs-popup-time-list li span::before, .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-time .envynotifs-popup-time-list li span::after { 1261 content: ""; 1262 position: absolute; 1263 top: 9px; 1264 right: -20px; 1265 width: 5px; 1266 height: 5px; 1267 background-color: #ffffff; 1268 border-radius: 50%; 1269 } 1270 1271 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-time .envynotifs-popup-time-list li span::after { 1272 top: 17px; 1273 } 1274 1275 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-time .envynotifs-popup-time-list li:last-child span::before, .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-time .envynotifs-popup-time-list li:last-child span::after { 1276 display: none; 1277 } 1278 1279 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-sign-up form { 1280 position: relative; 1281 } 1282 1283 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-sign-up form .form-control { 1284 height: 40px; 1285 border: none; 1286 padding: 0 5px; 1287 border-radius: 4px; 1288 width: 50%; 1289 } 1290 1291 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-sign-up form .form-control:focus { 1292 outline: none !important; 1293 border: none !important; 1294 background-color: #f5f5f5 !important; 1295 } 1296 1297 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-sign-up form .form-control::-webkit-input-placeholder { 1298 font-size: 12px; 1299 } 1300 1301 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-sign-up form .form-control:-ms-input-placeholder { 1302 font-size: 12px; 1303 } 1304 1305 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-sign-up form .form-control::-ms-input-placeholder { 1306 font-size: 12px; 1307 } 1308 1309 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-sign-up form .form-control::placeholder { 1310 font-size: 12px; 1311 } 1312 1313 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-sign-up form .envynotifs-popup-sign-up-btn { 1314 height: 40px; 1315 border: none; 1316 background-color: #222222; 1317 color: #ffffff; 1318 cursor: pointer; 1319 padding: 0 10px; 1320 border-radius: 4px; 1321 margin-left: -15px; 1322 top: 0; 1323 right: -10px; 1324 } 1325 1326 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-sign-up form .envynotifs-popup-sign-up-btn:focus { 1327 outline: none !important; 1328 border: none !important; 1329 background-color: #f5f5f5 !important; 1330 } 1331 1332 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-sign-up .envynotifs-popup-subscribe-title { 1333 font-size: 14px; 1334 margin-bottom: 10px; 1335 position: relative; 1336 display: block; 1337 } 1338 1339 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list { 1340 padding: 0; 1341 margin: 0; 1342 list-style-type: none; 1343 } 1344 1345 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list li { 1346 display: inline-block; 1347 margin: 0 5px 0 0; 1348 } 1349 1350 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list li:last-child { 1351 margin-right: 0; 1352 } 1353 1354 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list li .envynotifs-popup-social { 1355 font-size: 14px; 1356 } 1357 1358 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list li a { 1359 color: #ffffff; 1360 } 1361 1362 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list li a i { 1363 font-size: 13px; 1364 width: 25px; 1365 height: 25px; 1366 line-height: 25px; 1367 background-color: #5b5bff; 1368 color: #ffffff; 1369 text-align: center; 1370 border-radius: 50%; 1371 -webkit-transition: all ease 0.5s; 1372 transition: all ease 0.5s; 1373 } 1374 1375 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list li a:hover i { 1376 -webkit-transform: translateY(-2px); 1377 transform: translateY(-2px); 1378 } 1379 1380 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list li:nth-child(2) a i { 1381 background-color: #3b5998; 1382 } 1383 1384 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list li:nth-child(3) a i { 1385 background-color: #00acee; 1386 } 1387 1388 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list li:nth-child(4) a i { 1389 background-color: #dd4b39; 1390 } 1391 1392 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list li:nth-child(5) a i { 1393 background-color: #0e76a8; 1394 } 1395 1396 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-social-icon .envynotifs-popup-social-icon-list li:nth-child(6) a i { 1397 background-color: #00aff0; 1398 } 1399 1400 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single.envynotifs-popup-read-more { 1401 margin-bottom: 0; 1402 } 1403 1404 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-btn .envynotifs-popup-button { 1405 text-decoration: none; 1406 display: inline-block; 1407 padding: 10px 15px; 1408 -webkit-transition: all ease 0.5s; 1409 transition: all ease 0.5s; 1410 font-size: 14px; 1411 } 1412 1413 .envynotifs-popup .envynotifs-popup-wrap .envynotifs-popup-single .envynotifs-popup-btn .envynotifs-popup-button:hover { 1414 background-color: #fa7035; 1415 } 1416 1417 .envynotifs-popup .envynotifs-popup-close-button { 1418 position: absolute; 1419 top: 0; 1420 right: 0; 1421 width: 30px; 1422 height: 30px; 1423 line-height: 30px; 1424 display: inline-block; 1425 -webkit-transition: all ease 0.5s; 1426 transition: all ease 0.5s; 1427 text-align: center; 1428 cursor: pointer; 1429 font-size: 15px; 1430 padding: 0 !important; 1431 } 1432 1433 .envynotifs-popup .envynotifs-popup-close-button:focus { 1434 outline: 0; 1435 } 1436 1437 .envynotifs-popup .envynotifs-popup-close-button i { 1438 position: relative; 1439 left: 0px; 1440 top: 0px; 1441 } 1442 1443 .envynotifs-popup .envynotifs-popup-close-button:hover { 1444 background-color: #fa7035; 1445 } 1446 1447 .envynotifs-popup .envynotifs-popup-show-button { 1448 position: absolute; 1449 top: 0; 1450 right: 15px; 1451 width: 30px; 1452 height: 30px; 1453 line-height: 30px; 1454 background-color: #dd3333; 1455 display: inline-block; 1456 color: #ffffff; 1457 -webkit-transition: all ease 0.5s; 1458 transition: all ease 0.5s; 1459 text-align: center; 1460 cursor: pointer; 1461 font-size: 15px; 1462 border: none; 1463 opacity: 0; 1464 display: none; 1465 } 1466 1467 .envynotifs-popup .envynotifs-popup-show-button:focus { 1468 outline: 0; 1469 } 1470 1471 .envynotifs-popup .envynotifs-popup-show-button i { 1472 position: relative; 1473 left: 0.90px; 1474 font-size: 20px; 1475 } 1476 1477 .envynotifs-popup .envynotifs-popup-show-button:hover { 1478 background-color: #fa7035; 1479 } 1480 1481 /** 1482 EnvyNotifs Left Sidebar Two 1483 =====================================================**/ 1484 .envynotifs-left-sidebar-two { 1485 background-position: center center; 1486 background-repeat: no-repeat; 1487 background-size: cover; 1488 background-color: #5b5bff; 1489 padding: 0 20px; 1490 z-index: 9999; 1491 text-align: center; 1492 height: 100%; 1493 position: fixed; 1494 top: 0; 1495 left: 0; 1496 -webkit-transition: all ease 0.5s; 1497 transition: all ease 0.5s; 1498 -webkit-writing-mode: vertical-lr; 1499 -ms-writing-mode: tb-lr; 1500 writing-mode: vertical-lr; 1501 overflow: hidden; 1502 } 1503 1504 .envynotifs-left-sidebar-two.envynotifs-left-sidebar-two-bg::before { 1505 content: ""; 1506 position: absolute; 1507 top: 0; 1508 left: 0; 1509 width: 100%; 1510 height: 100%; 1511 background-color: #000000; 1512 opacity: 0.5; 1513 z-index: -1; 1514 } 1515 1516 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap { 1517 padding: 0; 1518 margin: 0; 1519 list-style-type: none; 1520 } 1521 1522 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single { 1523 padding: 15px 0; 1524 display: inline-block; 1525 margin: 0 !important; 1526 } 1527 1528 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single:last-child { 1529 padding-top: 0; 1530 } 1531 1532 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single:first-child { 1533 padding-top: 0; 1534 } 1535 1536 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-title { 1537 -webkit-transform: rotate(180deg); 1538 transform: rotate(180deg); 1539 } 1540 1541 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-title h2 { 1542 font-size: 22px; 1543 color: #ffffff; 1544 margin: -8px 0 0; 1545 } 1546 1547 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-social-icon .envynotifs-left-sidebar-two-social-icon-list { 1548 padding: 0; 1549 margin: 0; 1550 list-style-type: none; 1551 -webkit-transform: rotate(180deg); 1552 transform: rotate(180deg); 1553 } 1554 1555 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-social-icon .envynotifs-left-sidebar-two-social-icon-list li { 1556 display: inline-block; 1557 margin: 5px 0 0 0 !important; 1558 } 1559 1560 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-social-icon .envynotifs-left-sidebar-two-social-icon-list li .envynotifs-left-sidebar-two-social { 1561 color: #ffffff; 1562 font-size: 14px; 1563 } 1564 1565 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-social-icon .envynotifs-left-sidebar-two-social-icon-list li a { 1566 color: #ffffff; 1567 } 1568 1569 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-social-icon .envynotifs-left-sidebar-two-social-icon-list li a i { 1570 font-size: 13px; 1571 width: 25px; 1572 height: 25px; 1573 line-height: 25px; 1574 background-color: #5b5bff; 1575 color: #ffffff; 1576 text-align: center; 1577 border-radius: 50%; 1578 -webkit-transition: all ease 0.5s; 1579 transition: all ease 0.5s; 1580 -webkit-transform: rotate(180deg); 1581 transform: rotate(180deg); 1582 } 1583 1584 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-social-icon .envynotifs-left-sidebar-two-social-icon-list li:nth-child(2) a i { 1585 background-color: #3b5998; 1586 } 1587 1588 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-social-icon .envynotifs-left-sidebar-two-social-icon-list li:nth-child(3) a i { 1589 background-color: #00acee; 1590 } 1591 1592 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-social-icon .envynotifs-left-sidebar-two-social-icon-list li:nth-child(4) a i { 1593 background-color: #dd4b39; 1594 } 1595 1596 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-social-icon .envynotifs-left-sidebar-two-social-icon-list li:nth-child(5) a i { 1597 background-color: #0e76a8; 1598 } 1599 1600 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-social-icon .envynotifs-left-sidebar-two-social-icon-list li:nth-child(6) a i { 1601 background-color: #00aff0; 1602 } 1603 1604 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-read-more { 1605 margin-bottom: 0; 1606 -webkit-transform: rotate(180deg); 1607 transform: rotate(180deg); 1608 } 1609 1610 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-btn .envynotifs-left-sidebar-two-button { 1611 text-decoration: none; 1612 background-color: #dd3333; 1613 display: inline-block; 1614 padding: 10px 8px; 1615 color: #ffffff; 1616 border-radius: 4px; 1617 -webkit-transition: all ease 0.5s; 1618 transition: all ease 0.5s; 1619 font-size: 14px; 1620 transform: rotate(180deg); 1621 } 1622 1623 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-wrap .envynotifs-left-sidebar-two-single .envynotifs-left-sidebar-two-btn .envynotifs-left-sidebar-two-button:hover { 1624 background-color: #fa7035; 1625 } 1626 1627 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-close-button { 1628 position: absolute; 1629 top: 0; 1630 left: 0; 1631 width: 25px; 1632 height: 25px; 1633 line-height: 25px; 1634 background-color: transparent; 1635 display: inline-block; 1636 color: #ffffff; 1637 -webkit-transition: all ease 0.5s; 1638 transition: all ease 0.5s; 1639 text-align: center; 1640 border: none; 1641 cursor: pointer; 1642 font-size: 15px; 1643 padding: 0; 1644 } 1645 1646 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-close-button:focus { 1647 outline: 0; 1648 } 1649 1650 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-close-button i { 1651 position: relative; 1652 left: 0px; 1653 font-size: 15px; 1654 top: -1px; 1655 } 1656 1657 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-close-button:hover { 1658 background-color: #fa7035; 1659 } 1660 1661 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-show-button { 1662 position: absolute; 1663 top: 0; 1664 left: 0; 1665 width: 30px; 1666 height: 30px; 1667 line-height: 30px; 1668 background-color: #dd3333; 1669 display: inline-block; 1670 color: #ffffff; 1671 -webkit-transition: all ease 0.5s; 1672 transition: all ease 0.5s; 1673 text-align: center; 1674 cursor: pointer; 1675 font-size: 15px; 1676 border: none; 1677 display: none; 1678 } 1679 1680 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-show-button:focus { 1681 outline: 0; 1682 } 1683 1684 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-show-button i { 1685 position: relative; 1686 left: 0.90px; 1687 font-size: 20px; 1688 } 1689 1690 .envynotifs-left-sidebar-two .envynotifs-left-sidebar-two-show-button:hover { 1691 background-color: #fa7035; 1692 } 1693 1694 /** 1695 EnvyNotifs Right Sidebar Two 1696 =====================================================**/ 1697 .envynotifs-right-sidebar-two { 1698 background-position: center center; 1699 background-repeat: no-repeat; 1700 background-size: cover; 1701 background-color: #5b5bff; 1702 padding: 0 20px; 1703 z-index: 9999; 1704 text-align: center; 1705 height: 100%; 1706 position: fixed; 1707 top: 0; 1708 right: 0; 1709 -webkit-transition: all ease 0.5s; 1710 transition: all ease 0.5s; 1711 -webkit-writing-mode: vertical-rl; 1712 -ms-writing-mode: tb-rl; 1713 writing-mode: vertical-rl; 1714 overflow: hidden; 1715 } 1716 1717 .envynotifs-right-sidebar-two.envynotifs-right-sidebar-two-bg::before { 1718 content: ""; 1719 position: absolute; 1720 top: 0; 1721 left: 0; 1722 width: 100%; 1723 height: 100%; 1724 background-color: #000000; 1725 opacity: 0.5; 1726 z-index: -1; 1727 } 1728 1729 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap { 1730 padding: 0; 1731 margin: 0; 1732 list-style-type: none; 1733 } 1734 1735 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single { 1736 padding: 15px 0; 1737 display: inline-block; 1738 margin: 0 !important; 1739 padding-top: 0; 1740 } 1741 1742 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single:last-child { 1743 padding-bottom: 0; 1744 } 1745 1746 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-title h2 { 1747 font-size: 22px; 1748 color: #ffffff; 1749 margin: -8px 0 0; 1750 } 1751 1752 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-social-icon .envynotifs-right-sidebar-two-social-icon-list { 1753 padding: 0; 1754 margin: 0; 1755 list-style-type: none; 1756 } 1757 1758 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-social-icon .envynotifs-right-sidebar-two-social-icon-list li { 1759 display: inline-block; 1760 margin: 5px 0 0 0 !important; 1761 } 1762 1763 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-social-icon .envynotifs-right-sidebar-two-social-icon-list li .envynotifs-right-sidebar-two-social { 1764 color: #ffffff; 1765 font-size: 14px; 1766 } 1767 1768 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-social-icon .envynotifs-right-sidebar-two-social-icon-list li a { 1769 color: #ffffff; 1770 } 1771 1772 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-social-icon .envynotifs-right-sidebar-two-social-icon-list li a i { 1773 font-size: 13px; 1774 width: 25px; 1775 height: 25px; 1776 line-height: 25px; 1777 background-color: #5b5bff; 1778 color: #ffffff; 1779 text-align: center; 1780 border-radius: 50%; 1781 -webkit-transition: all ease 0.5s; 1782 transition: all ease 0.5s; 1783 } 1784 1785 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-social-icon .envynotifs-right-sidebar-two-social-icon-list li:nth-child(2) a i { 1786 background-color: #3b5998; 1787 } 1788 1789 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-social-icon .envynotifs-right-sidebar-two-social-icon-list li:nth-child(3) a i { 1790 background-color: #00acee; 1791 } 1792 1793 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-social-icon .envynotifs-right-sidebar-two-social-icon-list li:nth-child(4) a i { 1794 background-color: #dd4b39; 1795 } 1796 1797 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-social-icon .envynotifs-right-sidebar-two-social-icon-list li:nth-child(5) a i { 1798 background-color: #0e76a8; 1799 } 1800 1801 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-social-icon .envynotifs-right-sidebar-two-social-icon-list li:nth-child(6) a i { 1802 background-color: #00aff0; 1803 } 1804 1805 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single.envynotifs-right-sidebar-two-read-more { 1806 margin-bottom: 0; 1807 } 1808 1809 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-btn .envynotifs-right-sidebar-two-button { 1810 text-decoration: none; 1811 background-color: #dd3333; 1812 display: inline-block; 1813 padding: 10px 8px; 1814 color: #ffffff; 1815 border-radius: 4px; 1816 -webkit-transition: all ease 0.5s; 1817 transition: all ease 0.5s; 1818 font-size: 14px; 1819 } 1820 1821 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-wrap .envynotifs-right-sidebar-two-single .envynotifs-right-sidebar-two-btn .envynotifs-right-sidebar-two-button:hover { 1822 background-color: #fa7035; 1823 } 1824 1825 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-close-button { 1826 position: absolute; 1827 top: 0; 1828 right: 0; 1829 width: 25px; 1830 height: 25px; 1831 line-height: 25px; 1832 background-color: transparent; 1833 display: inline-block; 1834 color: #ffffff; 1835 -webkit-transition: all ease 0.5s; 1836 transition: all ease 0.5s; 1837 text-align: center; 1838 border: none; 1839 cursor: pointer; 1840 font-size: 15px; 1841 padding: 0 !important; 1842 } 1843 1844 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-close-button:focus { 1845 outline: 0; 1846 } 1847 1848 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-close-button i { 1849 position: relative; 1850 left: 0.60px; 1851 font-size: 15px; 1852 top: -1px; 1853 } 1854 1855 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-close-button:hover { 1856 background-color: #fa7035; 1857 } 1858 1859 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-show-button { 1860 position: absolute; 1861 top: 0; 1862 right: 0; 1863 width: 30px; 1864 height: 30px; 1865 line-height: 30px; 1866 background-color: #dd3333; 1867 display: inline-block; 1868 color: #ffffff; 1869 -webkit-transition: all ease 0.5s; 1870 transition: all ease 0.5s; 1871 text-align: center; 1872 cursor: pointer; 1873 font-size: 15px; 1874 border: none; 1875 display: none; 1876 } 1877 1878 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-show-button:focus { 1879 outline: 0; 1880 } 1881 1882 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-show-button i { 1883 position: relative; 1884 left: 0.90px; 1885 font-size: 20px; 1886 } 1887 1888 .envynotifs-right-sidebar-two .envynotifs-right-sidebar-two-show-button:hover { 1889 background-color: #fa7035; 1890 } -
envynotifs/trunk/public/css/font-awesome.min.css
r2405561 r2439289 1 1 /*! 2 * Font Awesome 4. 5.0 by @davegandy - http://fontawesome.io - @fontawesome2 * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 3 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4. 5.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}4 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} -
envynotifs/trunk/public/js/envy-notifs-public.js
r2405561 r2439289 3 3 4 4 $(document).ready(function(){ 5 $('#envynotifs-close-btn1').click(function(){ 6 $('body').css('transition', '1s').css('margin-top', '0px'); 7 $('.notifino-top-panel').slideUp('slow'); 8 $('#notifino-open-close1').css('display', 'block'); 9 }); 5 10 6 $("#notifino-close1").click(function(){7 $("body").css('transition', '1s').css('margin-top', '0px');8 $(".notifino-top-panel").slideUp("slow");9 $("#notifino-open-close1").css('display', 'block');10 });11 $('#notifino-open-close1').click(function(){ 12 $('.notifino-top-panel').slideDown('slow'); 13 $('.notifino-top-panel').css('display', 'block'); 14 $('#notifino-open-close1').css('display', 'none'); 15 }); 11 16 12 $("#notifino-open-close1").click(function(){ 13 $(".notifino-top-panel").slideDown("slow"); 14 $("#notifino-open-close1").css('display', 'none'); 15 }); 17 $("#envynotifs-close-btn2").click(function(){ 18 $(".notifino-bottom-panel").animate({ 19 height: 'toggle' 20 }); 21 $("#notifino-open-close2").css('display', 'block'); 22 }); 16 23 17 $("#notifino-close2").click(function(){ 18 $(".notifino-bottom-panel").animate({ 19 height: 'toggle' 24 $("#notifino-open-close2").click(function(){ 25 $(".notifino-bottom-panel").animate({ 26 height: 'toggle' 27 }); 28 $("#notifino-open-close2").css('display', 'none'); 20 29 }); 21 $("#notifino-open-close2").css('display', 'block');22 });23 30 24 $("#notifino-open-close2").click(function(){ 25 $(".notifino-bottom-panel").animate({ 26 height: 'toggle' 31 $("#envynotifs-close-btn3").click(function(){ 32 $(".envynotifs-popup").fadeOut(1000); 27 33 }); 28 $("#notifino-open-close2").css('display', 'none');29 });30 34 31 $("#notifino-close3").click(function(){ 32 $(".sidebar-left-panel").css('transition','1s').css('left', '-60px'); 33 $("body").css('margin-left', '0px'); 34 $("#notifino-open-close3").css('display', 'block'); 35 }); 35 $("#envynotifs-close-btn4").click(function(){ 36 $(".notifino-inside-left-panel").fadeOut(1000); 37 $("#notifino-open-close4").css('display', 'block'); 38 $("#notifino-open-close4").click(function(){ 39 $(".notifino-inside-left-panel").fadeIn(1000); 40 $("#notifino-open-close4").css('display', 'none'); 41 }); 42 }); 36 43 37 $("#notifino-close4").click(function(){ 38 $(".sidebar-right-panel").css('transition','1s').css('right', '-60px'); 39 $("body").css('margin-right', '0px'); 40 $("#notifino-open-close4").css('display', 'block'); 41 }); 44 $("#envynotifs-close-btn5").click(function(){ 45 $(".notifino-inside-right-panel").fadeOut(1000); 46 $("#notifino-open-close5").css('display', 'block'); 47 $("#notifino-open-close5").click(function(){ 48 $(".notifino-inside-right-panel").fadeIn(1000); 49 $("#notifino-open-close5").css('display', 'none'); 50 }); 51 }); 42 52 43 $("#notifino-open-close3").click(function(){ 44 $(".sidebar-left-panel").css('transition','1s').css('left', '0px'); 45 $("body").css('transition','1s').css('margin-left', '60px'); 46 $("#notifino-open-close3").css('display', 'none'); 47 }); 53 $("#envynotifs-close-btn6").click(function(){ 54 $(".notifino-outside-left-panel").fadeOut(1000); 55 $("body").css('transition', '1s').css('margin', '0'); 56 $("#notifino-open-close6").css('display', 'block'); 57 $("#notifino-open-close6").click(function(){ 58 $(".notifino-outside-left-panel").fadeIn(1000); 59 $("body").css('transition', '1s').css('margin-left', '72px'); 60 $("#notifino-open-close6").css('display', 'none'); 61 }); 62 }); 48 63 49 $("#notifino-open-close4").click(function(){ 50 $(".sidebar-right-panel").css('transition','1s').css('right', '0px'); 51 $("body").css('transition','1s').css('margin-right', '60px'); 52 $("#notifino-open-close4").css('display', 'none'); 53 }); 64 $("#envynotifs-close-btn7").click(function(){ 65 $(".notifino-outside-right-panel").fadeOut(1000); 66 $("body").css('transition', '1s').css('margin', '0'); 67 $("#notifino-open-close7").css('display', 'block'); 68 $("#notifino-open-close7").click(function(){ 69 $(".notifino-outside-right-panel").fadeIn(1000); 70 $("body").css('transition', '1s').css('margin-right', '72px'); 71 $("#notifino-open-close7").css('display', 'none'); 72 }); 73 }); 54 74 55 $(window).on('load', function(){ 56 setTimeout(function() { 57 $("#onload-popup").modal('show', {}, 9000); 58 }, 100); 59 }); 60 75 $(".mc4wp-form-fields p label input[type='email']").addClass('envynotifs-email form-control'); 76 $(".mc4wp-form-fields p input[type='submit']").addClass('envynotifs-sign-up-btn'); 61 77 }); 62 78 -
envynotifs/trunk/public/partials/envy-notifs-public-display.php
r2405561 r2439289 7 7 * 8 8 * @link https://envytheme.com/ 9 * @since 1. 0.09 * @since 1.1 10 10 * 11 11 * @package Envy_Notifs … … 13 13 */ 14 14 15 // Global Variable 15 $notifs_bar_start_date = (array)get_option('new_settings'); 16 if( isset( $notifs_bar_start_date['select-start-date'] ) ) : 17 $notifs_bar_start_date_new = $notifs_bar_start_date['select-start-date']; 18 else: 19 $notifs_bar_start_date_new = ''; 20 endif; 16 21 17 $notifs_bar_start_date = (array)get_option('new_settings');18 if( isset( $notifs_bar_start_date['select-start-date'] ) ) :19 $notifs_bar_ start_date_new = $notifs_bar_start_date['select-start-date'];20 else:21 $notifs_bar_ start_date_new = '';22 22 $notifs_bar_end_date = (array)get_option('new_settings'); 23 if( isset( $notifs_bar_end_date['select-end-date'] ) ) : 24 $notifs_bar_end_date_new = $notifs_bar_end_date['select-end-date']; 25 else: 26 $notifs_bar_end_date_new = ''; 27 endif; 23 28 24 $notifs_bar_end_date = (array)get_option('new_settings');25 if( isset( $notifs_bar_end_date['select-end-date'] ) ) :26 $notifs_bar_ end_date_new = $notifs_bar_end_date['select-end-date'];27 else:28 $notifs_bar_ end_date_new = '';29 29 $notifs_bar_start_time = (array)get_option('new_settings'); 30 if( isset( $notifs_bar_start_time['select-start-time'] ) ) : 31 $notifs_bar_start_time_new = $notifs_bar_start_time['select-start-time']; 32 else: 33 $notifs_bar_start_time_new = ''; 34 endif; 30 35 31 $notifs_bar_start_time = (array)get_option('new_settings');32 if( isset( $notifs_bar_start_time['select-start-time'] ) ) :33 $notifs_bar_ start_time_new = $notifs_bar_start_time['select-start-time'];34 else:35 $notifs_bar_ start_time_new = '';36 endif; 36 $notifs_bar_end_time = (array)get_option('new_settings'); 37 if( isset( $notifs_bar_end_time['select-end-time'] ) ) : 38 $notifs_bar_end_time_new = $notifs_bar_end_time['select-end-time']; 39 else: 40 $notifs_bar_end_time_new = ''; 41 endif; ?> 37 42 38 $notifs_bar_end_time = (array)get_option('new_settings'); 39 if( isset( $notifs_bar_end_time['select-end-time'] ) ) : 40 $notifs_bar_end_time_new = $notifs_bar_end_time['select-end-time']; 41 else : 42 $notifs_bar_end_time_new = ''; 43 endif; ?> 43 <?php if( current_time('Y-m-d') >= $notifs_bar_start_date_new 44 && current_time('Y-m-d') <= $notifs_bar_end_date_new 45 && current_time('G:i') >= $notifs_bar_start_time_new 46 && current_time('G:i') <= $notifs_bar_end_time_new 47 || current_time('Y-m-d') >= $notifs_bar_start_date_new && 48 current_time('Y-m-d') <= $notifs_bar_end_date_new && $notifs_bar_start_time_new == '' 49 || current_time('G:i') >= $notifs_bar_start_time_new 50 && current_time('G:i') <= $notifs_bar_end_time_new && $notifs_bar_start_date_new == '' 51 || $notifs_bar_start_date_new == '' && $notifs_bar_start_date_new == '' ) : 44 52 45 <?php if( current_time('Y-m-d') >= $notifs_bar_start_date_new 46 && current_time('Y-m-d') <= $notifs_bar_end_date_new 47 && current_time('G:i') >= $notifs_bar_start_time_new 48 && current_time('G:i') <= $notifs_bar_end_time_new 49 || current_time('Y-m-d') >= $notifs_bar_start_date_new && 50 current_time('Y-m-d') <= $notifs_bar_end_date_new && $notifs_bar_start_time_new == '' 51 || current_time('G:i') >= $notifs_bar_start_time_new 52 && current_time('G:i') <= $notifs_bar_end_time_new && $notifs_bar_start_date_new == '' 53 || $notifs_bar_start_date_new == '' && $notifs_bar_start_date_new == '' ) : 53 $notifs_bar_single_show = (array)get_option('new_settings'); 54 if( isset( $notifs_bar_single_show['select-single-position'] ) ) : 55 $notifs_bar_single_show_new = $notifs_bar_single_show['select-single-position']; 56 else: 57 $notifs_bar_single_show_new = ''; 58 endif; 54 59 55 $notifs_bar_single_show = (array)get_option('new_settings'); 56 if( isset( $notifs_bar_single_show['select-single-position'] ) ) : 57 $notifs_bar_single_show_new = $notifs_bar_single_show['select-single-position']; 58 else : 59 $notifs_bar_single_show_new = ''; 60 endif; 61 62 if( $notifs_bar_single_show_new == 'all' 63 || $notifs_bar_single_show_new == 'home' && is_home() 64 || $notifs_bar_single_show_new == 'home' && is_front_page() 65 || $notifs_bar_single_show_new == 'pages' && is_page() 66 || $notifs_bar_single_show_new == 'posts' && ! is_page() && ! is_home() ) : 67 68 $notifs_bar_position = (array)get_option('new_settings'); 69 if ( isset( $notifs_bar_position['select-global-position'] ) ) : 60 if( $notifs_bar_single_show_new == 'all' 61 || $notifs_bar_single_show_new == 'home' && is_home() 62 || $notifs_bar_single_show_new == 'home' && is_front_page() 63 || $notifs_bar_single_show_new == 'pages' && is_page() 64 || $notifs_bar_single_show_new == 'posts' && ! is_page() && ! is_home() ) : 65 66 $notifs_bar_position = (array)get_option('new_settings'); 67 if ( isset( $notifs_bar_position['select-global-position'] ) ) : 70 68 $envy_notifs_global = $notifs_bar_position['select-global-position']; 71 else:72 73 74 69 else: 70 $envy_notifs_global = ''; 71 endif; 72 $envy_notifs_pages = get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ); 75 73 76 74 if( $envy_notifs_global == 'popup' ) : 77 75 78 // Output for popup bar 79 function notifs_show_popup() { 80 $popup_notice_show = new WP_Query( array( 81 'post_type' => 'envynotifs', 82 'posts_per_page' => 1, 83 )); 84 while( $popup_notice_show->have_posts() ) : $popup_notice_show->the_post() ?> 85 <div class="modal fade notice_popup" id="onload-popup" tabindex="-1" role="dialog" aria-hidden="true"> 86 <div class="modal-dialog modal-lg modal-dialog-centered" role="document"> 87 <div class="modal-content"> 88 <div class="modal-body"> 89 <button type="button" class="close" data-dismiss="modal" aria-label="Close"> 90 <?php $notifs_bar_icon_class = (array)get_option('new_settings'); 91 if( $notifs_bar_icon_class['notifs-bar-icon-class'] ) : ?> 92 <span id="notifino-close1" class="notifino-close-btn-small notifino-btn-rounded"> 93 <i class="<?php echo esc_attr( $notifs_bar_icon_class["notifs-bar-icon-class"] ); ?>"> 94 </i> 95 </span> 96 <?php else: ?> 97 <span id="notifino-close1" class="notifino-close-btn-small notifino-btn-rounded"> 98 <i class="fa fa-close"></i> 99 </span> 100 <?php endif; ?> 101 </button> 102 <div class="row no-gutters"> 103 <div class="col-sm-12"> 104 <div class="popup_content"> 105 <div class="popup-text"> 106 <div class="heading_s4"> 107 <h2 class="notice_heading"> 108 <?php $notifs_bar_scroll_show = (array)get_option('new_settings'); 109 if( isset( $notifs_bar_scroll_show['notifs-scroll-show'] ) ) : 110 $notifs_bar_scroll_show_new = $notifs_bar_scroll_show['notifs-scroll-show']; 111 else: 112 $notifs_bar_scroll_show_new = ''; 113 endif; 114 if( $notifs_bar_scroll_show_new ) : ?> 115 <marquee style="text-align: center !important;"><?php the_title(); ?></marquee> 116 <?php else: 117 the_title(); 118 endif; ?> 119 </h2> 120 </div> 121 <?php 122 $notifs_bar_end_date = (array)get_option('new_settings'); 123 if( isset( $notifs_bar_end_date['select-end-date'] ) ) : 124 $notifs_bar_end_date_new = $notifs_bar_end_date['select-end-date']; 125 else : 126 $notifs_bar_end_date_new = ''; 127 endif; 128 $notifs_bar_end_time = (array)get_option('new_settings'); 129 if( isset( $notifs_bar_end_time['select-end-time'] ) ) : 130 $notifs_bar_end_time_new = $notifs_bar_end_time['select-end-time']; 131 else : 132 $notifs_bar_end_time_new = ''; 133 endif; ?> 134 <?php if( ! $notifs_bar_end_date_new == '' ) : ?> 135 <div class="text-center countdown show" data-Date='<?php echo wp_kses_post($notifs_bar_end_date_new); echo wp_kses_post(' '.$notifs_bar_end_time_new); ?>'> 136 <div class="running"> 137 <div class="labels"><span><?php echo esc_html__('Days', 'envy-notifs'); ?></span><span><?php echo esc_html__('Hours', 'envy-notifs'); ?></span><span><?php echo esc_html__('Minutes', 'envy-notifs'); ?></span><span><?php echo esc_html__('Seconds', 'envy-notifs'); ?></span> 138 </div> 139 <div class="break"></div> 140 <timer> 141 <span class="days"></span>:<span class="hours"></span>:<span class="minutes"></span>:<span class="seconds"></span> 142 </timer> 143 </div> 144 </div> 145 <?php endif; ?> 146 <?php if( get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ) ) : ?> 147 <div class="notifino-buttons" style="margin-top: 10px; margin-bottom: 30px;"> 148 <?php $notifs_bar_btn_text = (array)get_option('new_settings'); 149 if( $notifs_bar_btn_text['notifs-bar-btn-text'] ) : ?> 150 <a href="<?php echo get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ); ?>" class="notifino-second-button"> 151 <?php 152 echo esc_html__($notifs_bar_btn_text['notifs-bar-btn-text']); 153 ?> 154 </a> 155 <?php else: ?> 156 <a href="<?php echo get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ); ?>" class="notifino-second-button"> 157 <?php echo esc_html__('Read More', 'envy-notifs'); ?> 158 </a> 159 <?php endif; ?> 160 </div> 161 <?php endif; ?> 162 </div> 163 </div> 164 </div> 165 </div> 166 </div> 167 </div> 168 </div> 169 </div> 170 <?php endwhile; 171 } 76 require plugin_dir_path( __FILE__ ) . 'templates/envy-notifs-popup.php'; 172 77 173 add_action( 'wp_footer', 'notifs_show_popup' ); 78 elseif( $envy_notifs_global == 'none' && $envy_notifs_pages == 'top' 79 || $envy_notifs_global == 'top' && $envy_notifs_pages == '' 80 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'default' 81 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'top' 82 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'none' 83 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == 'top' 84 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == 'top' 85 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == 'top' ) : 174 86 175 elseif( $envy_notifs_global == 'none' && $envy_notifs_pages == 'top' 176 || $envy_notifs_global == 'top' && $envy_notifs_pages == '' 177 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'default' 178 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'top' 179 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'none' 180 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == 'top' 181 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == 'top' 182 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == 'top' ) : 87 require plugin_dir_path( __FILE__ ) . 'templates/envy-notifs-top-bar.php'; 183 88 184 // Output for Top Bar 185 function notifs_show_top() { ?> 186 <?php $top_notice_show = new WP_Query( array( 187 'post_type' => 'envynotifs', 188 'posts_per_page' => 1, 189 )); 190 ?> 191 <?php while( $top_notice_show->have_posts() ) : $top_notice_show->the_post() ?> 192 <div class="notifino notifino-top-panel"> 193 <div class="notifino-standard"> 194 <div class="notifino-content"> 195 <div class="row"> 196 <div class="col-lg-9 col-sm-12"> 197 <?php 198 $notifs_bar_end_date = (array)get_option('new_settings'); 199 if( isset( $notifs_bar_end_date['select-end-date'] ) ) : 200 $notifs_bar_end_date_new = $notifs_bar_end_date['select-end-date']; 201 else : 202 $notifs_bar_end_date_new = ''; 203 endif; 204 $notifs_bar_end_time = (array)get_option('new_settings'); 205 if( isset( $notifs_bar_end_time['select-end-time'] ) ) : 206 $notifs_bar_end_time_new = $notifs_bar_end_time['select-end-time']; 207 else : 208 $notifs_bar_end_time_new = ''; 209 endif; ?> 210 <?php if( ! $notifs_bar_end_date_new == '' ): ?> 211 <div class="row"> 212 <div class="col-lg-8 col-sm-12"> 213 <div class="d-flex h-100"> 214 <div class="row justify-content-center align-self-center"> 215 <h2 class="notice_heading"> 216 <?php $notifs_bar_scroll_show = (array)get_option('new_settings'); 217 if( isset( $notifs_bar_scroll_show['notifs-scroll-show'] ) ) : 218 $notifs_bar_scroll_show_new = $notifs_bar_scroll_show['notifs-scroll-show']; 219 else: 220 $notifs_bar_scroll_show_new = ''; 221 endif; 222 if( $notifs_bar_scroll_show_new ) : ?> 223 <marquee><?php the_title(); ?></marquee> 224 <?php else: 225 the_title(); 226 endif; ?> 227 </h2> 228 </div> 229 </div> 230 </div> 231 <div class="col-lg-4 col-sm-12"> 232 <div class="text-center countdown show" data-Date='<?php echo wp_kses_post($notifs_bar_end_date_new); echo wp_kses_post(' '.$notifs_bar_end_time_new); ?>'> 233 <div class="running"> 234 <div class="labels"><span><?php echo esc_html__('Days', 'envy-notifs'); ?></span><span><?php echo esc_html__('Hours', 'envy-notifs'); ?></span><span><?php echo esc_html__('Minutes', 'envy-notifs'); ?></span><span><?php echo esc_html__('Seconds', 'envy-notifs'); ?></span> 235 </div> 236 <div class="break"></div> 237 <timer> 238 <span class="days"></span>:<span class="hours"></span>:<span class="minutes"></span>:<span class="seconds"></span> 239 </timer> 240 </div> 241 </div> 242 </div> 243 </div> 244 <?php else : ?> 245 <div class="d-flex h-100"> 246 <div class="justify-content-center align-self-center"> 247 <h2 class="notice_heading no-countdown"> 248 <?php $notifs_bar_scroll_show = (array)get_option('new_settings'); 249 if( isset( $notifs_bar_scroll_show['notifs-scroll-show'] ) ) : 250 $notifs_bar_scroll_show_new = $notifs_bar_scroll_show['notifs-scroll-show']; 251 else: 252 $notifs_bar_scroll_show_new = ''; 253 endif; 254 if( $notifs_bar_scroll_show_new ) : ?> 255 <marquee><?php the_title(); ?></marquee> 256 <?php else: 257 the_title(); 258 endif; ?> 259 </h2> 260 </div> 261 </div> 262 <?php endif; ?> 263 </div> 264 <div class="col-lg-3 col-sm-12"> 265 <div class="d-flex h-100"> 266 <div class="justify-content-center align-self-center"> 267 <div class="notifino-buttons"> 268 <?php if( get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ) ) : ?> 269 <?php $notifs_bar_btn_text = (array)get_option('new_settings'); 270 if( $notifs_bar_btn_text['notifs-bar-btn-text'] ) : ?> 271 <a href="<?php echo get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ); ?>" class="notifino-second-button"> 272 <?php 273 echo esc_html__($notifs_bar_btn_text['notifs-bar-btn-text']); 274 ?> 275 </a> 276 <?php else: ?> 277 <a href="<?php echo get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ); ?>" class="notifino-second-button"> 278 <?php echo esc_html__('Read More', 'envy-notifs'); ?> 279 </a> 280 <?php endif; 281 endif; 282 $notifs_bar_icon_class = (array)get_option('new_settings'); 283 if( $notifs_bar_icon_class['notifs-bar-icon-class'] ) : ?> 284 <a id="notifino-close1" class="notifino-close-btn-small notifino-btn-rounded"> 285 <i class="<?php echo esc_attr( $notifs_bar_icon_class["notifs-bar-icon-class"] ); ?>"> 286 </i> 287 </a> 288 <?php else: ?> 289 <a id="notifino-close1" class="notifino-close-btn-small notifino-btn-rounded"> 290 <i class="fa fa-close"></i> 291 </a> 292 <?php endif; ?> 293 </div> 294 </div> 295 </div> 296 </div> 297 </div> 298 </div> 299 </div> 300 </div> 301 <?php endwhile; ?> 89 elseif( $envy_notifs_global == 'none' && $envy_notifs_pages == 'bottom' 90 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == '' 91 || $envy_notifs_global == 'none' && $envy_notifs_pages == 'bottom' 92 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == 'default' 93 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'bottom' 94 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == 'bottom' 95 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == 'bottom' 96 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == 'bottom' ) : 302 97 303 <a id="notifino-open-close1" class="notifino-btn-rounded"> 304 <?php echo wp_kses_post('<i class="fa fa-angle-double-up"></i>'); ?> 305 </a> 306 307 <?php $notifs_bar_start_date = (array)get_option('new_settings'); 308 if( isset( $notifs_bar_start_date['select-start-date'] ) ) : 309 $notifs_bar_start_date_new = $notifs_bar_start_date['select-start-date']; 310 else : 311 $notifs_bar_start_date_new = ''; 312 endif; 98 require plugin_dir_path( __FILE__ ) . 'templates/envy-notifs-bottom-bar.php'; 313 99 314 $notifs_bar_end_date = (array)get_option('new_settings'); 315 if( isset( $notifs_bar_end_date['select-end-date'] ) ) : 316 $notifs_bar_end_date_new = $notifs_bar_end_date['select-end-date']; 317 else : 318 $notifs_bar_end_date_new = ''; 319 endif; ?> 100 elseif( $envy_notifs_global == 'none' && $envy_notifs_pages == 'leftside' 101 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == '' 102 || $envy_notifs_global == 'none' && $envy_notifs_pages == 'leftside' 103 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == 'default' 104 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'leftside' 105 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == 'leftside' 106 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == 'leftside' 107 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == 'leftside' ) : 320 108 321 <?php if( ! $notifs_bar_end_date_new == '' && ! wp_is_mobile() ) : ?> 322 <script> 323 jQuery("body").css('margin-top', '70px'); 324 jQuery(".notifino-top-panel").css('height', '70px') 325 jQuery("#notifino-open-close1").click(function(){ 326 jQuery("body").css('margin-top', '70px'); 327 }); 328 </script> 329 <?php elseif( ! $notifs_bar_end_date_new == '' && wp_is_mobile() ) : ?> 330 <script> 331 jQuery("body").css('margin-top', '150px'); 332 jQuery(".notifino-top-panel").css('height', '150px') 333 jQuery("#notifino-open-close1").click(function(){ 334 jQuery("body").css('margin-top', '150px'); 335 }); 336 </script> 337 <?php elseif( $notifs_bar_end_date_new == '' && ! wp_is_mobile() ) : ?> 338 <script> 339 jQuery("body").css('margin-top', '50px'); 340 jQuery(".notifino-top-panel").css('height', '50px') 341 jQuery("#notifino-open-close1").click(function(){ 342 jQuery("body").css('margin-top', '50px'); 343 }); 344 </script> 345 <?php elseif( $notifs_bar_end_date_new == '' && wp_is_mobile() ) : ?> 346 <script> 347 jQuery("body").css('margin-top', '100px'); 348 jQuery(".notifino-top-panel").css('height', '100px') 349 jQuery("#notifino-open-close1").click(function(){ 350 jQuery("body").css('margin-top', '100px'); 351 }); 352 </script> 353 <?php endif; ?> 109 $notifs_left_right_position = (array)get_option('new_settings'); 110 if( isset( $notifs_left_right_position['select-left-right-position'] ) ) : 111 $notifs_left_right_position_new = $notifs_left_right_position['select-left-right-position']; 112 else: $notifs_left_right_position_new = ''; 113 endif; 354 114 355 <?php if( is_user_logged_in() ) : ?> 356 <script> 357 jQuery(document).ready(function(){ 358 jQuery(".notifino-top-panel, #notifino-open-close1").css('top', '32px'); 359 }); 360 </script> 361 <style> 362 @media only screen and (min-width: 1200px) { 363 .sidebar-left-panel .notifino-second-button, .sidebar-right-panel .notifino-second-button { 364 margin-bottom: 3px !important; 365 } 366 } 367 </style> 368 <?php endif; ?> 115 if( $notifs_left_right_position_new == 'inside-window' ) : 116 require plugin_dir_path( __FILE__ ) . 'templates/envy-notifs-left-sidebar-inside.php'; 117 elseif( $notifs_left_right_position_new == 'outside-window' ) : 118 require plugin_dir_path( __FILE__ ) . 'templates/envy-notifs-left-sidebar-outside.php'; 119 endif; 369 120 370 <?php } 121 elseif( $envy_notifs_global == 'none' && $envy_notifs_pages == 'rightside' 122 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == '' 123 || $envy_notifs_global == 'none' && $envy_notifs_pages == 'rightside' 124 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == 'default' 125 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'rightside' 126 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == 'rightside' 127 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == 'rightside' 128 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == 'rightside' ) : 371 129 372 add_action( 'wp_footer', 'notifs_show_top' ); 130 $notifs_left_right_position = (array)get_option('new_settings'); 131 if( isset( $notifs_left_right_position['select-left-right-position'] ) ) : 132 $notifs_left_right_position_new = $notifs_left_right_position['select-left-right-position']; 133 else: $notifs_left_right_position_new = ''; 134 endif; 373 135 374 elseif( $envy_notifs_global == 'none' && $envy_notifs_pages == 'bottom' 375 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == '' 376 || $envy_notifs_global == 'none' && $envy_notifs_pages == 'bottom' 377 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == 'default' 378 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'bottom' 379 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == 'bottom' 380 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == 'bottom' 381 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == 'bottom' ) : 136 if( $notifs_left_right_position_new == 'inside-window' ) : 137 require plugin_dir_path( __FILE__ ) . 'templates/envy-notifs-right-sidebar-inside.php'; 138 elseif( $notifs_left_right_position_new == 'outside-window' ) : 139 require plugin_dir_path( __FILE__ ) . 'templates/envy-notifs-right-sidebar-outside.php'; 140 endif; 382 141 383 // Output for Bottom Bar 384 function notifs_show_bottom() { ?> 385 <?php $bottom_notice_show = new WP_Query( array( 386 'post_type' => 'envynotifs', 387 'posts_per_page' => 1 388 )); 389 ?> 390 <?php while( $bottom_notice_show->have_posts() ) : $bottom_notice_show->the_post() ?> 391 <div class="notifino notifino-bottom-panel"> 392 <div class="notifino-standard"> 393 <div class="notifino-content"> 394 <div class="row"> 395 <div class="col-lg-9 col-sm-12"> 396 <?php 397 $notifs_bar_end_date = (array)get_option('new_settings'); 398 if( isset( $notifs_bar_end_date['select-end-date'] ) ) : 399 $notifs_bar_end_date_new = $notifs_bar_end_date['select-end-date']; 400 else : 401 $notifs_bar_end_date_new = ''; 402 endif; 403 $notifs_bar_end_time = (array)get_option('new_settings'); 404 if( isset( $notifs_bar_end_time['select-end-time'] ) ) : 405 $notifs_bar_end_time_new = $notifs_bar_end_time['select-end-time']; 406 else : 407 $notifs_bar_end_time_new = ''; 408 endif; ?> 409 <?php if( ! $notifs_bar_end_date_new == '' ): ?> 410 <div class="row"> 411 <div class="col-lg-8 col-sm-12"> 412 <div class="d-flex h-100"> 413 <div class="row justify-content-center align-self-center"> 414 <h2 class="notice_heading"> 415 <?php $notifs_bar_scroll_show = (array)get_option('new_settings'); 416 if( isset( $notifs_bar_scroll_show['notifs-scroll-show'] ) ) : 417 $notifs_bar_scroll_show_new = $notifs_bar_scroll_show['notifs-scroll-show']; 418 else: 419 $notifs_bar_scroll_show_new = ''; 420 endif; 421 if( $notifs_bar_scroll_show_new ) : ?> 422 <marquee><?php the_title(); ?></marquee> 423 <?php else: 424 the_title(); 425 endif; ?> 426 </h2> 427 </div> 428 </div> 429 </div> 430 <div class="col-lg-4 col-sm-12"> 431 <div class="text-center countdown show" data-Date='<?php echo wp_kses_post($notifs_bar_end_date_new); echo wp_kses_post(' '.$notifs_bar_end_time_new); ?>'> 432 <div class="running"> 433 <div class="labels"><span><?php echo esc_html__('Days', 'envy-notifs'); ?></span><span><?php echo esc_html__('Hours', 'envy-notifs'); ?></span><span><?php echo esc_html__('Minutes', 'envy-notifs'); ?></span><span><?php echo esc_html__('Seconds', 'envy-notifs'); ?></span> 434 </div> 435 <div class="break"></div> 436 <timer> 437 <span class="days"></span>:<span class="hours"></span>:<span class="minutes"></span>:<span class="seconds"></span> 438 </timer> 439 </div> 440 </div> 441 </div> 442 </div> 443 <?php else : ?> 444 <div class="d-flex h-100"> 445 <div class="justify-content-center align-self-center"> 446 <h2 class="notice_heading no-countdown"> 447 <?php $notifs_bar_scroll_show = (array)get_option('new_settings'); 448 if( isset( $notifs_bar_scroll_show['notifs-scroll-show'] ) ) : 449 $notifs_bar_scroll_show_new = $notifs_bar_scroll_show['notifs-scroll-show']; 450 else: 451 $notifs_bar_scroll_show_new = ''; 452 endif; 453 if( $notifs_bar_scroll_show_new ) : ?> 454 <marquee><?php the_title(); ?></marquee> 455 <?php else: 456 the_title(); 457 endif; ?> 458 </h2> 459 </div> 460 </div> 461 <?php endif; ?> 462 </div> 463 <div class="col-lg-3 col-sm-12"> 464 <div class="d-flex h-100"> 465 <div class="justify-content-center align-self-center"> 466 <div class="notifino-buttons"> 467 <?php if( get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ) ) : ?> 468 <?php $notifs_bar_btn_text = (array)get_option('new_settings'); 469 if( $notifs_bar_btn_text['notifs-bar-btn-text'] ) : ?> 470 <a href="<?php echo get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ); ?>" class="notifino-second-button"> 471 <?php 472 echo esc_html__($notifs_bar_btn_text['notifs-bar-btn-text']); 473 ?> 474 </a> 475 <?php else: ?> 476 <a href="<?php echo get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ); ?>" class="notifino-second-button"> 477 <?php echo esc_html__('Read More', 'envy-notifs'); ?> 478 </a> 479 <?php endif; 480 endif; 481 $notifs_bar_icon_class = (array)get_option('new_settings'); 482 if( $notifs_bar_icon_class['notifs-bar-icon-class'] ) : ?> 483 <a id="notifino-close2" class="notifino-close-btn-small notifino-btn-rounded"> 484 <i class="<?php echo esc_attr( $notifs_bar_icon_class["notifs-bar-icon-class"] ); ?>"> 485 </i> 486 </a> 487 <?php else: ?> 488 <a id="notifino-close2" class="notifino-close-btn-small notifino-btn-rounded"> 489 <i class="fa fa-close"></i> 490 </a> 491 <?php endif; ?> 492 </div> 493 </div> 494 </div> 495 </div> 496 </div> 497 </div> 498 </div> 499 </div> 500 <?php endwhile; ?> 142 endif; 501 143 502 <a id="notifino-open-close2" class="notifino-btn-rounded"> 503 <?php echo wp_kses_post('<i class="fa fa-angle-double-down"></i>'); ?> 504 </a> 144 endif; 505 145 506 <?php } 507 508 add_action( 'wp_footer', 'notifs_show_bottom' ); 509 510 elseif( $envy_notifs_global == 'none' && $envy_notifs_pages == 'leftside' 511 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == '' 512 || $envy_notifs_global == 'none' && $envy_notifs_pages == 'leftside' 513 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == 'default' 514 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'leftside' 515 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == 'leftside' 516 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == 'leftside' 517 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == 'leftside' ) : 518 519 // Output for Left Side Bar 520 function notifs_show_left_sidebar() { ?> 521 <?php $left_notice_show = new WP_Query( array( 522 'post_type' => 'envynotifs', 523 'posts_per_page' => 1 524 )); 525 ?> 526 <?php while( $left_notice_show->have_posts() ) : $left_notice_show->the_post() ?> 527 <style type="text/css"> 528 body { 529 margin-left: 60px; 530 } 531 </style> 532 <div class="notifino sidebar-left-panel"> 533 <div class="notifino-standard"> 534 <div class="notifino-content"> 535 <div class="d-flex w-100"> 536 <div class="justify-content-center align-self-center"> 537 <h2 class="notice_heading"> 538 <?php $notifs_bar_scroll_show = (array)get_option('new_settings'); 539 if( isset( $notifs_bar_scroll_show['notifs-scroll-show'] ) ) : 540 $notifs_bar_scroll_show_new = $notifs_bar_scroll_show['notifs-scroll-show']; 541 else: 542 $notifs_bar_scroll_show_new = ''; 543 endif; 544 if( $notifs_bar_scroll_show_new ) : ?> 545 <marquee behavior="scroll" direction="up" style="text-align: center !important;"><?php the_title(); ?></marquee> 546 <?php else: 547 the_title(); 548 endif; ?> 549 </h2> 550 </div> 551 <?php 552 $notifs_bar_end_date = (array)get_option('new_settings'); 553 if( isset( $notifs_bar_end_date['select-end-date'] ) ) : 554 $notifs_bar_end_date_new = $notifs_bar_end_date['select-end-date']; 555 else : 556 $notifs_bar_end_date_new = ''; 557 endif; 558 $notifs_bar_end_time = (array)get_option('new_settings'); 559 if( isset( $notifs_bar_end_time['select-end-time'] ) ) : 560 $notifs_bar_end_time_new = $notifs_bar_end_time['select-end-time']; 561 else : 562 $notifs_bar_end_time_new = ''; 563 endif; ?> 564 <?php if( ! $notifs_bar_end_date_new == '' ) : ?> 565 <div class="text-center countdown show" data-Date='<?php echo wp_kses_post($notifs_bar_end_date_new); echo wp_kses_post(' '.$notifs_bar_end_time_new); ?>'> 566 <div class="running"> 567 <div class="labels"><span><?php echo esc_html__('Days', 'envy-notifs'); ?></span><span><?php echo esc_html__('Hours', 'envy-notifs'); ?></span><span><?php echo esc_html__('Minutes', 'envy-notifs'); ?></span><span><?php echo esc_html__('Seconds', 'envy-notifs'); ?></span> 568 </div> 569 <div class="break"></div> 570 <timer> 571 <span class="days"></span>:<span class="hours"></span>:<span class="minutes"></span>:<span class="seconds"></span> 572 </timer> 573 </div> 574 </div> 575 <?php endif; ?> 576 </div> 577 </div> 578 <div class="d-flex w-100"> 579 <div class="justify-content-center align-self-center"> 580 <div class="notifino-buttons"> 581 <?php if( get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ) ) : ?> 582 <?php $notifs_bar_btn_text = (array)get_option('new_settings'); 583 if( $notifs_bar_btn_text['notifs-bar-btn-text'] ) : ?> 584 <a href="<?php echo get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ); ?>" class="notifino-second-button"> 585 <?php 586 echo esc_html__($notifs_bar_btn_text['notifs-bar-btn-text']); 587 ?> 588 </a> 589 <?php else: ?> 590 <a href="<?php echo get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ); ?>" class="notifino-second-button"> 591 <?php echo esc_html__('Read More', 'envy-notifs'); ?> 592 </a> 593 <?php endif; 594 endif; 595 $notifs_bar_icon_class = (array)get_option('new_settings'); 596 if( $notifs_bar_icon_class['notifs-bar-icon-class'] ) : ?> 597 <a id="notifino-close3" class="notifino-close-btn-small notifino-btn-rounded"> 598 <i class="<?php echo esc_attr( $notifs_bar_icon_class["notifs-bar-icon-class"] ); ?>"> 599 </i> 600 </a> 601 <?php else: ?> 602 <a id="notifino-close3" class="notifino-close-btn-small notifino-btn-rounded"> 603 <i class="fa fa-close"></i> 604 </a> 605 <?php endif; ?> 606 </div> 607 </div> 608 </div> 609 </div> 610 </div> 611 <?php endwhile; ?> 612 613 <a id="notifino-open-close3" class="notifino-btn-rounded"> 614 <?php echo wp_kses_post('<i class="fa fa-angle-double-left"></i>'); ?> 615 </a> 616 617 <?php if( is_user_logged_in() ) : ?> 618 <style> 619 @media only screen and (min-width: 1200px) { 620 .sidebar-left-panel .notifino-second-button, .sidebar-right-panel .notifino-second-button { 621 margin-bottom: 2px !important; 622 } 623 } 624 #notifino-open-close3 { 625 top: 32px; 626 } 627 </style> 628 <?php endif; ?> 629 630 <?php } 631 632 add_action( 'wp_footer', 'notifs_show_left_sidebar' ); 633 634 elseif( $envy_notifs_global == 'none' && $envy_notifs_pages == 'rightside' 635 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == '' 636 || $envy_notifs_global == 'none' && $envy_notifs_pages == 'rightside' 637 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == 'default' 638 || $envy_notifs_global == 'top' && $envy_notifs_pages == 'rightside' 639 || $envy_notifs_global == 'bottom' && $envy_notifs_pages == 'rightside' 640 || $envy_notifs_global == 'leftside' && $envy_notifs_pages == 'rightside' 641 || $envy_notifs_global == 'rightside' && $envy_notifs_pages == 'rightside' ) : 642 643 // Output for Right Side Bar 644 function notifs_show_right_sidebar() { ?> 645 <?php $right_notice_show = new WP_Query( array( 646 'post_type' => 'envynotifs', 647 'posts_per_page' => 1 648 )); 649 ?> 650 <?php while( $right_notice_show->have_posts() ) : $right_notice_show->the_post() ?> 651 <style type="text/css"> 652 body { 653 margin-right: 60px; 654 } 655 </style> 656 <div class="notifino sidebar-right-panel"> 657 <div class="notifino-standard"> 658 <div class="notifino-content"> 659 <div class="d-flex w-100"> 660 <div class="justify-content-center align-self-center"> 661 <h2 class="notice_heading"> 662 <?php $notifs_bar_scroll_show = (array)get_option('new_settings'); 663 if( isset( $notifs_bar_scroll_show['notifs-scroll-show'] ) ) : 664 $notifs_bar_scroll_show_new = $notifs_bar_scroll_show['notifs-scroll-show']; 665 else: 666 $notifs_bar_scroll_show_new = ''; 667 endif; 668 if( $notifs_bar_scroll_show_new ) : ?> 669 <marquee behavior="scroll" direction="up" style="text-align: center !important;"><?php the_title(); ?></marquee> 670 <?php else: 671 the_title(); 672 endif; ?> 673 </h2> 674 </div> 675 <?php 676 $notifs_bar_end_date = (array)get_option('new_settings'); 677 if( isset( $notifs_bar_end_date['select-end-date'] ) ) : 678 $notifs_bar_end_date_new = $notifs_bar_end_date['select-end-date']; 679 else : 680 $notifs_bar_end_date_new = ''; 681 endif; 682 $notifs_bar_end_time = (array)get_option('new_settings'); 683 if( isset( $notifs_bar_end_time['select-end-time'] ) ) : 684 $notifs_bar_end_time_new = $notifs_bar_end_time['select-end-time']; 685 else : 686 $notifs_bar_end_time_new = ''; 687 endif; ?> 688 <?php if( ! $notifs_bar_end_date_new == '' ) : ?> 689 <div class="text-center countdown show" data-Date='<?php echo wp_kses_post($notifs_bar_end_date_new); echo wp_kses_post(' '.$notifs_bar_end_time_new); ?>'> 690 <div class="running"> 691 <div class="labels"><span><?php echo esc_html__('Days', 'envy-notifs'); ?></span><span><?php echo esc_html__('Hours', 'envy-notifs'); ?></span><span><?php echo esc_html__('Minutes', 'envy-notifs'); ?></span><span><?php echo esc_html__('Seconds', 'envy-notifs'); ?></span> 692 </div> 693 <div class="break"></div> 694 <timer> 695 <span class="days"></span>:<span class="hours"></span>:<span class="minutes"></span>:<span class="seconds"></span> 696 </timer> 697 </div> 698 </div> 699 <?php endif; ?> 700 </div> 701 </div> 702 <div class="d-flex w-100"> 703 <div class="justify-content-center align-self-center"> 704 <div class="notifino-buttons"> 705 <?php if( get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ) ) : ?> 706 <?php $notifs_bar_btn_text = (array)get_option('new_settings'); 707 if( $notifs_bar_btn_text['notifs-bar-btn-text'] ) : ?> 708 <a href="<?php echo get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ); ?>" class="notifino-second-button"> 709 <?php 710 echo esc_html__($notifs_bar_btn_text['notifs-bar-btn-text']); 711 ?> 712 </a> 713 <?php else: ?> 714 <a href="<?php echo get_post_meta( get_the_ID(), 'custom_element_grid_class_meta_box', true ); ?>" class="notifino-second-button"> 715 <?php echo esc_html__('Read More', 'envy-notifs'); ?> 716 </a> 717 <?php endif; 718 endif; 719 $notifs_bar_icon_class = (array)get_option('new_settings'); 720 if( $notifs_bar_icon_class['notifs-bar-icon-class'] ) : ?> 721 <a id="notifino-close4" class="notifino-close-btn-small notifino-btn-rounded"> 722 <i class="<?php echo esc_attr( $notifs_bar_icon_class["notifs-bar-icon-class"] ); ?>"> 723 </i> 724 </a> 725 <?php else: ?> 726 <a id="notifino-close4" class="notifino-close-btn-small notifino-btn-rounded"> 727 <i class="fa fa-close"></i> 728 </a> 729 <?php endif; ?> 730 </div> 731 </div> 732 </div> 733 </div> 734 </div> 735 <?php endwhile; ?> 736 737 <a id="notifino-open-close4" class="notifino-btn-rounded"> 738 <?php echo wp_kses_post('<i class="fa fa-angle-double-right"></i>'); ?> 739 </a> 740 741 <?php if( is_user_logged_in() ) : ?> 742 <style> 743 #notifino-open-close4 { 744 top: 32px; 745 } 746 .sidebar-right-panel .notice_heading { 747 margin-top: 32px !important; 748 } 749 </style> 750 <?php endif; ?> 751 752 <?php } 753 754 add_action( 'wp_footer', 'notifs_show_right_sidebar' ); 755 756 endif; 757 758 endif; 759 760 endif; 761 762 $notifs_bar_mobile_hide = (array)get_option('new_settings'); 763 if( isset( $notifs_bar_mobile_hide['notifs-mobile-hide'] ) ) : 764 $notifs_bar_mobile_hide_new = $notifs_bar_mobile_hide['notifs-mobile-hide']; 765 else: 766 $notifs_bar_mobile_hide_new = ''; 767 endif; 768 if( $notifs_bar_mobile_hide_new ) : ?> 769 <style> 770 /* Extra small devices (phones, 600px and down) */ 771 @media only screen and (max-width: 600px) { 772 #onload-popup, .notifino { 773 display: none !important; 774 } 775 } 776 777 /* Small devices (portrait tablets and large phones, 600px and up) */ 778 @media only screen and (min-width: 600px) { 779 #onload-popup, .notifino { 780 display: none !important; 781 } 782 } 783 784 /* Medium devices (landscape tablets, 768px and up) */ 785 @media only screen and (min-width: 768px) { 786 #onload-popup, .notifino { 787 display: none !important; 788 } 789 } 790 791 /* Large devices (laptops/desktops, 992px and up) */ 792 @media only screen and (min-width: 992px) { 793 #onload-popup, .notifino { 794 display: block !important; 795 } 796 } 797 798 /* Extra large devices (large laptops and desktops, 1200px and up) */ 799 @media only screen and (min-width: 1200px) { 800 #onload-popup, .notifino { 801 display: block !important; 802 } 803 } 804 </style> 805 <?php endif; 146 endif; -
envynotifs/trunk/uninstall.php
r2405561 r2439289 6 6 * 7 7 * @link https://envytheme.com/ 8 * @since 1. 0.08 * @since 1.1 9 9 * 10 10 * @package Envy_Notifs
Note: See TracChangeset
for help on using the changeset viewer.