Changeset 1043793
- Timestamp:
- 12/13/2014 12:08:36 AM (11 years ago)
- Location:
- jetpack/trunk
- Files:
-
- 38 edited
-
class.jetpack-admin.php (modified) (2 diffs)
-
class.jetpack-heartbeat.php (modified) (2 diffs)
-
class.jetpack-options.php (modified) (1 diff)
-
class.jetpack.php (modified) (19 diffs)
-
css/jetpack-admin-rtl.css (modified) (20 diffs)
-
css/jetpack-admin-rtl.min.css (modified) (1 diff)
-
css/jetpack-admin.css (modified) (4 diffs)
-
css/jetpack-admin.css.map (modified) (1 diff)
-
css/jetpack-admin.min.css (modified) (1 diff)
-
css/jetpack-admin.min.css.map (modified) (1 diff)
-
css/jetpack-banners-rtl.css (modified) (2 diffs)
-
css/jetpack-banners-rtl.min.css (modified) (1 diff)
-
css/jetpack-banners.css (modified) (2 diffs)
-
css/jetpack-banners.css.map (modified) (1 diff)
-
css/jetpack-banners.min.css (modified) (1 diff)
-
css/jetpack-banners.min.css.map (modified) (1 diff)
-
css/jetpack-rtl.css (modified) (1 diff)
-
jetpack.php (modified) (2 diffs)
-
json-endpoints/class.wpcom-json-api-get-site-endpoint.php (modified) (2 diffs)
-
json-endpoints/class.wpcom-json-api-list-posts-v1-1-endpoint.php (modified) (1 diff)
-
json-endpoints/class.wpcom-json-api-update-post-v1-1-endpoint.php (modified) (3 diffs)
-
json-endpoints/jetpack/class.jetpack-json-api-plugins-endpoint.php (modified) (2 diffs)
-
modules/likes.php (modified) (14 diffs)
-
modules/sharedaddy/sharing-sources.php (modified) (1 diff)
-
modules/sharedaddy/sharing.js (modified) (2 diffs)
-
modules/site-icon.php (modified) (1 diff)
-
modules/site-icon/css/site-icon-admin.css (modified) (6 diffs)
-
modules/site-icon/jetpack-site-icon.php (modified) (17 diffs)
-
modules/site-icon/js/site-icon-crop.js (modified) (3 diffs)
-
modules/site-icon/site-icon-functions.php (modified) (1 diff)
-
modules/subscriptions.php (modified) (3 diffs)
-
modules/videopress/videopress-admin-rtl.css (modified) (1 diff)
-
modules/videopress/videopress-admin-rtl.min.css (modified) (1 diff)
-
scss/atoms/_buttons.scss (modified) (1 diff)
-
scss/jetpack-banners.scss (modified) (1 diff)
-
scss/organisms/_banners.scss (modified) (1 diff)
-
scss/templates/_main.scss (modified) (4 diffs)
-
views/admin/admin-page.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jetpack/trunk/class.jetpack-admin.php
r1008014 r1043793 63 63 $active_modules = $this->jetpack->get_active_modules(); 64 64 $modules = array(); 65 65 $jetpack_active = Jetpack::is_active() || Jetpack::is_development_mode(); 66 66 foreach ( $available_modules as $module ) { 67 67 if ( $module_array = $this->jetpack->get_module( $module ) ) { … … 70 70 71 71 $module_array['module'] = $module; 72 $module_array['activated'] = in_array( $module, $active_modules);72 $module_array['activated'] = ( $jetpack_active ? in_array( $module, $active_modules ) : false ); 73 73 $module_array['deactivate_nonce'] = wp_create_nonce( 'jetpack_deactivate-' . $module ); 74 74 $module_array['activate_nonce'] = wp_create_nonce( 'jetpack_activate-' . $module ); -
jetpack/trunk/class.jetpack-heartbeat.php
r1038914 r1043793 104 104 $return["{$prefix}wp-branch"] = floatval( get_bloginfo( 'version' ) ); 105 105 $return["{$prefix}php-branch"] = floatval( PHP_VERSION ); 106 $return["{$prefix}public"] = Jetpack_Options::get_option( 'public' ); 106 107 $return["{$prefix}ssl"] = Jetpack::permit_ssl(); 107 108 $return["{$prefix}language"] = get_bloginfo( 'language' ); … … 110 111 $return["{$prefix}identitycrisis"] = Jetpack::check_identity_crisis( 1 ) ? 'yes' : 'no'; 111 112 $return["{$prefix}plugins"] = implode( ',', Jetpack::get_active_plugins() ); 113 114 // is-multi-network can have three values, `single-site`, `single-network`, and `multi-network` 115 $return["{$prefix}is-multi-network"] = 'single-site'; 116 if ( is_multisite() ) { 117 $return["{$prefix}is-multi-network"] = Jetpack::is_multi_network() ? 'multi-network' : 'single-network'; 118 } 112 119 113 120 if ( ! empty( $_SERVER['SERVER_ADDR'] ) || ! empty( $_SERVER['LOCAL_ADDR'] ) ) { -
jetpack/trunk/class.jetpack-options.php
r1038914 r1043793 25 25 'json_api_full_management', // (bool) Allow full management (eg. Activate, Upgrade plugins) of the site via the JSON API. 26 26 'sync_non_public_post_stati', // (bool) Allow synchronisation of posts and pages with non-public status. 27 'site_icon_url', // (string) url to the full site icon 28 'site_icon_id', // (int) Attachment id of the site icon file 29 'dismissed_manage_banner' // (bool) Dismiss jetpack manage banner allows the user to dismiss the banner permenetly 27 30 ); 28 31 } -
jetpack/trunk/class.jetpack.php
r1041038 r1043793 355 355 * Update the main_network_site on .com 356 356 */ 357 add_filter( 'pre_option_main_network_site', array( $this, 'main_network_site_option' ) ); 358 add_action( 'update_option_siteurl', array( $this, 'update_main_network_site_option' ) ); 357 add_filter( 'pre_option_jetpack_main_network_site', array( $this, 'jetpack_main_network_site_option' ) ); 358 add_action( 'update_option_siteurl', array( $this, 'update_jetpack_main_network_site_option' ) ); 359 // Update jetpack_is_main_network on .com 360 add_filter( 'pre_option_jetpack_is_main_network', array( $this, 'is_main_network_option' ) ); 359 361 /* 360 362 * Load things that should only be in Network Admin. … … 384 386 'gmt_offset', 385 387 'timezone_string', 386 'main_network_site' 388 'jetpack_main_network_site', 389 'jetpack_is_main_network' 387 390 ); 388 391 … … 642 645 * @return string 643 646 */ 644 function main_network_site_option( $option ) {647 function jetpack_main_network_site_option( $option ) { 645 648 return network_site_url(); 649 } 650 651 /** 652 * Return whether we are dealing with a multi network setup or not. 653 * The reason we are type casting this is because we want to avoid the situation where 654 * the result is false since when is_main_network_option return false it cases 655 * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the 656 * database which could be set to anything as opposed to what this function returns. 657 * @param bool $option 658 * 659 * @return boolean 660 */ 661 public static function is_main_network_option( $option ) { 662 // return '1' or '' 663 return (string) (bool) Jetpack::is_multi_network(); 664 } 665 666 /** 667 * Implemented since there is no core is multi network function 668 * Right now there is no way to tell if we which network is the dominant network on the system 669 * 670 * @since 3.3 671 * @return boolean 672 */ 673 public static function is_multi_network() { 674 global $wpdb; 675 676 // if we don't have a multi site setup no need to do any more 677 if ( ! is_multisite() ) { 678 return false; 679 } 680 681 $num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" ); 682 if ( $num_sites > 1 ) { 683 return true; 684 } else { 685 return false; 686 } 646 687 } 647 688 … … 650 691 * @return null 651 692 */ 652 function update_main_network_site_option(){ 653 do_action( "add_option_main_network_site", "main_network_site", network_site_url() ); 693 function update_jetpack_main_network_site_option() { 694 do_action( 'add_option_jetpack_main_network_site', 'main_network_site', network_site_url() ); 695 do_action( 'add_option_jetpack_is_main_network', 'jetpack_is_main_network', (string) (bool) Jetpack::is_multi_network() ); 654 696 } 655 697 … … 1932 1974 true 1933 1975 ); 1976 } else { 1977 // Show the notice on the Dashboard only for now 1978 1979 add_action( 'load-index.php', array( $this, 'prepare_manage_jetpack_notice' ) ); 1934 1980 } 1935 1981 /* Toggle this off as it's not ready for prime time just yet. … … 1976 2022 if ( Jetpack::state( 'network_nag' ) ) 1977 2023 add_action( 'network_admin_notices', array( $this, 'network_connect_notice' ) ); 2024 } 2025 /** 2026 * Call this function if you want the Big Jetpack Manage Notice to show up. 2027 * 2028 * @return null 2029 */ 2030 function prepare_manage_jetpack_notice() { 2031 2032 add_action( 'admin_print_styles', array( $this, 'admin_banner_styles' ) ); 2033 add_action( 'admin_notices', array( $this, 'admin_jetpack_manage_notice' ) ); 1978 2034 } 1979 2035 … … 2314 2370 $dismiss_and_deactivate_url = wp_nonce_url( Jetpack::admin_url( '?page=jetpack&jetpack-notice=dismiss' ), 'jetpack-deactivate' ); 2315 2371 ?> 2316 <div id="message" class="updated jetpack-message jp-connect" style="display:block !important;"> 2317 <div id="jp-dismiss" class="jetpack-close-button-container"> 2318 <a class="jetpack-close-button" href="<?php echo esc_url( $dismiss_and_deactivate_url ); ?>" title="<?php _e( 'Dismiss this notice and deactivate Jetpack.', 'jetpack' ); ?>"></a> 2372 <div id="message" class="updated jetpack-message jp-banner" style="display:block !important;"> 2373 <a class="jp-banner__dismiss" href="<?php echo esc_url( $dismiss_and_deactivate_url ); ?>" title="<?php esc_attr_e( 'Dismiss this notice and deactivate Jetpack.', 'jetpack' ); ?>"></a> 2374 <?php if ( in_array( Jetpack_Options::get_option( 'activated' ) , array( 1, 2, 3 ) ) ) : ?> 2375 <div class="jp-banner__content is-connection"> 2376 <h4><?php _e( 'Your Jetpack is almost ready!', 'jetpack' ); ?></h4> 2377 <p><?php _e( 'Connect now to enable features like Stats, Likes, and Social Sharing.', 'jetpack' ); ?></p> 2378 </div> 2379 <div class="jp-banner__action-container is-connection"> 2380 <a href="<?php echo $this->build_connect_url() ?>" class="jp-banner__button" id="wpcom-connect"><?php _e( 'Connect to WordPress.com', 'jetpack' ); ?></a> 2381 </div> 2382 <?php else : ?> 2383 <div class="jp-banner__content"> 2384 <h4><?php _e( 'Jetpack is installed!', 'jetpack' ) ?></h4> 2385 <p><?php _e( 'It\'s ready to bring awesome, WordPress.com cloud-powered features to your site.', 'jetpack' ) ?></p> 2386 </div> 2387 <div class="jp-banner__action-container"> 2388 <a href="<?php echo Jetpack::admin_url() ?>" class="jp-banner__button" id="wpcom-connect"><?php _e( 'Learn More', 'jetpack' ); ?></a> 2389 </div> 2390 <?php endif; ?> 2391 </div> 2392 2393 <?php 2394 } 2395 2396 /** 2397 * This is the first banner 2398 * It should be visible only to user that can update the option 2399 * Are not connected 2400 * @todo make this look nice 2401 * 2402 * @return null 2403 */ 2404 function admin_jetpack_manage_notice() { 2405 // Don't show the connect notice on the jetpack settings page. @todo: must be a better way? 2406 if ( false !== strpos( $_SERVER['QUERY_STRING'], 'page=jetpack' ) ) 2407 return; 2408 2409 // Only show it if don't have the managment option set. 2410 // And not dismissed it already. 2411 if ( ! $this->can_display_jetpack_manage_notice() || Jetpack_Options::get_option( 'dismissed_manage_banner' ) ) { 2412 return; 2413 } 2414 2415 $opt_out_url = $this->opt_out_jetpack_manage_url(); 2416 $opt_in_url = $this->opt_in_jetpack_manage_url(); 2417 /** 2418 * I think it would be great to have different wordsing depending on where you are 2419 * for example if we show the notice on dashboard and a different one if we show it on Plugins screen 2420 * etc.. 2421 */ 2422 2423 ?> 2424 <div id="message" class="updated jetpack-message jp-banner is-opt-in" style="display:block !important;"> 2425 <a class="jp-banner__dismiss" href="<?php echo esc_url( $opt_out_url ); ?>" title="<?php esc_attr_e( 'Dismiss this notice for now.', 'jetpack' ); ?>"></a> 2426 <div class="jp-banner__content"> 2427 <h4><?php esc_html_e( 'New in Jetpack: Centralized Site Management', 'jetpack' ); ?></h4> 2428 <p><?php printf( __( 'Manage multiple sites and keep plugins up-to-date from one dashboard at wordpress.com/plugins. Enabling allows all existing, connected Administrators to modify your site from WordPress.com. <a href="%s" target="_blank">Learn More</a>.', 'jetpack' ), 'http://jetpack.me/support/site-management' ); ?></p> 2319 2429 </div> 2320 <div class="jetpack-wrap-container"> 2321 <div class="jetpack-install-container"> 2322 <?php if ( in_array( Jetpack_Options::get_option( 'activated' ) , array( 1, 2, 3 ) ) ) : ?> 2323 <p class="submit"><a href="<?php echo $this->build_connect_url() ?>" class="download-jetpack" id="wpcom-connect"><?php _e( 'Connect to WordPress.com', 'jetpack' ); ?></a></p> 2324 <?php else : ?> 2325 <p class="submit"><a href="<?php echo Jetpack::admin_url() ?>" class="button-connector" id="wpcom-connect"><?php _e( 'Learn More', 'jetpack' ); ?></a></p> 2326 <?php endif; ?> 2327 </div> 2328 <div class="jetpack-text-container"> 2329 <?php if ( in_array( Jetpack_Options::get_option( 'activated' ) , array( 1, 2, 3 ) ) ) : ?> 2330 <p><?php _e( '<strong>Your Jetpack is almost ready!</strong>', 'jetpack' ); ?></p> 2331 <p><?php _e( 'Connect now to enable features like Stats, Likes, and Social Sharing.', 'jetpack' ); ?></p> 2332 <?php else : ?> 2333 <p><?php _e( '<strong>Jetpack is installed</strong>', 'jetpack' ) ?></p> 2334 <p><?php _e( 'It\'s ready to bring awesome, WordPress.com cloud-powered features to your site.', 'jetpack' ) ?></p> 2335 <?php endif; ?> 2336 </div> 2430 <div class="jp-banner__action-container is-opt-in"> 2431 <a href="<?php echo esc_url( $opt_in_url ); ?>" class="jp-banner__button" id="wpcom-connect"><?php _e( 'Activate now', 'jetpack' ); ?></a> 2337 2432 </div> 2338 2433 </div> 2339 2340 2434 <?php 2435 } 2436 2437 /** 2438 * Returns the url that the user clicks to remove the notice for the big banner 2439 * @return (string) 2440 */ 2441 function opt_out_jetpack_manage_url() { 2442 $referer = '&_wp_http_referer=' . add_query_arg( '_wp_http_referer', null ); 2443 return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-out' . $referer ), 'jetpack_manage_banner_opt_out' ); 2444 } 2445 /** 2446 * Returns the url that the user clicks to opt in to Jetpack Manage 2447 * @return (string) 2448 */ 2449 function opt_in_jetpack_manage_url() { 2450 return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-in' ), 'jetpack_manage_banner_opt_in' ); 2451 } 2452 2453 function opt_in_jetpack_manage_notice() { 2454 ?> 2455 <div class="wrap"> 2456 <div id="message" class="jetpack-message is-opt-in"> 2457 <?php echo sprintf( __( '<p><a href="%1$s" title="Opt in to WordPress.com Site Management" >Activate Site Management</a> to manage plugins and multiple sites from our centralized dashboard at wordpress.com/plugins. <a href="%2$s" target="_blank">Learn more</a>.</p><a href="%1$s" class="jp-button">Activate Now</a>', 'jetpack' ), $this->opt_in_jetpack_manage_url(), 'http://jetpack.me/support/site-management' ); ?> 2458 </div> 2459 </div> 2460 <?php 2461 2462 } 2463 /** 2464 * Determines whether to show the notice of not true = display notice 2465 * @return (bool) 2466 */ 2467 function can_display_jetpack_manage_notice() { 2468 // never display the notice to users that can't do anything about it anyways 2469 if( ! current_user_can( 'jetpack_manage_modules' ) ) 2470 return false; 2471 2472 // don't display if we are in development more 2473 if( Jetpack::is_development_mode() ) { 2474 return false; 2475 } 2476 return apply_filters( 'can_display_jetpack_manage_notice', ! Jetpack_Options::get_option( 'json_api_full_management' ) || ! self::is_module_active( 'json-api' ) || ! Jetpack_Options::get_option( 'public' ) ); 2341 2477 } 2342 2478 … … 2449 2585 } 2450 2586 } 2587 2451 2588 2452 2589 if ( isset( $_GET['action'] ) ) { … … 2683 2820 } 2684 2821 } 2685 2822 if( Jetpack::state( 'optin-manage' ) ) { 2823 $activated_jsonapi = $message_code; 2824 $message_code = 'jetpack-manage'; 2825 2826 } 2686 2827 switch ( $message_code ) { 2687 2828 case 'modules_activated' : … … 2717 2858 $this->message .= Jetpack::jetpack_comment_notice(); 2718 2859 break; 2719 2860 case 'jetpack-manage': 2861 $this->message = '<strong>' . sprintf( __( 'You are all set! Your site can now be managed from <a href="%s" target="_blank">wordpress.com/plugins</a>.', 'jetpack' ), 'https://wordpress.com/plugins' ) . '</strong>'; 2862 if ( $activated_jsonapi ) { 2863 $this->message .= '<br /><strong>' . __( 'JSON API has been activated for you!', 'jetpack' ) . '</strong>'; 2864 } 2865 break; 2720 2866 case 'module_activated' : 2721 2867 if ( $module = Jetpack::get_module( Jetpack::state( 'module' ) ) ) { … … 2824 2970 $this->privacy_checks = Jetpack::state( 'privacy_checks' ); 2825 2971 2826 if ( $this->message || $this->error || $this->privacy_checks ) {2972 if ( $this->message || $this->error || $this->privacy_checks || $this->can_display_jetpack_manage_notice() ) { 2827 2973 add_action( 'jetpack_notices', array( $this, 'admin_notices' ) ); 2828 2974 } … … 2926 3072 </div> 2927 3073 <?php endif; 3074 // only display the notice if the other stuff is not there 3075 if( $this->can_display_jetpack_manage_notice() && ! $this->error && ! $this->message && ! $this->privacy_checks ) { 3076 if( isset( $_GET['page'] ) && 'jetpack' != $_GET['page'] ) 3077 $this->opt_in_jetpack_manage_notice(); 3078 } 2928 3079 } 2929 3080 … … 3089 3240 3090 3241 function dismiss_jetpack_notice() { 3091 if ( isset( $_GET['jetpack-notice'] ) && 'dismiss' == $_GET['jetpack-notice'] && check_admin_referer( 'jetpack-deactivate' ) && ! is_plugin_active_for_network( plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ) ) ) { 3092 require_once ABSPATH . 'wp-admin/includes/plugin.php'; 3093 3094 deactivate_plugins( JETPACK__PLUGIN_DIR . 'jetpack.php', false, false ); 3095 3096 wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' ); 3097 exit; 3242 3243 if ( ! isset( $_GET['jetpack-notice'] ) ) { 3244 return; 3245 } 3246 3247 switch( $_GET['jetpack-notice'] ) { 3248 case 'dismiss': 3249 if ( check_admin_referer( 'jetpack-deactivate' ) && ! is_plugin_active_for_network( plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ) ) ) { 3250 3251 require_once ABSPATH . 'wp-admin/includes/plugin.php'; 3252 deactivate_plugins( JETPACK__PLUGIN_DIR . 'jetpack.php', false, false ); 3253 wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' ); 3254 } 3255 break; 3256 case 'jetpack-manage-opt-out': 3257 3258 if ( check_admin_referer( 'jetpack_manage_banner_opt_out' ) ) { 3259 // Don't show the banner again 3260 3261 Jetpack_Options::update_option( 'dismissed_manage_banner', true ); 3262 // redirect back to the page that had the notice 3263 if ( wp_get_referer() ) { 3264 wp_safe_redirect( wp_get_referer() ); 3265 } else { 3266 // Take me to Jetpack 3267 wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) ); 3268 } 3269 } 3270 break; 3271 case 'jetpack-manage-opt-in': 3272 if ( check_admin_referer( 'jetpack_manage_banner_opt_in' ) ) { 3273 // This makes sure that we are redirect to jetpack So that we can see the message. 3274 // Don't redirect form the Jetpack Setting Page 3275 $redirection_url = wp_get_referer(); 3276 $referer_parsed = parse_url ( wp_get_referer() ); 3277 3278 if ( false === strpos( $referer_parsed['query'], 'page=jetpack_modules' ) ) { 3279 $redirection_url = Jetpack::admin_url(); // Take the user to Jetpack home except when on the setting page 3280 remove_action( 'jetpack_pre_activate_module', array( Jetpack_Admin::init(), 'fix_redirect' ) ); 3281 3282 } 3283 3284 Jetpack_Options::update_option( 'json_api_full_management', true ); 3285 Jetpack::state( 'optin-manage', 'true' ); 3286 // activate module activated already 3287 // we should set a message to display to the user. 3288 Jetpack::activate_module( 'json-api' ); // nothing happends if the module is set already 3289 3290 // Take me to Jetpack 3291 3292 wp_safe_redirect( $redirection_url ); 3293 3294 } 3295 break; 3098 3296 } 3099 3297 } … … 3116 3314 $can_reconnect_jpms = ( $jpms->get_option( 'sub-site-connection-override' ) ) ? 1: 0; 3117 3315 } 3118 3119 3316 3120 3317 … … 3158 3355 if( !$can_reconnect_jpms && !$is_connected ) { 3159 3356 ?> 3160 <div id="message" class="updated jetpack-message jp-connect jp-multisite" style="display:block !important"> 3161 <div class="jetpack-wrap-container"> 3162 <div class="jetpack-text-container"> 3163 <h4> 3164 <p><?php _e( 'To use Jetpack please contact your WordPress administrator to connect it for you.', 'jetpack' ) ?></p> 3165 </h4> 3166 </div> 3357 <div id="message" class="updated jetpack-message jp-banner jp-multisite" style="display:block !important"> 3358 <div class="jp-banner__content"> 3359 <h4><?php _e( 'To use Jetpack please contact your WordPress administrator to connect it for you.', 'jetpack' ) ?></h4> 3167 3360 </div> 3168 3361 </div> <?php … … 3173 3366 $dismiss_and_deactivate_url = wp_nonce_url( Jetpack::admin_url( '?page=jetpack&jetpack-notice=dismiss' ), 'jetpack-deactivate' ); 3174 3367 ?> 3175 <div id="message" class="updated jetpack-message jp-connect" style="display:block !important;"> 3176 <div id="jp-dismiss" class="jetpack-close-button-container"> 3177 <a class="jetpack-close-button" href="<?php echo esc_url( $dismiss_and_deactivate_url ); ?>"><?php _e( 'Dismiss this notice.', 'jetpack' ); ?></a> 3368 <div id="message" class="updated jetpack-message jp-banner" style="display:block !important;"> 3369 <a class="jp-banner__dismiss" href="<?php echo esc_url( $dismiss_and_deactivate_url ); ?>"></a> 3370 <div class="jp-banner__content"> 3371 <h4><?php _e( 'To enable all of the Jetpack features, you’ll need to connect your website to WordPress.com.', 'jetpack' ) ?></h4> 3372 <p><?php _e( 'Once you’ve made the connection you’ll activate all the delightful features below.', 'jetpack' ) ?></p> 3178 3373 </div> 3179 <div class="jetpack-wrap-container"> 3180 <div class="jetpack-text-container"> 3181 <h4> 3182 <p><?php _e( 'To enable all of the Jetpack features you’ll need to connect your website to WordPress.com using the button to the right. Once you’ve made the connection you’ll activate all the delightful features below.', 'jetpack' ) ?></p> 3183 </h4> 3184 </div> 3185 <div class="jetpack-install-container"> 3186 <p class="submit"><a href="<?php echo $this->build_connect_url() ?>" class="button-connector" id="wpcom-connect"><?php _e( 'Connect to WordPress.com', 'jetpack' ); ?></a></p> 3187 </div> 3374 <div class="jp-banner__action-container"> 3375 <a href="<?php echo $this->build_connect_url() ?>" class="jp-banner__button" id="wpcom-connect"><?php _e( 'Connect', 'jetpack' ); ?></a> 3188 3376 </div> 3189 3377 </div> … … 3200 3388 <?php if ( Jetpack::is_active() && !Jetpack::is_development_mode() && ! $is_user_connected ) : ?> 3201 3389 3202 <div id="message" class="updated jetpack-message jp-connect" style="display:block !important;"> 3203 <div class="jetpack-wrap-container"> 3204 <div class="jetpack-text-container"> 3205 <h4> 3206 <p><?php _e( 'To enable all of the Jetpack features you’ll need to link your account here to your WordPress.com account using the button to the right.', 'jetpack' ) ?></p> 3207 </h4> 3208 </div> 3209 <div class="jetpack-install-container"> 3210 <p class="submit"><a href="<?php echo $this->build_connect_url() ?>" class="button-connector" id="wpcom-connect"><?php _e( 'Link account with WordPress.com', 'jetpack' ); ?></a></p> 3211 </div> 3390 <div id="message" class="updated jetpack-message jp-banner" style="display:block !important;"> 3391 <div class="jp-banner__content"> 3392 <h4><?php _e( 'To enable all of the Jetpack features you’ll need to link your account here to your WordPress.com account.', 'jetpack' ) ?></h4> 3393 </div> 3394 <div class="jp-banner__action-container is-full-width"> 3395 <a href="<?php echo $this->build_connect_url() ?>" class="jp-banner__button" id="wpcom-connect"><?php _e( 'Link account with WordPress.com', 'jetpack' ); ?></a> 3212 3396 </div> 3213 3397 </div> … … 3627 3811 3628 3812 <div id="message" class="error jetpack-message jp-identity-crisis"> 3629 <div class="jetpack-wrap-container"> 3630 <div class="jetpack-text-container"> 3631 <h3><?php _e( 'Something is being cranky!', 'jetpack' ); ?></h3> 3632 <p><?php _e( 'Your site is configured to only permit SSL connections to Jetpack, but SSL connections don\'t seem to be functional!', 'jetpack' ); ?></p> 3633 </div> 3813 <div class="jp-banner__content"> 3814 <h4><?php _e( 'Something is being cranky!', 'jetpack' ); ?></h4> 3815 <p><?php _e( 'Your site is configured to only permit SSL connections to Jetpack, but SSL connections don\'t seem to be functional!', 'jetpack' ); ?></p> 3634 3816 </div> 3635 3817 </div> … … 4586 4768 4587 4769 <div id="message" class="updated jetpack-message jp-identity-crisis"> 4588 <div class="jetpack-wrap-container"> 4589 <div class="jetpack-text-container"> 4590 <h3><?php _e( 'Something has gotten mixed up!', 'jetpack' ); ?></h3> 4591 <?php foreach ( $errors as $key => $value ) : ?> 4592 <p><?php printf( __( 'Your <code>%1$s</code> option is set up as <strong>%2$s</strong>, but your WordPress.com connection lists it as <strong>%3$s</strong>!', 'jetpack' ), $key, (string) get_option( $key ), $value ); ?></p> 4593 <?php endforeach; ?> 4594 <p><a href="<?php echo $this->build_reconnect_url() ?>"><?php _e( 'The data listed above is not for my current site. Please disconnect, and then form a new connection to WordPress.com for this site using my current settings.', 'jetpack' ); ?></a></p> 4595 <p><a href="#"><?php _e( 'Ignore the difference. This is just a staging site for the real site referenced above.', 'jetpack' ); ?></a></p> 4596 <p><a href="#"><?php _e( 'That used to be my URL for this site before I changed it. Update the WordPress.com Cloud\'s data to match my current settings.', 'jetpack' ); ?></a></p> 4597 </div> 4770 <div class="jp-banner__content"> 4771 <h4><?php _e( 'Something has gotten mixed up!', 'jetpack' ); ?></h4> 4772 <?php foreach ( $errors as $key => $value ) : ?> 4773 <p><?php printf( __( 'Your <code>%1$s</code> option is set up as <strong>%2$s</strong>, but your WordPress.com connection lists it as <strong>%3$s</strong>!', 'jetpack' ), $key, (string) get_option( $key ), $value ); ?></p> 4774 <?php endforeach; ?> 4775 <p><a href="<?php echo $this->build_reconnect_url() ?>"><?php _e( 'The data listed above is not for my current site. Please disconnect, and then form a new connection to WordPress.com for this site using my current settings.', 'jetpack' ); ?></a></p> 4776 <p><a href="#"><?php _e( 'Ignore the difference. This is just a staging site for the real site referenced above.', 'jetpack' ); ?></a></p> 4777 <p><a href="#"><?php _e( 'That used to be my URL for this site before I changed it. Update the WordPress.com Cloud\'s data to match my current settings.', 'jetpack' ); ?></a></p> 4598 4778 </div> 4599 4779 </div> -
jetpack/trunk/css/jetpack-admin-rtl.css
r1041038 r1043793 179 179 color: #efefef; 180 180 font: 800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif; 181 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);181 text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2); 182 182 background: #6f7476; 183 183 border-radius: 3px; … … 217 217 padding: 0.64286em 0.85714em 0.53571em; 218 218 color: #fff; 219 font: 400 2 em/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;219 font: 400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif; 220 220 background: #518d2a; 221 221 z-index: 3; … … 292 292 color: #efefef; 293 293 font: 800 0.8em/1 'Open Sans', Helvetica, sans-serif; 294 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);294 text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2); 295 295 background: #6f7476; 296 296 outline: none; … … 576 576 font: 300 2.57143em/1.4em "proxima-nova", "Open Sans", Helvetica, Arial, sans-serif; 577 577 position: relative; 578 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);578 text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.12); 579 579 z-index: 3; 580 580 } … … 657 657 color: #5d6d74; 658 658 font: 400 1.57143em/1.4em "proxima-nova", "Open Sans", Helvetica, Arial, sans-serif; 659 text-shadow: 0 1px 1px #fff;659 text-shadow: 0 -1px 1px #fff; 660 660 } 661 661 @media (max-width: 900px) { … … 765 765 font: 300 2.57143em/1.4em "proxima-nova", "Open Sans", Helvetica, Arial, sans-serif; 766 766 text-align: center; 767 text-shadow: 0 1px 1px #fff;767 text-shadow: 0 -1px 1px #fff; 768 768 } 769 769 @media (max-width: 900px) { … … 1033 1033 color: #aaa; 1034 1034 font: 600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif; 1035 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);1035 text-shadow: 0 -1px 1px rgba(255, 255, 255, 0.2); 1036 1036 background: #eee; 1037 1037 border-radius: 3px; … … 1040 1040 .jp-filter a.selected, .jp-filter a:hover, .jp-filter a:focus { 1041 1041 color: #efefef; 1042 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);1042 text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2); 1043 1043 background: #6f7476; 1044 1044 } … … 1088 1088 .module.active { 1089 1089 border-color: #2ea2cc; 1090 box-shadow: inset 4px 0 0 #2ea2cc;1090 box-shadow: inset -4px 0 0 #2ea2cc; 1091 1091 } 1092 1092 .module.active:hover { 1093 1093 border-color: #69bedd; 1094 box-shadow: inset 4px 0 0 #69bedd;1094 box-shadow: inset -4px 0 0 #69bedd; 1095 1095 } 1096 1096 @media (max-width: 1147px) { … … 1164 1164 font-weight: 800; 1165 1165 text-align: center; 1166 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);1166 text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2); 1167 1167 background: url("../images/new-badge.svg") center center no-repeat; 1168 1168 background-size: 100%; … … 1179 1179 color: #fff; 1180 1180 font: 700 10px/1 "Open Sans", Helvetica, Arial, sans-serif; 1181 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);1181 text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05); 1182 1182 background: #d0d0d0; 1183 1183 vertical-align: top; … … 1279 1279 color: #5d6d74; 1280 1280 font: 300 32px "proxima-nova", "Open Sans", Helvetica, Arial, sans-serif; 1281 text-shadow: 0 1px 1px #fff;1281 text-shadow: 0 -1px 1px #fff; 1282 1282 } 1283 1283 @media (max-width: 530px) { … … 1306 1306 margin: 0; 1307 1307 } 1308 .modal .button-secondary { 1308 .modal .button-secondary, 1309 .modal .button-primary:active { 1309 1310 vertical-align: baseline; 1310 1311 } … … 1375 1376 color: #5d6d74; 1376 1377 font: 300 2.57143em/1.4em "proxima-nova", "Open Sans", Helvetica, Arial, sans-serif; 1377 text-shadow: 0 1px 1px #fff;1378 text-shadow: 0 -1px 1px #fff; 1378 1379 } 1379 1380 @media (max-width: 530px) { … … 1390 1391 color: #5d6d74; 1391 1392 font: 300 1.9em "proxima-nova", "Open Sans", Helvetica, Arial, sans-serif; 1392 text-shadow: 0 1px 1px #fff;1393 text-shadow: 0 -1px 1px #fff; 1393 1394 } 1394 1395 @media (max-width: 530px) { … … 1598 1599 position: relative; 1599 1600 z-index: 2; 1601 } 1602 .jetpack-message.is-opt-in { 1603 margin: 50px 0 0; 1604 max-width: 100%; 1605 padding: 10px 15px; 1606 background: #fff; 1607 border: 0; 1608 box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); 1609 font-size: 13px; 1610 text-align: center; 1611 } 1612 .subhead .jetpack-message.is-opt-in { 1613 margin: 0; 1614 padding-bottom: 0; 1615 background: transparent; 1616 box-shadow: none; 1617 } 1618 .subhead .jetpack-message.is-opt-in .jp-button, .subhead .jetpack-message.is-opt-in .jp-button--settings { 1619 display: inline-block; 1620 } 1621 .jetpack-message.is-opt-in p { 1622 color: #3c4549; 1623 } 1624 .jetpack-message.is-opt-in .jp-button, .jetpack-message.is-opt-in .jp-button--settings { 1625 margin-top: 15px; 1626 display: none; 1600 1627 } 1601 1628 .jetpack-message h4 { … … 1633 1660 } 1634 1661 } 1662 .jetpack-message .squeezer a { 1663 color: #FFF; 1664 border-bottom: 1px solid #D5E4BD; 1665 } 1666 .jetpack-message .squeezer a:hover { 1667 border-bottom: 1px solid #F1F6E9; 1668 } 1635 1669 .jetpack-message.error .squeezer:before, .jetpack-message.jetpack-err .squeezer:before { 1636 1670 content: '\f414'; … … 2136 2170 position: relative; 2137 2171 } 2138 .wrap .manage- left p.search-box input[type='search'] {2172 .wrap .manage-right p.search-box input[type='search'] { 2139 2173 padding: 0 8px; 2140 2174 width: 90%; … … 2142 2176 } 2143 2177 @media (max-width: 782px) { 2144 .wrap .manage- left p.search-box input[type='search'] {2178 .wrap .manage-right p.search-box input[type='search'] { 2145 2179 float: right; 2146 2180 padding: 9px 8px; … … 2206 2240 2207 2241 /*# sourceMappingURL=jetpack-admin.css.map */ 2208 body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;-webkit-transition:color .2s;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 2em/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-left:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;right:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.5em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-left:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:right}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-right:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-left-color:#81a844}.folded #wpcontent{margin-right:36px}#wpfooter{display:none}.jp-content{background:#81a844;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:36px;padding-right:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:0}}@media (max-width: 782px){.configure .frame.top.fixed{padding-right:0}}.wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}@media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}.jetpack_page_jetpack_modules .header-nav{max-width:auto;margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}@media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}.footer nav{max-width:550px;margin:0 auto}.header{right:0;left:0}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-left:6px;background-size:183px 32px;color:#fff;line-height:60px;font-weight:normal;text-indent:-9999px}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;right:0;width:100%;height:100%;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px 32px}.main-nav{float:right}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}.user-nav{float:left}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-linear-gradient(top, #81a844, #8eb74e);background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}.jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}.flyer{position:absolute;bottom:-200px;right:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;right:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}.clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-gradient(linear, right top, right bottom, from(#81a844), to(#89b348));background-image:-webkit-linear-gradient(top, #81a844, #89b348);background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;right:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90}}.featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}.featured h2,.module-grid h2{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center;text-shadow:0 1px 1px #fff}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}.features,.modules{margin:0 -5px}.feature,.module{position:relative;float:right;margin:0 5px 10px;width:310px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 1.5% .75% 0;width:32.333333%;-webkit-transition:none;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-right:0}.feature:hover,.module:hover{top:0;box-shadow:none}}.feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;right:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/[email protected]")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}.cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 6px 13px 0;text-align:right}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1.25em 0 0.69444em}@media (max-width: 530px){.module-grid h2{margin-top:16px;font-size:25px}}#module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;left:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;left:11px;text-align:left;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}.module{cursor:pointer;display:block;padding:0.71429em 1.07143em 1em;text-align:right;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);-webkit-transition:opacity 2s ease-in;transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module h3{margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module.active{border-color:#2ea2cc;box-shadow:inset 4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset 4px 0 0 #69bedd}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 1.5% .75% 0}.cat .module:nth-child(3n - 1){margin-right:0}}@media (max-width: 900px){.cat .module{margin:1% 2% 1% 0}.cat .module:nth-child(2n+1){margin:1% 2% 1% 0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-right:0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 900px){.module{margin:1% 2% 1% 0;width:49%}.module:nth-child(3n+1){margin-right:2%}.module:nth-child(2n+1){margin-right:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-right:0}.module:nth-child(2n+1){margin-right:0}}.new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;left:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-right:10px;padding:1px 4px 0 6px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;left:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-left:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;left:20px;right:20px;margin-right:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;left:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;left:0;bottom:0;right:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:right}.modal h2{text-align:right;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal p{font-size:1.23077em}.modal footer{position:absolute;right:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:left}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-right:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-right:0}}@media (max-width: 600px){.modal{top:10px;left:10px;bottom:10px;right:10px}}.jp-info-img{float:left;margin:0 30px 30px 0}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}.content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;right:0;opacity:0.2;position:fixed;left:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}.blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}.page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:right;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center;background-color:#81a844;background-image:-webkit-linear-gradient(top, #8eb74e, #81a844);background-image:linear-gradient(top, #8eb74e, #81a844)}.footer:before,.footer:after{content:'';position:absolute;right:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px;background:url("../images/the-undercloud.svg") center top repeat-x}.footer:after{bottom:0;width:100%;height:50px;background:url("../images/the-footcloud.svg") center bottom no-repeat;background-size:auto 45px;z-index:1}.footer .download-jetpack{margin-bottom:33px}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer:after{display:none}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}.footer nav{max-width:100%;color:#c8e3a2}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#c8e3a2}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}@media (max-width: 1147px){.footer nav{border:none;padding:0}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:right}.footer nav a{display:block;padding:0 16px;line-height:44px}}.primary{padding:25px 15px 10px 15px;border-bottom:1px solid #6c954d}.secondary-footer{margin:0 auto}.secondary-footer li{margin-left:5px}@media (max-width: 1147px){.secondary-footer{margin:0 30px;padding:8px 15px 30px}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #7ba141}}.footer .a8c-attribution{margin-top:6px auto 0;padding:0 6px;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;left:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;left:-9999px;height:100%;color:#fff;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}@media (max-width: 1147px){.footer .a8c-attribution{display:none}}.secondary{padding:14px 15px 0 15px;border-top:1px solid #8eb345}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 80px 23px 23px;position:relative;text-align:right}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;right:25px;opacity:0.6;position:absolute;top:23px;top:calc( 50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.modules h3.icon,.jetpack-modules .info a{width:auto}.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;right:-3px;margin-left:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-left:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}.page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-right:160px;margin-top:-6px;position:fixed;left:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:right}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}.jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:left;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}.module-actions.landing-page{float:left;margin-left:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-right:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-right:4px solid #2ea2cc;padding-right:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-right:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 14px 8px 10px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-right:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:left;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-right:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-right:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}.fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:right;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;position:absolute;left:0;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:right}.wrap .manage-right .bumper{margin-right:33px}.wrap .manage-right.show{display:block;position:fixed;overflow-y:auto;overflow-x:hidden;position:absolute}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-left p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-left p.search-box input[type='search']{float:right;padding:9px 8px}}.wrap .manage-left p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-right:-5px;background:#0D72B2;color:#FFF}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:right}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;left:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both}2242 body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;-webkit-transition:color .2s;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-left:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;right:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.5em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-left:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:right}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-right:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-left-color:#81a844}.folded #wpcontent{margin-right:36px}#wpfooter{display:none}.jp-content{background:#81a844;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:36px;padding-right:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:0}}@media (max-width: 782px){.configure .frame.top.fixed{padding-right:0}}.wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}@media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}.jetpack_page_jetpack_modules .header-nav{max-width:auto;margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}@media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}.footer nav{max-width:550px;margin:0 auto}.header{right:0;left:0}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-left:6px;background-size:183px 32px;color:#fff;line-height:60px;font-weight:normal;text-indent:-9999px}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;right:0;width:100%;height:100%;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px 32px}.main-nav{float:right}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}.user-nav{float:left}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-linear-gradient(top, #81a844, #8eb74e);background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 -1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}.jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}.flyer{position:absolute;bottom:-200px;right:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;right:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}.clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-gradient(linear, right top, right bottom, from(#81a844), to(#89b348));background-image:-webkit-linear-gradient(top, #81a844, #89b348);background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;right:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90}}.featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}.featured h2,.module-grid h2{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center;text-shadow:0 -1px 1px #fff}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}.features,.modules{margin:0 -5px}.feature,.module{position:relative;float:right;margin:0 5px 10px;width:310px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 1.5% .75% 0;width:32.333333%;-webkit-transition:none;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-right:0}.feature:hover,.module:hover{top:0;box-shadow:none}}.feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;right:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/[email protected]")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}.cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 6px 13px 0;text-align:right}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1.25em 0 0.69444em}@media (max-width: 530px){.module-grid h2{margin-top:16px;font-size:25px}}#module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;left:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;left:11px;text-align:left;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 -1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}.module{cursor:pointer;display:block;padding:0.71429em 1.07143em 1em;text-align:right;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);-webkit-transition:opacity 2s ease-in;transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module h3{margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module.active{border-color:#2ea2cc;box-shadow:inset -4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset -4px 0 0 #69bedd}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 1.5% .75% 0}.cat .module:nth-child(3n - 1){margin-right:0}}@media (max-width: 900px){.cat .module{margin:1% 2% 1% 0}.cat .module:nth-child(2n+1){margin:1% 2% 1% 0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-right:0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 900px){.module{margin:1% 2% 1% 0;width:49%}.module:nth-child(3n+1){margin-right:2%}.module:nth-child(2n+1){margin-right:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-right:0}.module:nth-child(2n+1){margin-right:0}}.new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;left:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-right:10px;padding:1px 4px 0 6px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;left:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-left:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;left:20px;right:20px;margin-right:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;left:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;left:0;bottom:0;right:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:right}.modal h2{text-align:right;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal p{font-size:1.23077em}.modal footer{position:absolute;right:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:left}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary,.modal .button-primary:active{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-right:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-right:0}}@media (max-width: 600px){.modal{top:10px;left:10px;bottom:10px;right:10px}}.jp-info-img{float:left;margin:0 30px 30px 0}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}.content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;right:0;opacity:0.2;position:fixed;left:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}.blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}.page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:right;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center;background-color:#81a844;background-image:-webkit-linear-gradient(top, #8eb74e, #81a844);background-image:linear-gradient(top, #8eb74e, #81a844)}.footer:before,.footer:after{content:'';position:absolute;right:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px;background:url("../images/the-undercloud.svg") center top repeat-x}.footer:after{bottom:0;width:100%;height:50px;background:url("../images/the-footcloud.svg") center bottom no-repeat;background-size:auto 45px;z-index:1}.footer .download-jetpack{margin-bottom:33px}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer:after{display:none}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}.footer nav{max-width:100%;color:#c8e3a2}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#c8e3a2}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}@media (max-width: 1147px){.footer nav{border:none;padding:0}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:right}.footer nav a{display:block;padding:0 16px;line-height:44px}}.primary{padding:25px 15px 10px 15px;border-bottom:1px solid #6c954d}.secondary-footer{margin:0 auto}.secondary-footer li{margin-left:5px}@media (max-width: 1147px){.secondary-footer{margin:0 30px;padding:8px 15px 30px}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #7ba141}}.footer .a8c-attribution{margin-top:6px auto 0;padding:0 6px;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;left:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;left:-9999px;height:100%;color:#fff;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}@media (max-width: 1147px){.footer .a8c-attribution{display:none}}.secondary{padding:14px 15px 0 15px;border-top:1px solid #8eb345}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message.is-opt-in{margin:50px 0 0;max-width:100%;padding:10px 15px;background:#fff;border:0;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);font-size:13px;text-align:center}.subhead .jetpack-message.is-opt-in{margin:0;padding-bottom:0;background:transparent;box-shadow:none}.subhead .jetpack-message.is-opt-in .jp-button,.subhead .jetpack-message.is-opt-in .jp-button--settings{display:inline-block}.jetpack-message.is-opt-in p{color:#3c4549}.jetpack-message.is-opt-in .jp-button,.jetpack-message.is-opt-in .jp-button--settings{margin-top:15px;display:none}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 80px 23px 23px;position:relative;text-align:right}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;right:25px;opacity:0.6;position:absolute;top:23px;top:calc( 50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message .squeezer a{color:#FFF;border-bottom:1px solid #D5E4BD}.jetpack-message .squeezer a:hover{border-bottom:1px solid #F1F6E9}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.modules h3.icon,.jetpack-modules .info a{width:auto}.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;right:-3px;margin-left:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-left:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}.page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-right:160px;margin-top:-6px;position:fixed;left:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:right}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}.jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:left;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}.module-actions.landing-page{float:left;margin-left:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-right:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-right:4px solid #2ea2cc;padding-right:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-right:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 14px 8px 10px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-right:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:left;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-right:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-right:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}.fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:right;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;position:absolute;left:0;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:right}.wrap .manage-right .bumper{margin-right:33px}.wrap .manage-right.show{display:block;position:fixed;overflow-y:auto;overflow-x:hidden;position:absolute}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-right p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-right p.search-box input[type='search']{float:right;padding:9px 8px}}.wrap .manage-left p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-right:-5px;background:#0D72B2;color:#FFF}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:right}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;left:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both} 2209 2243 2210 2244 /*# sourceMappingURL=jetpack-admin.min.css.map */ -
jetpack/trunk/css/jetpack-admin-rtl.min.css
r1041038 r1043793 1 body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;-webkit-transition:color .2s;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 2em/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-left:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;right:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.5em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-left:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:right}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-right:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-left-color:#81a844}.folded #wpcontent{margin-right:36px}#wpfooter{display:none}.jp-content{background:#81a844;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:36px;padding-right:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:0}}@media (max-width: 782px){.configure .frame.top.fixed{padding-right:0}}.wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}@media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}.jetpack_page_jetpack_modules .header-nav{max-width:auto;margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}@media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}.footer nav{max-width:550px;margin:0 auto}.header{right:0;left:0}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-left:6px;background-size:183px 32px;color:#fff;line-height:60px;font-weight:normal;text-indent:-9999px}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;right:0;width:100%;height:100%;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px 32px}.main-nav{float:right}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}.user-nav{float:left}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-linear-gradient(top, #81a844, #8eb74e);background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}.jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}.flyer{position:absolute;bottom:-200px;right:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;right:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}.clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-gradient(linear, right top, right bottom, from(#81a844), to(#89b348));background-image:-webkit-linear-gradient(top, #81a844, #89b348);background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;right:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90}}.featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}.featured h2,.module-grid h2{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center;text-shadow:0 1px 1px #fff}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}.features,.modules{margin:0 -5px}.feature,.module{position:relative;float:right;margin:0 5px 10px;width:310px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 1.5% .75% 0;width:32.333333%;-webkit-transition:none;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-right:0}.feature:hover,.module:hover{top:0;box-shadow:none}}.feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;right:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/[email protected]")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}.cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 6px 13px 0;text-align:right}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1.25em 0 0.69444em}@media (max-width: 530px){.module-grid h2{margin-top:16px;font-size:25px}}#module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;left:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;left:11px;text-align:left;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}.module{cursor:pointer;display:block;padding:0.71429em 1.07143em 1em;text-align:right;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);-webkit-transition:opacity 2s ease-in;transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module h3{margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module.active{border-color:#2ea2cc;box-shadow:inset 4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset 4px 0 0 #69bedd}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 1.5% .75% 0}.cat .module:nth-child(3n - 1){margin-right:0}}@media (max-width: 900px){.cat .module{margin:1% 2% 1% 0}.cat .module:nth-child(2n+1){margin:1% 2% 1% 0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-right:0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 900px){.module{margin:1% 2% 1% 0;width:49%}.module:nth-child(3n+1){margin-right:2%}.module:nth-child(2n+1){margin-right:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-right:0}.module:nth-child(2n+1){margin-right:0}}.new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;left:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-right:10px;padding:1px 4px 0 6px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;left:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-left:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;left:20px;right:20px;margin-right:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;left:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;left:0;bottom:0;right:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:right}.modal h2{text-align:right;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal p{font-size:1.23077em}.modal footer{position:absolute;right:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:left}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-right:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-right:0}}@media (max-width: 600px){.modal{top:10px;left:10px;bottom:10px;right:10px}}.jp-info-img{float:left;margin:0 30px 30px 0}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}.content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;right:0;opacity:0.2;position:fixed;left:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}.blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}.page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:right;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center;background-color:#81a844;background-image:-webkit-linear-gradient(top, #8eb74e, #81a844);background-image:linear-gradient(top, #8eb74e, #81a844)}.footer:before,.footer:after{content:'';position:absolute;right:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px;background:url("../images/the-undercloud.svg") center top repeat-x}.footer:after{bottom:0;width:100%;height:50px;background:url("../images/the-footcloud.svg") center bottom no-repeat;background-size:auto 45px;z-index:1}.footer .download-jetpack{margin-bottom:33px}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer:after{display:none}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}.footer nav{max-width:100%;color:#c8e3a2}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#c8e3a2}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}@media (max-width: 1147px){.footer nav{border:none;padding:0}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:right}.footer nav a{display:block;padding:0 16px;line-height:44px}}.primary{padding:25px 15px 10px 15px;border-bottom:1px solid #6c954d}.secondary-footer{margin:0 auto}.secondary-footer li{margin-left:5px}@media (max-width: 1147px){.secondary-footer{margin:0 30px;padding:8px 15px 30px}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #7ba141}}.footer .a8c-attribution{margin-top:6px auto 0;padding:0 6px;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;left:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;left:-9999px;height:100%;color:#fff;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}@media (max-width: 1147px){.footer .a8c-attribution{display:none}}.secondary{padding:14px 15px 0 15px;border-top:1px solid #8eb345}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 80px 23px 23px;position:relative;text-align:right}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;right:25px;opacity:0.6;position:absolute;top:23px;top:calc( 50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.modules h3.icon,.jetpack-modules .info a{width:auto}.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;right:-3px;margin-left:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-left:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}.page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-right:160px;margin-top:-6px;position:fixed;left:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:right}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}.jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:left;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}.module-actions.landing-page{float:left;margin-left:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-right:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-right:4px solid #2ea2cc;padding-right:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-right:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 14px 8px 10px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-right:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:left;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-right:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-right:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}.fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:right;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;position:absolute;left:0;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:right}.wrap .manage-right .bumper{margin-right:33px}.wrap .manage-right.show{display:block;position:fixed;overflow-y:auto;overflow-x:hidden;position:absolute}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-left p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-left p.search-box input[type='search']{float:right;padding:9px 8px}}.wrap .manage-left p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-right:-5px;background:#0D72B2;color:#FFF}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:right}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;left:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both}1 body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;-webkit-transition:color .2s;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-left:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;right:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.5em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-left:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:right}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-right:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-left-color:#81a844}.folded #wpcontent{margin-right:36px}#wpfooter{display:none}.jp-content{background:#81a844;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:36px;padding-right:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-right:0}}@media (max-width: 782px){.configure .frame.top.fixed{padding-right:0}}.wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}@media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}.jetpack_page_jetpack_modules .header-nav{max-width:auto;margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}@media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}.footer nav{max-width:550px;margin:0 auto}.header{right:0;left:0}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-left:6px;background-size:183px 32px;color:#fff;line-height:60px;font-weight:normal;text-indent:-9999px}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;right:0;width:100%;height:100%;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px 32px}.main-nav{float:right}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}.user-nav{float:left}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-linear-gradient(top, #81a844, #8eb74e);background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 -1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}.jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}.flyer{position:absolute;bottom:-200px;right:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){right:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){right:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;right:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}.clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-gradient(linear, right top, right bottom, from(#81a844), to(#89b348));background-image:-webkit-linear-gradient(top, #81a844, #89b348);background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;right:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90}}.featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}.featured h2,.module-grid h2{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center;text-shadow:0 -1px 1px #fff}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}.features,.modules{margin:0 -5px}.feature,.module{position:relative;float:right;margin:0 5px 10px;width:310px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 1.5% .75% 0;width:32.333333%;-webkit-transition:none;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-right:0}.feature:hover,.module:hover{top:0;box-shadow:none}}.feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;right:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/[email protected]")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}.cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 6px 13px 0;text-align:right}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1.25em 0 0.69444em}@media (max-width: 530px){.module-grid h2{margin-top:16px;font-size:25px}}#module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;left:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;left:11px;text-align:left;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 -1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 -1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}.module{cursor:pointer;display:block;padding:0.71429em 1.07143em 1em;text-align:right;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);-webkit-transition:opacity 2s ease-in;transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module h3{margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module.active{border-color:#2ea2cc;box-shadow:inset -4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset -4px 0 0 #69bedd}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 1.5% .75% 0}.cat .module:nth-child(3n - 1){margin-right:0}}@media (max-width: 900px){.cat .module{margin:1% 2% 1% 0}.cat .module:nth-child(2n+1){margin:1% 2% 1% 0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-right:0}.cat .module:nth-child(2n+0){margin-right:0}}@media (max-width: 900px){.module{margin:1% 2% 1% 0;width:49%}.module:nth-child(3n+1){margin-right:2%}.module:nth-child(2n+1){margin-right:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-right:0}.module:nth-child(2n+1){margin-right:0}}.new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;left:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-right:10px;padding:1px 4px 0 6px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;left:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-left:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;left:20px;right:20px;margin-right:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;left:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;left:0;bottom:0;right:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:right}.modal h2{text-align:right;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal p{font-size:1.23077em}.modal footer{position:absolute;right:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:left}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary,.modal .button-primary:active{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-right:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-right:0}}@media (max-width: 600px){.modal{top:10px;left:10px;bottom:10px;right:10px}}.jp-info-img{float:left;margin:0 30px 30px 0}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}.content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;right:0;opacity:0.2;position:fixed;left:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}.blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}.page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:right;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center;background-color:#81a844;background-image:-webkit-linear-gradient(top, #8eb74e, #81a844);background-image:linear-gradient(top, #8eb74e, #81a844)}.footer:before,.footer:after{content:'';position:absolute;right:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px;background:url("../images/the-undercloud.svg") center top repeat-x}.footer:after{bottom:0;width:100%;height:50px;background:url("../images/the-footcloud.svg") center bottom no-repeat;background-size:auto 45px;z-index:1}.footer .download-jetpack{margin-bottom:33px}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer:after{display:none}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}.footer nav{max-width:100%;color:#c8e3a2}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#c8e3a2}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}@media (max-width: 1147px){.footer nav{border:none;padding:0}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:right}.footer nav a{display:block;padding:0 16px;line-height:44px}}.primary{padding:25px 15px 10px 15px;border-bottom:1px solid #6c954d}.secondary-footer{margin:0 auto}.secondary-footer li{margin-left:5px}@media (max-width: 1147px){.secondary-footer{margin:0 30px;padding:8px 15px 30px}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #7ba141}}.footer .a8c-attribution{margin-top:6px auto 0;padding:0 6px;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;left:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;left:-9999px;height:100%;color:#fff;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}@media (max-width: 1147px){.footer .a8c-attribution{display:none}}.secondary{padding:14px 15px 0 15px;border-top:1px solid #8eb345}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message.is-opt-in{margin:50px 0 0;max-width:100%;padding:10px 15px;background:#fff;border:0;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);font-size:13px;text-align:center}.subhead .jetpack-message.is-opt-in{margin:0;padding-bottom:0;background:transparent;box-shadow:none}.subhead .jetpack-message.is-opt-in .jp-button,.subhead .jetpack-message.is-opt-in .jp-button--settings{display:inline-block}.jetpack-message.is-opt-in p{color:#3c4549}.jetpack-message.is-opt-in .jp-button,.jetpack-message.is-opt-in .jp-button--settings{margin-top:15px;display:none}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 80px 23px 23px;position:relative;text-align:right}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;right:25px;opacity:0.6;position:absolute;top:23px;top:calc( 50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message .squeezer a{color:#FFF;border-bottom:1px solid #D5E4BD}.jetpack-message .squeezer a:hover{border-bottom:1px solid #F1F6E9}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.modules h3.icon,.jetpack-modules .info a{width:auto}.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;right:-3px;margin-left:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-left:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}.page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-right:160px;margin-top:-6px;position:fixed;left:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:right}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}.jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:left;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}.module-actions.landing-page{float:left;margin-left:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-right:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-right:4px solid #2ea2cc;padding-right:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-right:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 14px 8px 10px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-right:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:left;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-right:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-right:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}.fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:right;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;position:absolute;left:0;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:right}.wrap .manage-right .bumper{margin-right:33px}.wrap .manage-right.show{display:block;position:fixed;overflow-y:auto;overflow-x:hidden;position:absolute}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-right p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-right p.search-box input[type='search']{float:right;padding:9px 8px}}.wrap .manage-left p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-right:-5px;background:#0D72B2;color:#FFF}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:right}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;left:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both} 2 2 3 3 /*# sourceMappingURL=jetpack-admin.min.css.map */ -
jetpack/trunk/css/jetpack-admin.css
r1038914 r1043793 217 217 padding: 0.64286em 0.85714em 0.53571em; 218 218 color: #fff; 219 font: 400 2 em/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;219 font: 400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif; 220 220 background: #518d2a; 221 221 z-index: 3; … … 1306 1306 margin: 0; 1307 1307 } 1308 .modal .button-secondary { 1308 .modal .button-secondary, 1309 .modal .button-primary:active { 1309 1310 vertical-align: baseline; 1310 1311 } … … 1599 1600 z-index: 2; 1600 1601 } 1602 .jetpack-message.is-opt-in { 1603 margin: 50px 0 0; 1604 max-width: 100%; 1605 padding: 10px 15px; 1606 background: #fff; 1607 border: 0; 1608 box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); 1609 font-size: 13px; 1610 text-align: center; 1611 } 1612 .subhead .jetpack-message.is-opt-in { 1613 margin: 0; 1614 padding-bottom: 0; 1615 background: transparent; 1616 box-shadow: none; 1617 } 1618 .subhead .jetpack-message.is-opt-in .jp-button, .subhead .jetpack-message.is-opt-in .jp-button--settings { 1619 display: inline-block; 1620 } 1621 .jetpack-message.is-opt-in p { 1622 color: #3c4549; 1623 } 1624 .jetpack-message.is-opt-in .jp-button, .jetpack-message.is-opt-in .jp-button--settings { 1625 margin-top: 15px; 1626 display: none; 1627 } 1601 1628 .jetpack-message h4 { 1602 1629 color: #fff; … … 1633 1660 } 1634 1661 } 1662 .jetpack-message .squeezer a { 1663 color: #FFF; 1664 border-bottom: 1px solid #D5E4BD; 1665 } 1666 .jetpack-message .squeezer a:hover { 1667 border-bottom: 1px solid #F1F6E9; 1668 } 1635 1669 .jetpack-message.error .squeezer:before, .jetpack-message.jetpack-err .squeezer:before { 1636 1670 content: '\f414'; -
jetpack/trunk/css/jetpack-admin.css.map
r1041038 r1043793 1 {"version":3,"sources":["../scss/atoms/typography/_typography.scss","jetpack-admin.css","../scss/atoms/typography/_variables.scss","../scss/atoms/_media.scss","../scss/atoms/_animations.scss","../scss/atoms/_buttons.scss","../scss/_utilities/mixins/_breakpoint.scss","../scss/atoms/icons/_automatticons.scss","../scss/atoms/icons/_jetpack.scss","../scss/molecules/_nav-horizontal.scss","../scss/templates/_main.scss","../scss/atoms/colors/_colors.scss","../scss/_utilities/mixins/_gradient--vertical.scss","../scss/templates/_settings.scss","../scss/_utilities/_clearings.scss"],"names":[],"mappings":"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","file":"jetpack-admin.css"}1 {"version":3,"sources":["../scss/atoms/typography/_typography.scss","jetpack-admin.css","../scss/atoms/typography/_variables.scss","../scss/atoms/_media.scss","../scss/atoms/_animations.scss","../scss/atoms/_buttons.scss","../scss/_utilities/mixins/_breakpoint.scss","../scss/atoms/icons/_automatticons.scss","../scss/atoms/icons/_jetpack.scss","../scss/molecules/_nav-horizontal.scss","../scss/templates/_main.scss","../scss/atoms/colors/_colors.scss","../scss/_utilities/mixins/_gradient--vertical.scss","../scss/templates/_settings.scss","../scss/_utilities/_clearings.scss"],"names":[],"mappings":"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","file":"jetpack-admin.css"} -
jetpack/trunk/css/jetpack-admin.min.css
r1041038 r1043793 1 body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;-webkit-transition:color .2s;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 2 em/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-right:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.5em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-right:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:left}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-left:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-right-color:#81a844}.folded #wpcontent{margin-left:36px}#wpfooter{display:none}.jp-content{background:#81a844;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-left:36px;padding-left:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-left:0}}@media (max-width: 782px){.configure .frame.top.fixed{padding-left:0}}.wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}@media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}.jetpack_page_jetpack_modules .header-nav{max-width:auto;margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}@media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}.footer nav{max-width:550px;margin:0 auto}.header{left:0;right:0}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-right:6px;background-size:183px 32px;color:#fff;line-height:60px;font-weight:normal;text-indent:-9999px}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px 32px}.main-nav{float:left}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}.user-nav{float:right}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-linear-gradient(top, #81a844, #8eb74e);background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}.jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}.flyer{position:absolute;bottom:-200px;left:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){left:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){left:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;left:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}.clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-gradient(linear, left top, left bottom, from(#81a844), to(#89b348));background-image:-webkit-linear-gradient(top, #81a844, #89b348);background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;left:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90}}.featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}.featured h2,.module-grid h2{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center;text-shadow:0 1px 1px #fff}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}.features,.modules{margin:0 -5px}.feature,.module{position:relative;float:left;margin:0 5px 10px;width:310px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 0 .75% 1.5%;width:32.333333%;-webkit-transition:none;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-left:0}.feature:hover,.module:hover{top:0;box-shadow:none}}.feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;left:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/[email protected]")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}.cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 0 13px 6px;text-align:left}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1.25em 0 0.69444em}@media (max-width: 530px){.module-grid h2{margin-top:16px;font-size:25px}}#module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;right:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;right:11px;text-align:right;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}.module{cursor:pointer;display:block;padding:0.71429em 1.07143em 1em;text-align:left;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);-webkit-transition:opacity 2s ease-in;transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module h3{margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module.active{border-color:#2ea2cc;box-shadow:inset 4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset 4px 0 0 #69bedd}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 0 .75% 1.5%}.cat .module:nth-child(3n - 1){margin-left:0}}@media (max-width: 900px){.cat .module{margin:1% 0 1% 2%}.cat .module:nth-child(2n+1){margin:1% 0 1% 2%}.cat .module:nth-child(2n+0){margin-left:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-left:0}.cat .module:nth-child(2n+0){margin-left:0}}@media (max-width: 900px){.module{margin:1% 0 1% 2%;width:49%}.module:nth-child(3n+1){margin-left:2%}.module:nth-child(2n+1){margin-left:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-left:0}.module:nth-child(2n+1){margin-left:0}}.new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;right:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-left:10px;padding:1px 6px 0 4px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;right:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-right:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;right:20px;left:20px;margin-left:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;right:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;right:0;bottom:0;left:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:left}.modal h2{text-align:left;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal p{font-size:1.23077em}.modal footer{position:absolute;left:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:right}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-left:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-left:0}}@media (max-width: 600px){.modal{top:10px;right:10px;bottom:10px;left:10px}}.jp-info-img{float:right;margin:0 0 30px 30px}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}.content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;left:0;opacity:0.2;position:fixed;right:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}.blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}.page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:left;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center;background-color:#81a844;background-image:-webkit-linear-gradient(top, #8eb74e, #81a844);background-image:linear-gradient(top, #8eb74e, #81a844)}.footer:before,.footer:after{content:'';position:absolute;left:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px;background:url("../images/the-undercloud.svg") center top repeat-x}.footer:after{bottom:0;width:100%;height:50px;background:url("../images/the-footcloud.svg") center bottom no-repeat;background-size:auto 45px;z-index:1}.footer .download-jetpack{margin-bottom:33px}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer:after{display:none}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}.footer nav{max-width:100%;color:#c8e3a2}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#c8e3a2}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}@media (max-width: 1147px){.footer nav{border:none;padding:0}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:left}.footer nav a{display:block;padding:0 16px;line-height:44px}}.primary{padding:25px 15px 10px 15px;border-bottom:1px solid #6c954d}.secondary-footer{margin:0 auto}.secondary-footer li{margin-right:5px}@media (max-width: 1147px){.secondary-footer{margin:0 30px;padding:8px 15px 30px}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #7ba141}}.footer .a8c-attribution{margin-top:6px auto 0;padding:0 6px;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;right:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;right:-9999px;height:100%;color:#fff;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}@media (max-width: 1147px){.footer .a8c-attribution{display:none}}.secondary{padding:14px 15px 0 15px;border-top:1px solid #8eb345}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 23px 23px 80px;position:relative;text-align:left}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;left:25px;opacity:0.6;position:absolute;top:23px;top:calc( 50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.modules h3.icon,.jetpack-modules .info a{width:auto}.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;left:-3px;margin-right:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-right:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}.page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-left:160px;margin-top:-6px;position:fixed;right:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:left}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}.jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:right;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}.module-actions.landing-page{float:right;margin-right:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-left:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-left:4px solid #2ea2cc;padding-left:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-left:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 10px 8px 14px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-left:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:right;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-left:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-left:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}.fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:left;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;position:absolute;right:0;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:left}.wrap .manage-right .bumper{margin-left:33px}.wrap .manage-right.show{display:block;position:fixed;overflow-y:auto;overflow-x:hidden;position:absolute}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-right p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-right p.search-box input[type='search']{float:left;padding:9px 8px}}.wrap .manage-right p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-left:-5px;background:#0D72B2;color:#FFF}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:left}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;right:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both}1 body,button,input,select,textarea{color:#222;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{color:#222;clear:both}a{color:#0d72b2;-webkit-transition:color .2s;transition:color .2s;text-decoration:none}a:visited{color:#0d72b2}a:hover{color:#0f92e5}a:focus{outline:thin dotted}address{margin:0 0 1.5em}abbr[title],acronym{cursor:help}ins{background:#eee;text-decoration:none}dt{font-weight:700}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:middle}@-webkit-keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "grow"{0%{-webkit-transform:scale(0.3);transform:scale(0.3)}60%{-webkit-transform:scale(1.15);transform:scale(1.15)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes "candy"{0%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.15);transform:scale(1.15)}60%{-webkit-transform:scale(0.95);transform:scale(0.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}@keyframes "flyer"{0%{-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}100%{-webkit-transform:translate3d(680px, -680px, 0px);transform:translate3d(680px, -680px, 0px)}}.button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:0.64286em 0.85714em 0.53571em;color:#fff;font:400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-right:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:1.5em}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:1.21429em;font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-right:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:0.71429em 1.5em;color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}@font-face{font-family:'automatticons';src:url("../_inc/fonts/automatticons/automatticons.eot");src:url("../_inc/fonts/automatticons/automatticons.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/automatticons/automatticons.woff") format("woff"),url("../_inc/fonts/automatticons/automatticons.ttf") format("truetype"),url("../_inc/fonts/automatticons/automatticons.svg#automatticonsregular") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.eot");src:url("../_inc/fonts/jetpack/jetpack.eot?#iefix") format("embedded-opentype"),url("../_inc/fonts/jetpack/jetpack.woff") format("woff"),url("../_inc/fonts/jetpack/jetpack.ttf") format("truetype"),url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"jetpack";src:url("../_inc/fonts/jetpack/jetpack.svg#jetpack") format("svg")}}.nav-horizontal a{display:inline-block}.nav-horizontal li{position:relative;float:left}.nav-horizontal ul{margin:0;padding:0}*,*:before,*:after{-moz-box-sizing:border-box;box-sizing:border-box}::-moz-selection{background:#91bd51;color:#fff;text-shadow:none}::selection{background:#91bd51;color:#fff;text-shadow:none}#wpbody-content{padding-bottom:0}#wpcontent{margin-left:160px;padding:0}ul#adminmenu a.toplevel_page_jetpack:after{border-right-color:#81a844}.folded #wpcontent{margin-left:36px}#wpfooter{display:none}.jp-content{background:#81a844;margin:0;height:auto;min-height:100%;width:100%;width:100%;-webkit-font-smoothing:antialiased}.jp-content .wrapper{background:#f9f9f9}@media (max-width: 900px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-left:36px;padding-left:0}}@media (max-width: 782px){#wpcontent,.auto-fold #wpcontent,.auto-fold #wpfooter,.modal,.configure .frame.top.fixed{margin-left:0}}@media (max-width: 782px){.configure .frame.top.fixed{padding-left:0}}.wrap.inner,.page-content{max-width:950px;margin:0 auto}.wrap.inner li,.page-content li{line-height:23px}@media (max-width: 530px){.page-content{margin-top:0}}@media (max-width: 1147px){.wrap.inner{background:#f9f9f9;padding:15px}}@media (max-width: 530px){.wrap.inner{margin-top:1.71429em}}.jetpack_page_jetpack_modules .header-nav{max-width:auto;margin:0}.jetpack_page_jetpack_modules .page-content{max-width:1200px;min-height:500px;margin:0}.page-content.about{position:relative;z-index:10}@media (max-width: 1147px){.page-content.about{background:#f9f9f9;padding:15px}}@media (max-width: 1147px){.page-content.configure{background:#f9f9f9}}.footer nav{max-width:550px;margin:0 auto}.header{left:0;right:0}.header-nav li{line-height:60px}.header-nav a{padding:0 0.71429em;line-height:24px}.header-nav .jetpack-logo a{display:inline-block;position:relative;width:214px;margin-right:6px;background-size:183px 32px;color:#fff;line-height:60px;font-weight:normal;text-indent:-9999px}.header-nav .jetpack-logo a:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:url(../images/jetpack-logo.png) center center no-repeat;background:url(../images/jetpack-logo.svg) center center no-repeat,none;background-size:183px 32px}.main-nav{float:left}.main-nav li{margin:0}@media (max-width: 900px){.main-nav{font-size:13px}}.user-nav{float:right}.user-nav li{margin:0}.jetpack-pagestyles #screen-meta{margin:0}.jetpack-pagestyles #screen-meta-links .screen-meta-toggle{z-index:2}.jetpack-pagestyles #screen-options-link-wrap,.jetpack-pagestyles #contextual-help-link-wrap{border:none}.jetpack-pagestyles .update-nag{display:none}.masthead{position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-linear-gradient(top, #81a844, #8eb74e);background-image:linear-gradient(top, #81a844, #8eb74e)}.masthead.hasbutton .flyer{bottom:-270px}.masthead.hasbutton .subhead{margin-top:175px}@media (max-width: 530px){.masthead.hasbutton .subhead{margin-top:105px;padding:0}}.masthead h1,.masthead h2{margin:0 auto}.masthead h1{padding:2.5em 0 1.11111em;max-width:21.94444em;color:#fff;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;position:relative;text-shadow:0 1px 1px rgba(0,0,0,0.12);z-index:3}.masthead h1+.flyby{margin-top:180px}@media (max-width: 1147px){.masthead h1{padding-top:1.83333em;font-size:2.14286em}}@media (max-width: 782px){.masthead h1{max-width:600px;font-size:28px}}@media (max-width: 530px){.masthead h1{margin:0 15px;padding:31px 0 15px 0;font-size:21px;font-weight:400}}.jetpack-connected .masthead h1{margin-bottom:33px;max-width:600px}.flyby{position:relative;max-width:1200px;margin:0 auto}@media (max-width: 900px){.flyby{display:none}}.flyer{position:absolute;bottom:-200px;left:4%;z-index:1;-webkit-animation:flyer 3.4s 2s ease-in-out;animation:flyer 3.4s 2s ease-in-out}.flyer:nth-child(2){left:49%;width:120px;height:131px;-webkit-animation-delay:4.6s;animation-delay:4.6s;-webkit-animation-duration:2.4s;animation-duration:2.4s}.flyer:nth-child(3){left:23%;width:60px;height:66px;-webkit-animation-delay:5.8s;animation-delay:5.8s;-webkit-animation-duration:4.5s;animation-duration:4.5s}.subhead{position:relative;margin-top:105px;padding:4em 0;background:#f9f9f9;z-index:2}.subhead h2{max-width:460px;color:#5d6d74;font:400 1.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 900px){.subhead h2{max-width:428px;font-size:20px}}@media (max-width: 530px){.subhead h2{display:none}}.subhead:after{content:'';position:absolute;bottom:100%;left:0;margin-bottom:-1px;width:100%;height:228px;background:url("../images/the-cloud.svg") center bottom repeat-x;pointer-events:none;z-index:-1}@media (max-width: 1147px){.subhead{margin-top:122px;padding:70px 0 49px}.subhead:after{background-size:160% auto}}@media (max-width: 900px){.subhead{margin-top:122px;padding:70px 0 49px}}@media (max-width: 530px){.subhead{margin-top:83px;padding:47px 15px 39px}}.clouds-sm{height:100px;position:relative;text-align:center;z-index:1;background-color:#81a844;background-image:-webkit-gradient(linear, left top, left bottom, from(#81a844), to(#89b348));background-image:-webkit-linear-gradient(top, #81a844, #89b348);background-image:linear-gradient(top, #81a844, #89b348)}.clouds-sm:after{content:'';position:absolute;bottom:0;left:0;margin-bottom:-1px;width:100%;height:137px;background:url("../images/the-cloud-sm.svg") center bottom repeat-x;pointer-events:none;z-index:2}@media (max-width: 530px){.clouds-sm{height:90}}.featured{border-top:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;background:#fff;position:relative;padding:2.0em 1em 4.6em 1em;text-align:center;z-index:1}.featured:before{content:"";display:block;position:absolute;top:0;height:100%;z-index:-1}.featured .features,.featured .modules{margin:0 auto;display:inline-block}@media (max-width: 530px){.featured{display:none}}.featured h2,.module-grid h2{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-align:center;text-shadow:0 1px 1px #fff}@media (max-width: 900px){.featured h2,.module-grid h2{font-size:30px}}@media (max-width: 782px){.featured h2,.module-grid h2{font-size:28px}}.features,.modules{margin:0 -5px}.feature,.module{position:relative;float:left;margin:0 5px 10px;width:310px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media (max-width: 1147px){.feature,.module{margin:.75% 0 .75% 1.5%;width:32.333333%;-webkit-transition:none;transition:none}.feature:nth-child(3n+1),.module:nth-child(3n+1){margin-left:0}.feature:hover,.module:hover{top:0;box-shadow:none}}.feature{-webkit-transform:translateZ(0);transform:translateZ(0)}.feature h3{margin:0 0 0.58824em;color:#697b84;font-size:1.21429em;line-height:1em;font-weight:800}.feature p{margin:0;color:#6e818a}.feature:before{content:'';position:absolute;bottom:0;left:0;width:100%;height:10px;background:rgba(0,0,0,0.02);z-index:-1;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.feature:hover{-webkit-transform:translateY(-5px);-ms-transform:translateY(-5px);transform:translateY(-5px)}.feature:hover h3{color:#1a8dba}.feature:hover .feature-img{border:1px solid #ccc;border-bottom:none}.feature:hover .no-border{border:none}.feature:hover:before{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px)}@media (max-width: 1147px){.feature:hover h3{color:#6e818a}.feature:hover .feature-img{border:1px solid #ddd;border-bottom:none}.feature:hover .no-border{border:none}}.feature .feature-img{padding-top:52%;width:100%;height:auto;border:1px solid #ddd;border-bottom:none}.feature .feature-img.custom-css{background:url("../images/custom-css.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.custom-css{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-connect{background:url("../images/wordpress-connect.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-connect{background-image:url("../images/[email protected]")}}.feature .feature-img.wordpress-stats{background:url("../images/wordpress-stats.jpg") no-repeat;background-size:100% auto}@media print, (-webkit-min-device-pixel-ratio: 1.25), (min--moz-device-pixel-ratio: 1.25), (-o-min-device-pixel-ratio: 5 / 4), (min-resolution: 120dpi){.feature .feature-img.wordpress-stats{background-image:url("../images/[email protected]")}}.feature .feature-img.no-border{border:none;padding-bottom:1px}.feature-description{display:block;padding:1em 1.07143em 1.07143em;border:1px solid #ddd;background:#f5f5f5}.feature:hover .feature-description{background:#fff;border-color:#ccc}@media (max-width: 1147px){.feature:hover .feature-description{border:1px solid #ddd;background:#f5f5f5}}@media (max-width: 900px){.feature-description{min-height:115px}}.cat{clear:both;margin-bottom:23px}.cat h3{font-size:24px;font-weight:300;margin:0 0 13px 6px;text-align:left}.cat .clear{clear:both}.module-grid{text-align:center}.module-grid h2{margin:1.25em 0 0.69444em}@media (max-width: 530px){.module-grid h2{margin-top:16px;font-size:25px}}#module-search{position:relative;width:100%;max-width:40.71429em;margin:0 auto 1.07143em;overflow:hidden}#jetpack-search{margin:0;padding:11px 16px 11px 16px;width:100%;border:1px solid #c9ced0;border-radius:3px;background:#fff;color:#5c6671;line-height:1.3}#jetpack-search:focus{color:#5c6671;outline:none}#jetpack-search:focus+label{background:transparent;opacity:0}#jetpack-search::-webkit-input-placeholder{color:#a8acae}#jetpack-search :-moz-placeholder{color:#a8acae}#jetpack-search::-moz-placeholder{color:#a8acae}#jetpack-search:-ms-input-placeholder{color:#a8acae}#jetpack-search+label{position:absolute;top:1px;right:1px;bottom:1px;width:48px;color:#abafb1;text-indent:-9999px;pointer-events:none;border-radius:3px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#jetpack-search+label:after{content:'\f400';position:absolute;right:11px;text-align:right;top:4px;font-size:1.71429em;font-weight:normal;font-family:"genericons"}.jp-filter{margin-bottom:2.85714em;color:#6f7476}.jp-filter a{display:inline-block;position:relative;padding:0.76923em 1.46154em;color:#aaa;font:600 0.92857em/1 "Open Sans", Helvetica, Arial, sans-serif;text-shadow:0 1px 1px rgba(255,255,255,0.2);background:#eee;border-radius:3px;background-clip:padding-box}.jp-filter a.selected,.jp-filter a:hover,.jp-filter a:focus{color:#efefef;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476}@media (max-width: 530px){.jp-filter a{padding:0.76em 1em}}.module{cursor:pointer;display:block;padding:0.71429em 1.07143em 1em;text-align:left;border:1px solid #dae0e2;background:#fff;box-shadow:0 0 0 rgba(0,0,0,0.03);-webkit-transition:opacity 2s ease-in;transition:opacity 2s ease-in}.module:hover{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module h3{margin:0 0 0.5em;color:#1a8dba;font-size:1.14286em;line-height:1.4em;font-weight:700}.module p{margin:0;color:#686f72;font-size:0.85714em}.module:hover,.module:focus{border-color:#8ac9e8;background:#f8fcfe}.module:nth-of-type(n+10){display:none}.module.active{border-color:#2ea2cc;box-shadow:inset 4px 0 0 #2ea2cc}.module.active:hover{border-color:#69bedd;box-shadow:inset 4px 0 0 #69bedd}@media (max-width: 1147px){.cat .module:nth-child(3n+1){margin:.75% 0 .75% 1.5%}.cat .module:nth-child(3n - 1){margin-left:0}}@media (max-width: 900px){.cat .module{margin:1% 0 1% 2%}.cat .module:nth-child(2n+1){margin:1% 0 1% 2%}.cat .module:nth-child(2n+0){margin-left:0}}@media (max-width: 530px){.cat .module{margin:5px 0}.cat .module:nth-child(2n+1){margin-left:0}.cat .module:nth-child(2n+0){margin-left:0}}@media (max-width: 900px){.module{margin:1% 0 1% 2%;width:49%}.module:nth-child(3n+1){margin-left:2%}.module:nth-child(2n+1){margin-left:0}}@media (max-width: 530px){.module{margin:5px 0;width:100%}.module:nth-child(3n+1){margin-left:0}.module:nth-child(2n+1){margin-left:0}}.new{position:relative}.new:after{content:'NEW';position:absolute;top:-8px;right:-8px;padding-top:10px;width:32px;height:32px;color:#fff;font-size:8px;font-weight:800;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background:url("../images/new-badge.svg") center center no-repeat;background-size:100%;border-radius:50%}.paid{display:inline-block;position:relative;top:5px;margin-left:10px;padding:1px 6px 0 4px;height:13px;color:#fff;font:700 10px/1 "Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 -1px 0 rgba(0,0,0,0.05);background:#d0d0d0;vertical-align:top}.paid:before,.paid:after{position:absolute;top:0;right:100%;font:normal 14px/14px "genericons"}.paid:before{content:'\f503';color:#d0d0d0;text-shadow:none}.paid:after{content:'\f428';margin-right:-5px;font-size:11px}.rtl .paid:before{content:'\f501'}.load-more{margin:2.71429em 0 6.15385em}.set{display:none}.show.set{display:block}.loading{bottom:50%;position:absolute;top:50%;width:100%}.loading span{color:#999}.modal{background:#fff;position:fixed;top:52px;bottom:20px;right:20px;left:20px;margin-left:160px;display:none;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1);z-index:500}.modal .close{position:absolute;top:0;right:0;font:300 1.71429em "genericons" !important;color:#777;content:'\f405';display:inline-block;padding:0.28571em 0.71429em 0.42857em;z-index:5}.modal .close:hover{background:#eee;opacity:0.8}.modal .close:active{background:#eee;opacity:0.4}.modal #jp-post-flair{display:none}.modal .content-container{position:absolute;top:0;right:0;bottom:0;left:0;overflow:auto;padding:2.14286em}.modal .content{margin:0 auto;max-width:900px;text-align:left}.modal h2{text-align:left;margin-top:0;color:#5d6d74;font:300 32px "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.modal h2{font-size:26px}}.modal p{font-size:1.23077em}.modal footer{position:absolute;left:0;bottom:0;width:100%;padding:12px 20px;border-top:1px solid #ddd;background:#fff;text-align:right}.modal footer ul{margin:0}.modal footer li{display:inline-block;margin:0}.modal .button-secondary,.modal .button-primary:active{vertical-align:baseline}@media (max-width: 900px){.modal{bottom:5%;margin-left:36px;font-size:80%}.modal .content{top:38px}}@media (max-width: 782px){.modal{top:66px;margin-left:0}}@media (max-width: 600px){.modal{top:10px;right:10px;bottom:10px;left:10px}}.jp-info-img{float:right;margin:0 0 30px 30px}.jp-info-img img{border:1px solid #ddd;max-width:100%;height:auto}.jp-info-img img:first-child{margin-top:0}@media (max-width: 782px){.jp-info-img{float:none;margin:0 0 15px}}.content-container.modal-footer{bottom:53px}.shade{background:#000;bottom:0;cursor:pointer;display:none;left:0;opacity:0.2;position:fixed;right:0;top:0;z-index:11}.entry-title,.page-template-default h1{margin-top:0.61111em;color:#5d6d74;font:300 2.57143em/1.4em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.entry-title,.page-template-default h1{font-size:2em}}.blog h3,.single h3,.page-template-default h2{margin-top:0.61111em;color:#5d6d74;font:300 1.9em "proxima-nova","Open Sans",Helvetica,Arial,sans-serif;text-shadow:0 1px 1px #fff}@media (max-width: 530px){.blog h3,.single h3,.page-template-default h2{font-size:1.4em}}.page-template-default p{line-height:1.71429em}.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{float:left;width:70%}.footer{margin-top:1.42857em;position:relative;padding:10em 0 4.28571em;text-align:center;background-color:#81a844;background-image:-webkit-linear-gradient(top, #8eb74e, #81a844);background-image:linear-gradient(top, #8eb74e, #81a844)}.footer:before,.footer:after{content:'';position:absolute;left:0;pointer-events:none}.footer:before{top:0;margin-top:-1px;width:100%;height:195px;background:url("../images/the-undercloud.svg") center top repeat-x}.footer:after{bottom:0;width:100%;height:50px;background:url("../images/the-footcloud.svg") center bottom no-repeat;background-size:auto 45px;z-index:1}.footer .download-jetpack{margin-bottom:33px}@media (max-width: 1147px){.footer{padding-top:165px;padding-bottom:0}.footer:before{background-size:160% auto}.footer:after{display:none}.footer ul{float:none;overflow:hidden}}@media (max-width: 900px){.footer{padding-top:146px}}@media (max-width: 782px){.footer{margin-top:0}}@media (max-width: 530px){.footer{margin-top:0;padding-top:135px}}@media (max-width: 320px){.footer{padding-top:76px}}.footer nav{max-width:100%;color:#c8e3a2}.footer nav a,.footer nav a:visited{padding:4px 6px;color:#c8e3a2}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}@media (max-width: 1147px){.footer nav{border:none;padding:0}.footer nav a:hover,.footer nav a:focus,.footer nav a:visited:hover,.footer nav a:visited:focus{color:#fff}}@media (max-width: 530px){.footer nav li{display:block;float:none;margin:0;text-align:left}.footer nav a{display:block;padding:0 16px;line-height:44px}}.primary{padding:25px 15px 10px 15px;border-bottom:1px solid #6c954d}.secondary-footer{margin:0 auto}.secondary-footer li{margin-right:5px}@media (max-width: 1147px){.secondary-footer{margin:0 30px;padding:8px 15px 30px}}@media (max-width: 530px){.secondary-footer{margin:0;padding:0;border:none;font-weight:400}.secondary-footer a{border-top:1px solid #7ba141}}.footer .a8c-attribution{margin-top:6px auto 0;padding:0 6px;font-size:0.78571em;font-family:"Gill Sans","Gill Sans MT","Open Sans",Helvetica,Arial,sans-serif;text-transform:uppercase}.footer .a8c-attribution a{display:inline-block;position:relative;padding:4px 16px;right:9999px;outline:0}.footer .a8c-attribution a:after{content:'A';position:absolute;top:2px;right:-9999px;height:100%;color:#fff;font-size:1.54545em;font-family:"automatticons";text-align:center}.footer .a8c-attribution a:hover:after{-webkit-animation:candy .4s ease-in-out;animation:candy .4s ease-in-out}@media (max-width: 1147px){.footer .a8c-attribution{display:none}}.secondary{padding:14px 15px 0 15px;border-top:1px solid #8eb345}.jetpack-message{background:#8eb74e;border:1px solid #73963d;margin:33px auto 0;max-width:90%;position:relative;z-index:2}.jetpack-message.is-opt-in{margin:50px 0 0;max-width:100%;padding:10px 15px;background:#fff;border:0;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);font-size:13px;text-align:center}.subhead .jetpack-message.is-opt-in{margin:0;padding-bottom:0;background:transparent;box-shadow:none}.subhead .jetpack-message.is-opt-in .jp-button,.subhead .jetpack-message.is-opt-in .jp-button--settings{display:inline-block}.jetpack-message.is-opt-in p{color:#3c4549}.jetpack-message.is-opt-in .jp-button,.jetpack-message.is-opt-in .jp-button--settings{margin-top:15px;display:none}.jetpack-message h4{color:#fff;margin:0}.jetpack-message p{color:#fff;margin:0;opacity:0.7}.jetpack-message .squeezer{padding:23px 23px 23px 80px;position:relative;text-align:left}.jetpack-message .squeezer:before{color:#fff;content:'\f418';font-family:'Genericons';font-size:33px;height:33px;left:25px;opacity:0.6;position:absolute;top:23px;top:calc( 50% - 22px )}@media (max-width: 530px){.jetpack-message .squeezer{padding:23px}.jetpack-message .squeezer:before{display:none}}.jetpack-message .squeezer a{color:#FFF;border-bottom:1px solid #D5E4BD}.jetpack-message .squeezer a:hover{border-bottom:1px solid #F1F6E9}.jetpack-message.error .squeezer:before,.jetpack-message.jetpack-err .squeezer:before{content:'\f414'}.modules h3.icon,.jetpack-modules .info a{width:auto}.modules h3.icon:before,.jetpack-modules .info a:before{display:inline-block;position:relative;top:1px;left:-3px;margin-right:2px;opacity:0.8;font:normal 20px "genericons";vertical-align:top}.jetpack-modules .info a:before{margin-top:1px}.latex:before,.jetpack-modules #latex .info a:before{content:'\f408'}.carousel:before,.jetpack-modules #carousel .info a:before{content:'\f102'}.modules h3.contact-form:before,.jetpack-modules #contact-form .info a:before{content:'\f175';font:normal 20px "dashicons"}.modules h3.custom-css:before,.jetpack-modules #custom-css .info a:before{content:'\f100';font:normal 20px "dashicons"}.modules h3.enhanced-distribution:before,.jetpack-modules #enhanced-distribution .info a:before{content:'\f237';font:normal 20px "dashicons"}.modules h3.widgets:before,.jetpack-modules #widgets .info a:before{content:'\f116';font:normal 20px "dashicons"}.modules h3.gravatar-hovercards:before,.jetpack-modules #gravatar-hovercards .info a:before{content:'G';font-family:"automatticons"}.infinite-scroll:before,.jetpack-modules #infinite-scroll .info a:before{content:'\f408'}.comments:before,.jetpack-modules #comments .info a:before{content:'\f108'}.sso:before,.jetpack-modules #sso .info a:before{content:'\f205'}.json-api:before,.jetpack-modules #json-api .info a:before{content:'\f415'}.likes:before,.jetpack-modules #likes .info a:before{content:'\f408'}.markdown:before,.jetpack-modules #markdown .info a:before{content:'\f462'}.minileven:before,.jetpack-modules #minileven .info a:before{content:'\f453'}.monitor:before,.jetpack-modules #monitor .info a:before{content:'\f468'}.notes:before,.jetpack-modules #notes .info a:before{content:'\f300'}.omnisearch:before,.jetpack-modules #omnisearch .info a:before{content:'\f400'}.photon:before,.jetpack-modules #photon .info a:before{content:'\f403'}.post-by-email:before,.jetpack-modules #post-by-email .info a:before{content:'\f410'}.modules h3.publicize:before,.jetpack-modules #publicize .info a:before{content:'\f237';font:normal 20px "dashicons"}.related-posts:before,.jetpack-modules #related-posts .info a:before{content:'\f420'}.sharedaddy:before,.jetpack-modules #sharedaddy .info a:before{content:'\f415'}.shortcodes:before,.jetpack-modules #shortcodes .info a:before{content:'\f100'}.verification-tools:before,.jetpack-modules #verification-tools .info a:before{content:'\f425'}.after-the-deadline:before,.jetpack-modules #after-the-deadline .info a:before{content:'\f411'}.subscriptions:before,.jetpack-modules #subscriptions .info a:before{content:'\f410'}.tiled-gallery:before,.jetpack-modules #tiled-gallery .info a:before{content:'\f103'}.modules h3.vaultpress:before,.jetpack-modules #vaultpress .info a:before{content:'V';font-family:"automatticons"}.videopress:before,.jetpack-modules #videopress .info a:before{content:'\f104'}.modules h3.widget-visibility:before,.jetpack-modules #widget-visibility .info a:before{content:'\f116';font:normal 20px "dashicons"}.stats:before,.jetpack-modules #stats .info a:before{content:'\f205'}.shortlinks:before,.jetpack-modules #shortlinks .info a:before{content:'\f107'}.modules h3.custom-content-types:before,.jetpack-modules #custom-content-types .info a:before{content:'\f498';font:normal 20px "dashicons"}.modules h3.site-icon:before,.jetpack-modules #site-icon .info a:before{content:'\f475'}@media (max-width: 782px){.blog .type-post,.page-template-default .type-page,.single .type-post,.single .type-jetpack_support{width:100%}}@media (max-width: 530px){.wrap.inner.jp-support .jp-support-column-left{width:100%}.wrap.inner.jp-support .jp-support-column-left .widget-text{margin-right:0;width:100%}.wrap.inner.jp-support .jp-support-column-right{width:100%}}@media (max-width: 320px){.jetpack_page_jetpack_modules .wrap{padding:0 0 1em}}.page-content.configure{margin-top:0}.configure .frame.top{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}.configure .frame.top.fixed{background:#f9f9f9;border-bottom:1px solid #e9e9e9;padding-left:160px;margin-top:-6px;position:fixed;right:0;top:32px;width:100%;z-index:4;box-shadow:0 2px 2px -2px #eee}@media (max-width: 782px){.configure .frame.top.fixed{border:none;box-shadow:none;padding-top:1.42857em;position:relative;top:auto}}@media (max-width: 600px){.configure .frame.top.fixed{top:0}}.configure .frame.top .tablenav.top{float:left}@media (max-width: 900px){.configure .frame.top .tablenav.top .actions{display:block}}@media (max-width: 782px){.configure .frame.top .tablenav.top .actions{margin-top:6px}}.jp-frame-top-fixed .configure{padding-top:94px}.filter-search{display:none;float:right;margin-top:10px}@media (max-width: 782px){.filter-search{display:block}}@media (max-width: 530px){.filter-search{display:none}}.module-actions.landing-page{float:right;margin-right:15px}.module-actions.landing-page a{font-size:0.6em}.table-bordered.jetpack-modules{border:none;margin-bottom:0}.table-bordered.jetpack-modules tr.jetpack-module th{border-left:0;padding:14px 4px 0}.table-bordered.jetpack-modules tr.jetpack-module th input{display:block}.table-bordered.jetpack-modules tr.jetpack-module:hover .genericon{display:inline-block}.table-bordered.jetpack-modules tr.jetpack-module:hover td .row-actions span a{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module.active th,.table-bordered.jetpack-modules tr.jetpack-module.active td{background:#f7fcfe}.table-bordered.jetpack-modules tr.jetpack-module.active th{border-left:4px solid #2ea2cc;padding-left:0px}.table-bordered.jetpack-modules tr.jetpack-module.active td:first-child{border-left:4px solid #2ea2cc}.table-bordered.jetpack-modules tr.jetpack-module.unavailable{opacity:0.3}.table-bordered.jetpack-modules tr.jetpack-module.unavailable input{display:none}.table-bordered.jetpack-modules tr.jetpack-module#vaultpress{opacity:1}.table-bordered.jetpack-modules tr.jetpack-module th,.table-bordered.jetpack-modules tr.jetpack-module td{background:#fff;margin:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.1)}.table-bordered.jetpack-modules tr.jetpack-module td{padding:10px 10px 8px 14px;line-height:25px}.table-bordered.jetpack-modules tr.jetpack-module td:first-child{border-left:4px solid #fff}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{float:right;padding:0 0 1px;visibility:visible}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span{margin-left:5px}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a{opacity:0}.table-bordered.jetpack-modules tr.jetpack-module td .row-actions span a:focus{opacity:1}@media (max-width: 530px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:none}}@media (max-width: 782px){.table-bordered.jetpack-modules tr.jetpack-module td .row-actions{display:block;padding-left:10px;visibility:visible}}.table-bordered.jetpack-modules>thead>tr>th{border:0;vertical-align:middle}.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-right:0}@media (max-width: 782px){.table-bordered.jetpack-modules>thead>tr>th:last-child{padding-left:0}}.table-bordered.jetpack-modules td{background:#fff}.table-bordered.jetpack-modules #doaction{margin-top:0}@media (max-width: 782px){.table-bordered.jetpack-modules #doaction{padding:10px 7px}}.table-bordered.jetpack-modules .checkall{margin-top:1px}.table-bordered.jetpack-modules .filter-search{margin-top:8px}.table-bordered.jetpack-modules .genericon{color:#999;display:none;margin:7px 3px 0}@media (max-width: 900px){.table-bordered.jetpack-modules .genericon{display:inline-block}}.table-bordered.jetpack-modules .med{width:70px}.table-bordered.jetpack-modules .sm{width:30px}@media (max-width: 782px){.table-bordered.jetpack-modules .check-column{width:50px}}.fixed-top .check-column{padding:8px 10px 0 10px;width:2.2em}.wrap{margin:0;padding:0 1.5em 1em;overflow:hidden}.wrap h2{font-size:24px;font-weight:400}.wrap .manage-left{float:left;margin:0;padding:0;width:63%}.wrap .manage-left table{width:100%}.wrap .manage-left th{font-weight:400}@media (max-width: 782px){.wrap .manage-left{width:100%}}.wrap .manage-right{margin:0;padding:0;position:absolute;right:0;width:35%;z-index:1}.wrap .manage-right p{font-size:12px;font-weight:bold;color:#bbb;padding-top:2px;text-transform:uppercase;letter-spacing:1px;clear:left}.wrap .manage-right .bumper{margin-left:33px}.wrap .manage-right.show{display:block;position:fixed;overflow-y:auto;overflow-x:hidden;position:absolute}.wrap .manage-right .search-bar{margin-bottom:18px;max-width:300px}.wrap .manage-right p.search-box{float:none;height:auto;margin-bottom:0;position:relative}.wrap .manage-right p.search-box input[type='search']{padding:0 8px;width:90%;line-height:initial}@media (max-width: 782px){.wrap .manage-right p.search-box input[type='search']{float:left;padding:9px 8px}}.wrap .manage-right p.search-box input[type="submit"]{display:none}.wrap .manage-right .button-group .button{outline:none}.wrap .manage-right .subsubsub{margin:0;padding:0}.wrap .manage-right .subsubsub a{padding:0;line-height:inherit}.wrap .manage-right .subsubsub .current{padding:1px 5px;border-radius:2px;margin-left:-5px;background:#0D72B2;color:#FFF}.wrap .manage-right .subsubsub .current .count{color:#BCD7E7;font-weight:200}.wrap .manage-right .subsubsub li{display:block;text-align:left}@media (max-width: 782px){.wrap .manage-right{background:#fff;bottom:0;display:none;min-width:300px;position:fixed;right:0;top:0;z-index:13;box-shadow:0 1px 20px 5px rgba(0,0,0,0.1)}.wrap .manage-right .bumper{margin:13px}.wrap .manage-right .navbar-form{margin:0;padding:0}}.nav-horizontal:before,.features:before,.modules:before,.load-more:before,.nav-horizontal:after,.features:after,.modules:after,.load-more:after{content:"";display:table}.nav-horizontal:after,.features:after,.modules:after,.load-more:after{clear:both} 2 2 3 3 /*# sourceMappingURL=jetpack-admin.min.css.map */ -
jetpack/trunk/css/jetpack-admin.min.css.map
r1041038 r1043793 1 {"version":3,"sources":["../scss/atoms/typography/_typography.scss","../scss/atoms/_media.scss","../scss/atoms/_animations.scss","../scss/atoms/_buttons.scss","../scss/_utilities/mixins/_breakpoint.scss","../scss/atoms/icons/_automatticons.scss","../scss/atoms/icons/_jetpack.scss","../scss/molecules/_nav-horizontal.scss","../scss/templates/_main.scss","../scss/_utilities/mixins/_gradient--vertical.scss","../scss/templates/_settings.scss","../scss/_utilities/_clearings.scss"],"names":[],"mappings":"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","file":"jetpack-admin.min.css"}1 {"version":3,"sources":["../scss/atoms/typography/_typography.scss","../scss/atoms/_media.scss","../scss/atoms/_animations.scss","../scss/atoms/_buttons.scss","../scss/_utilities/mixins/_breakpoint.scss","../scss/atoms/icons/_automatticons.scss","../scss/atoms/icons/_jetpack.scss","../scss/molecules/_nav-horizontal.scss","../scss/templates/_main.scss","../scss/_utilities/mixins/_gradient--vertical.scss","../scss/templates/_settings.scss","../scss/_utilities/_clearings.scss"],"names":[],"mappings":"AAQA,kCAKC,WACA,CAAA,kDACA,CAAA,cACA,CAAA,eACA,CAAA,kCAQD,CAAA,iBAMC,WACA,CAAA,UAQD,CAAA,CACC,cACA,CAAA,4BAAA,CACA,oBAAA,CAAA,oBAEA,CAAA,SACC,cAED,CAAA,OACC,cAED,CAAA,OACC,oBASF,CAAA,OACC,iBAOD,CAAA,mBAEC,YAGD,CAAA,GACC,gBACA,CAAA,oBAOD,CAAA,EACC,gBAQD,CAAA,QACC,SACA,CAAA,QACA,CAAA,SAID,CAAA,QACC,gBAID,CAAA,EACC,cACA,CAAA,UACA,CAAA,QACA,CAAA,yBACA,CAAA,YACA,CAAA,SCzGD,CAAA,GACC,sBCDD,CAAA,yBACC,GACC,6BAAA,CAED,oBAAA,CAAA,GACC,8BAAA,CAED,qBAAA,CAAA,IACC,2BAAA,CAAmB,kBAAA,CARrB,AAQqB,CAIrB,iBAXC,GACC,6BAAA,CAED,oBAAA,CAAA,GACC,8BAAA,CAED,qBAAA,CAAA,IACC,2BAAA,CAAmB,kBAAA,CAAA,AAIrB,CAAA,0BACC,GACC,2BAAA,CAED,kBAAA,CAAA,GACC,8BAAA,CAED,qBAAA,CAAA,GACC,8BAAA,CAED,qBAAA,CAAA,IACC,2BAAA,CAAmB,kBAAA,CAXrB,AAWqB,CAIrB,kBAdC,GACC,2BAAA,CAED,kBAAA,CAAA,GACC,8BAAA,CAED,qBAAA,CAAA,GACC,8BAAA,CAED,qBAAA,CAAA,IACC,2BAAA,CAAmB,kBAAA,CAAA,AAIrB,CAAA,0BACE,GACA,6CAAA,CAED,oCAAA,CAAA,IACC,kDAAA,CAA0C,yCAAA,CAL5C,AAK4C,CCjC5C,kBD6BE,GACA,6CAAA,CAED,oCAAA,CAAA,IACC,kDAAA,CAA0C,yCAAA,CAAA,ACjC5C,CAAA,yBAEC,uCAAA,CAED,8BAAA,CAAA,+BACC,qBACA,CAAA,iBACA,CAAA,2BACA,CAAA,aACA,CAAA,4DACA,CAAA,qCACA,CAAA,kBACA,CAAA,iBAEA,CAAA,+CACC,cAED,CAAA,uFAEC,WACA,CAAA,kBAED,CAAA,6CACC,mBACA,CAAA,WAGF,CAAA,oBAEC,mBACA,CAAA,aAEA,CAAA,4BACC,cAED,CAAA,qDAEC,mBACA,CAAA,UAED,CAAA,4BACC,mBACA,CAAA,UACA,CAAA,yDAKF,CAAA,iBACC,qBACA,CAAA,iBACA,CAAA,qCACA,CAAA,UACA,CAAA,kEACA,CAAA,kBACA,CAAA,SACA,CAAA,iBACA,CAAA,oDAIA,CAAA,yBACC,WAED,CAAA,+CAEC,WACA,CAAA,kBACA,CAAA,oDAID,CAAA,wBACC,QACA,CAAA,gDAIA,CAAA,8BAEC,SAGF,CAAA,wBACC,WACA,CAAA,oBACA,CAAA,iBACA,CAAA,QACA,CAAA,iBACA,CAAA,UACA,CAAA,WACA,CAAA,qBACA,CAAA,oEACA,CAAA,oBAED,CAAA,uBAEC,WACA,CAAA,iBACA,CAAA,KACA,CAAA,MACA,CAAA,UACA,CAAA,WC7EC,CAAA,0BDuBH,kBAyDE,gBAEA,CAAA,wBACC,SACA,CAAA,UACA,CAAA,WAAY,CCrFZ,ADqFY,CCrFZ,yBDyFD,yBACC,MAAM,CC1FN,AD0FM,CC1FN,yBDuBH,kBAuEE,oBACA,CAAA,eAEA,CAAA,wBACC,WACA,CAAA,WACA,CAAA,gBAAiB,CAAA,AAIpB,CAAA,aACC,qBACA,CAAA,WACA,CAAA,iBACA,CAAA,uBACA,CAAA,aACA,CAAA,mDACA,CAAA,qCACA,CAAA,kBACA,CAAA,YACA,CAAA,iBAEA,CAAA,qBACC,cAED,CAAA,uCAEC,WACA,CAAA,kBAED,CAAA,oBACC,YEjJF,CAAA,UACC,4BACA,CAAA,wDACA,CAAA,gUAIA,CAAA,kBACA,CAAA,iBCbD,CAAA,UACC,sBACA,CAAA,4CACA,CAAA,mQAIA,CAAA,kBACA,CAAA,iBAGD,CAAA,qDACC,WACC,sBACA,CAAA,kEAAmE,CAAA,ACXpE,CAAA,iBACC,qBAED,CAAA,kBACC,kBACA,CAAA,UAED,CAAA,kBACC,SACA,CAAA,SCdF,CAAA,kBAGC,2BAAA,CAID,qBAAA,CAAA,gBACC,mBACA,CAAA,UACA,CAAA,gBAHD,AASA,CAAA,WARC,mBACA,CAAA,UACA,CAAA,gBAMD,CAAA,eACC,iBAED,CAAA,UACC,kBACA,CAAA,SAGD,CAAA,0CACC,2BAGD,CAAA,kBACC,iBAED,CAAA,SACC,aAGD,CAAA,WACC,mBACA,CAAA,QACA,CAAA,WACA,CAAA,eACA,CAAA,UACA,CAAA,UACA,CAAA,kCAEA,CAAA,oBACC,mBJlBC,CAAA,yBIsBH,yFAME,iBACA,CAAA,cAAe,CJ7Bd,AI6Bc,CJ7Bd,yBIsBH,yFAUE,cAAc,CJhCb,AIgCa,CJhCb,yBIoCH,4BAEE,eAAe,CAAA,AAUjB,CAAA,yBAEC,gBACA,CAAA,aAEA,CAAA,+BACC,iBJtDC,CAAA,yBI0DH,cAEE,aAAa,CJ5DZ,AI4DY,CJ5DZ,0BIgEH,YAEE,mBACA,CAAA,YAAa,CJnEZ,AImEY,CJnEZ,yBIgEH,YAME,qBAAoB,CAAA,AAKrB,CAAA,yCACC,eACA,CAAA,QAED,CAAA,2CACC,iBACA,CAAA,gBACA,CAAA,QAIF,CAAA,mBACC,kBACA,CAAA,UJxFE,CAAA,0BIsFH,oBAKE,mBACA,CAAA,YAAa,CJ5FZ,AI4FY,CJ5FZ,0BIgGH,wBAEE,mBAAmB,CAAA,AAIrB,CAAA,WACC,gBACA,CAAA,aAQD,CAAA,OACC,OACA,CAAA,OAGA,CAAA,cACC,iBAED,CAAA,aACC,oBACA,CAAA,gBAGA,CAAA,2BACC,qBACA,CAAA,iBACA,CAAA,WACA,CAAA,gBACA,CAAA,0BACA,CAAA,UACA,CAAA,gBACA,CAAA,kBACA,CAAA,mBAEA,CAAA,kCACC,WACA,CAAA,iBACA,CAAA,KACA,CAAA,MACA,CAAA,UACA,CAAA,WACA,CAAA,kEACA,CAAA,uEACA,CAAA,0BAMJ,CAAA,SACC,WAEA,CAAA,YACC,SJ3JC,CAAA,yBIuJH,UAOE,eAAe,CAAA,AAIjB,CAAA,SACC,YAEA,CAAA,YACC,SAMD,CAAA,gCACC,SAED,CAAA,0DACC,UAED,CAAA,4FACC,YAED,CAAA,+BACC,aAQF,CAAA,SAKC,kBACA,CAAA,iBACA,CAAA,SACA,CAAA,wBACA,CAAA,+DAAA,CAGC,uDAAA,CAAA,0BACC,cAED,CAAA,4BACC,iBJ9MA,CAAA,yBI6MD,6BAIE,iBACA,CAAA,SAAU,CAAA,AAIb,CAAA,yBAEC,cAED,CAAA,YACC,0BACA,CAAA,oBACA,CAAA,UACA,CAAA,8EACA,CAAA,iBACA,CAAA,sCACA,CAAA,SAEA,CAAA,mBACC,iBJpOA,CAAA,0BI0NF,aAaE,sBACA,CAAA,mBAAmB,CJxOnB,AIwOmB,CJxOnB,yBI0NF,aAiBE,gBACA,CAAA,cAAe,CJ5Of,AI4Oe,CJ5Of,yBI0NF,aAqBE,cACA,CAAA,qBACA,CAAA,cACA,CAAA,eAAgB,CAAA,AAInB,CAAA,+BACC,mBACA,CAAA,eAED,CAAA,MACC,kBACA,CAAA,gBACA,CAAA,aJ7PE,CAAA,yBI0PH,OAME,aAAa,CAAA,AAGf,CAAA,MACC,kBACA,CAAA,aACA,CAAA,OACA,CAAA,SACA,CAAA,2CAAA,CAEA,mCAAA,CAAA,mBACC,SACA,CAAA,WACA,CAAA,YACA,CAAA,4BAAA,CACA,oBAAA,CAAA,+BAAA,CAED,uBAAA,CAAA,mBACC,SACA,CAAA,UACA,CAAA,WACA,CAAA,4BAAA,CACA,oBAAA,CAAA,+BAAA,CAGF,uBAAA,CAAA,QACC,kBACA,CAAA,gBACA,CAAA,aACA,CAAA,kBACA,CAAA,SAEA,CAAA,WACC,gBACA,CAAA,aACA,CAAA,8EACA,CAAA,0BJpSC,CAAA,yBIgSF,YAOE,gBACA,CAAA,cAAe,CJxSf,AIwSe,CJxSf,yBIgSF,YAWE,aAAa,CAAA,AAGf,CAAA,cACC,WACA,CAAA,iBACA,CAAA,WACA,CAAA,MACA,CAAA,kBACA,CAAA,UACA,CAAA,YACA,CAAA,gEACA,CAAA,mBACA,CAAA,UJxTC,CAAA,0BIyRH,SAkCE,iBACA,CAAA,mBAEA,CAAA,cACC,0BAA0B,CJ/T1B,AI+T0B,CJ/T1B,yBIyRH,SA0CE,iBACA,CAAA,mBAAoB,CJpUnB,AIoUmB,CJpUnB,yBIyRH,SA8CE,gBACA,CAAA,sBAAuB,CAAA,AAGzB,CAAA,UAIC,aACA,CAAA,iBACA,CAAA,iBACA,CAAA,SACA,CAAA,wBACA,CAAA,4FACA,CAAA,+DAIA,CAHA,uDAKA,CAAA,gBACC,WACA,CAAA,iBACA,CAAA,QACA,CAAA,MACA,CAAA,kBACA,CAAA,UACA,CAAA,YACA,CAAA,mEACA,CAAA,mBACA,CAAA,SJrWC,CAAA,yBI2UH,WA6BE,UAAU,CAAA,AAQZ,CAAA,SACC,6BACA,CAAA,+BACA,CAAA,eACA,CAAA,iBACA,CAAA,2BACA,CAAA,iBACA,CAAA,SAGA,CAAA,gBACC,WACA,CAAA,aACA,CAAA,iBACA,CAAA,KACA,CAAA,WACA,CAAA,UAED,CAAA,sCACC,cACA,CAAA,oBJpYC,CAAA,yBIgXH,UAuBE,aAAa,CAAA,AAGf,CAAA,4BAEC,qBACA,CAAA,aACA,CAAA,8EACA,CAAA,iBACA,CAAA,0BJhZE,CAAA,yBI0YH,6BASE,eAAe,CJnZd,AImZc,CJnZd,yBI0YH,6BAYE,eAAe,CAAA,AAGjB,CAAA,kBACC,cAGD,CAAA,gBAEC,kBACA,CAAA,UACA,CAAA,iBACA,CAAA,WACA,CAAA,sCAAA,CJnaE,8BAAA,CAAA,0BI6ZH,iBASE,wBACA,CAAA,gBACA,CAAA,uBAAA,CAEA,eAAA,CAAA,gDACC,cAED,CAAA,4BACC,MACA,CAAA,eAAgB,CAAA,AAInB,CAAA,QACC,gCAAA,CAEA,uBAAA,CAAA,WACC,qBACA,CAAA,aACA,CAAA,mBACA,CAAA,eACA,CAAA,eAED,CAAA,UACC,SACA,CAAA,aAED,CAAA,eACC,WACA,CAAA,iBACA,CAAA,QACA,CAAA,MACA,CAAA,UACA,CAAA,WACA,CAAA,2BACA,CAAA,UACA,CAAA,+BAAA,CACA,uBAAA,CAAA,sCAAA,CAGD,8BAAA,CAAA,cACC,mCAAA,CAEA,8BAFA,CAEA,0BAAA,CAAA,iBACC,cAED,CAAA,2BACC,sBACA,CAAA,kBAED,CAAA,yBACC,YAED,CAAA,qBACC,kCAAA,CJ5dA,6BI4dA,CJ5dA,yBAAA,CAAA,0BI+dA,kBACC,cAED,CAAA,2BACC,sBACA,CAAA,kBAED,CAAA,yBACC,YAAY,CAAA,AAKf,CAAA,qBACC,gBACA,CAAA,UACA,CAAA,WACA,CAAA,qBACA,CAAA,kBAEA,CAAA,gCACC,qDACA,CAAA,yBAEA,CAAA,uJAJD,iCASE,oDAAoD,CAAA,AAGtD,CAAA,uCACC,4DACA,CAAA,yBAEA,CAAA,uJAJD,wCASE,2DAA2D,CAAA,AAG7D,CAAA,qCACC,0DACA,CAAA,yBAEA,CAAA,uJAJD,sCASE,yDAAyD,CAAA,AAG3D,CAAA,+BAGC,YACA,CAAA,kBAIH,CAAA,oBACC,cACA,CAAA,+BACA,CAAA,qBACA,CAAA,kBAEA,CAAA,mCACC,gBACA,CAAA,iBJviBC,CAAA,0BIqiBF,oCAKE,sBACA,CAAA,kBAAmB,CJ3iBnB,AI2iBmB,CJ3iBnB,yBI+hBH,qBAgBE,iBAAiB,CAAA,AAQnB,CAAA,IACC,WACA,CAAA,kBAEA,CAAA,OACC,eACA,CAAA,eACA,CAAA,mBACA,CAAA,eAED,CAAA,WACC,WAGF,CAAA,YACC,kBAEA,CAAA,eAEC,0BJ1kBC,CAAA,yBIwkBF,gBAKE,gBACA,CAAA,cAAe,CAAA,AAIlB,CAAA,cACC,kBACA,CAAA,UACA,CAAA,oBACA,CAAA,uBACA,CAAA,eAED,CAAA,eACC,SACA,CAAA,2BACA,CAAA,UACA,CAAA,wBACA,CAAA,iBACA,CAAA,eACA,CAAA,aACA,CAAA,eAEA,CAAA,qBACC,cACA,CAAA,YAEA,CAAA,2BACC,uBACA,CAAA,SAGF,CAAA,0CACC,cAED,CAAA,iCACC,cAED,CAAA,iCACC,cAED,CAAA,qCACC,cAED,CAAA,qBACC,kBACA,CAAA,OACA,CAAA,SACA,CAAA,UACA,CAAA,UACA,CAAA,aACA,CAAA,mBACA,CAAA,mBACA,CAAA,iBACA,CAAA,sCAAA,CAEA,8BAAA,CAAA,2BACC,gBACA,CAAA,iBACA,CAAA,UACA,CAAA,gBACA,CAAA,OACA,CAAA,mBACA,CAAA,kBACA,CAAA,wBAIH,CAAA,UACC,wBACA,CAAA,aAEA,CAAA,YACC,qBACA,CAAA,iBACA,CAAA,2BACA,CAAA,UACA,CAAA,8DACA,CAAA,2CACA,CAAA,eAEA,CADA,iBAIA,CAFA,2BAIA,CAAA,2DAGC,cACA,CAAA,qCACA,CAAA,kBJvqBA,CAAA,yBIopBF,aAsBE,mBAAmB,CAAA,AAQtB,CAAA,OACC,eACA,CAAA,aACA,CAAA,+BACA,CAAA,eACA,CAAA,wBACA,CAAA,eACA,CAAA,iCACA,CAAA,qCAAA,CAEA,6BAAA,CAAA,aACC,qBACA,CAAA,kBAED,CAAA,yBACC,aAED,CAAA,UACC,iBACA,CAAA,aACA,CAAA,mBACA,CAAA,iBACA,CAAA,eAED,CAAA,SACC,SACA,CAAA,aACA,CAAA,mBAED,CAAA,2BACC,qBACA,CAAA,kBAED,CAAA,yBACC,aAGD,CAAA,cACC,qBACA,CAAA,gCAEA,CAAA,oBACC,qBACA,CAAA,gCJ7tBA,CAAA,0BImuBA,6BACC,wBAED,CAAA,8BACC,cAAc,CJvuBf,AIuuBe,CJvuBf,yBIiuBF,aAUE,kBAEA,CAAA,4BACC,kBAED,CAAA,4BACC,cAAc,CJjvBf,AIivBe,CJjvBf,yBIiuBF,aAoBE,aAEA,CAAA,4BACC,cAED,CAAA,4BACC,cAAc,CJ3vBf,AI2vBe,CJ3vBf,yBIkrBH,QA8EE,kBACA,CAAA,SAEA,CAAA,uBACC,eAED,CAAA,uBACC,cAAc,CJvwBd,AIuwBc,CJvwBd,yBIkrBH,QAyFE,aACA,CAAA,UAEA,CAAA,uBACC,cAED,CAAA,uBACC,cAAc,CAAA,AAIjB,CAAA,IAGC,kBAEA,CAAA,UACC,cACA,CAAA,iBACA,CAAA,QACA,CAAA,UACA,CAAA,gBACA,CAAA,UACA,CAAA,WACA,CAAA,UACA,CAAA,aACA,CAAA,eACA,CAAA,iBACA,CAAA,oCACA,CAAA,iEACA,CAAA,oBACA,CAAA,iBAGF,CAAA,KACC,qBACA,CAAA,iBACA,CAAA,OACA,CAAA,gBACA,CAAA,qBACA,CAAA,WACA,CAAA,UACA,CAAA,sDACA,CAAA,qCACA,CAAA,kBACA,CAAA,kBAEA,CAAA,wBAEC,kBACA,CAAA,KACA,CAAA,UACA,CAAA,kCAED,CAAA,YACC,gBACA,CAAA,aACA,CAAA,gBAED,CAAA,WACC,gBACA,CAAA,iBACA,CAAA,cAGF,CAAA,iBACC,gBAED,CAAA,UAGC,6BAID,CAAA,IACC,aAED,CAAA,SACC,cAOD,CAAA,QACC,WACA,CAAA,iBACA,CAAA,OACA,CAAA,UAEA,CAAA,aACC,WAGF,CAAA,MACC,gBACA,CAAA,cACA,CAAA,QACA,CAAA,WACA,CAAA,UACA,CAAA,SACA,CAAA,iBACA,CAAA,YACA,CAAA,yCACA,CAAA,WAEA,CAAA,aACC,kBACA,CAAA,KACA,CAAA,OACA,CAAA,0CACA,CAAA,UACA,CAAA,eACA,CAAA,oBACA,CAAA,qCACA,CAAA,SAEA,CAAA,mBACC,gBACA,CAAA,WAED,CAAA,oBACC,gBACA,CAAA,WAGF,CAAA,qBACC,aAED,CAAA,yBACC,kBACA,CAAA,KACA,CAAA,OACA,CAAA,QACA,CAAA,MACA,CAAA,aACA,CAAA,iBAED,CAAA,eACC,cACA,CAAA,eACA,CAAA,eAED,CAAA,SACC,gBACA,CAAA,YACA,CAAA,aACA,CAAA,mEACA,CAAA,0BJj6BC,CAAA,yBI45BF,UAQE,eAAe,CAAA,AAGjB,CAAA,QACC,oBAED,CAAA,aACC,kBACA,CAAA,MACA,CAAA,QACA,CAAA,UACA,CAAA,iBACA,CAAA,yBACA,CAAA,eACA,CAAA,gBAEA,CAAA,gBACC,SAED,CAAA,gBACC,qBACA,CAAA,QAGF,CAAA,sDAGC,wBJ/7BC,CAAA,yBI22BH,OAuFE,UACA,CAAA,gBACA,CAAA,aAEA,CAAA,eACC,SAAS,CJv8BT,AIu8BS,CJv8BT,yBI22BH,OAgGE,SACA,CAAA,aAAc,CJ58Bb,AI48Ba,CJ58Bb,yBI22BH,OAoGE,SACA,CAAA,UACA,CAAA,WACA,CAAA,SAAU,CAAA,AAGZ,CAAA,YACC,YACA,CAAA,oBAEA,CAAA,gBACC,sBACA,CAAA,cACA,CAAA,WAEA,CAAA,4BACC,aJ/9BA,CAAA,yBIq9BH,aAcE,WACA,CAAA,eAAgB,CAAA,AAGlB,CAAA,+BACC,YAED,CAAA,MACC,gBACA,CAAA,QACA,CAAA,cACA,CAAA,YACA,CAAA,MACA,CAAA,WACA,CAAA,cACA,CAAA,OACA,CAAA,KACA,CAAA,UAOD,CAAA,sCAEC,qBACA,CAAA,aACA,CAAA,8EACA,CAAA,0BJhgCE,CAAA,yBI2/BH,uCAQE,cAAc,CAAA,AAIhB,CAAA,6CAGC,qBACA,CAAA,aACA,CAAA,oEACA,CAAA,0BJ7gCE,CAAA,yBIugCH,8CASE,gBAAgB,CAAA,AAIlB,CAAA,wBACC,sBAGD,CAAA,mGAIC,WACA,CAAA,SAQD,CAAA,OACC,qBACA,CAAA,iBACA,CAAA,wBACA,CAAA,iBCjkCA,CAAA,wBACA,CAAA,+DAAA,CDmkCA,uDAAA,CAAA,4BAEC,WACA,CAAA,iBACA,CAAA,MACA,CAAA,mBAED,CAAA,cACC,MACA,CAAA,eACA,CAAA,UACA,CAAA,YACA,CAAA,kEAED,CAAA,aACC,SACA,CAAA,UACA,CAAA,WACA,CAAA,qEACA,CAAA,yBACA,CAAA,SAED,CAAA,yBACC,mBJnkCC,CAAA,0BIqiCH,QAiCE,kBACA,CAAA,gBAEA,CAAA,cACC,0BAED,CAAA,aACC,aAED,CAAA,UACC,WACA,CAAA,eAAgB,CJjlChB,AIilCgB,CJjlChB,yBIqiCH,QAgDE,kBAAkB,CJrlCjB,AIqlCiB,CJrlCjB,yBIqiCH,QAmDE,aAAa,CJxlCZ,AIwlCY,CJxlCZ,yBIqiCH,QAsDE,aACA,CAAA,iBAAkB,CJ5lCjB,AI4lCiB,CJ5lCjB,yBIqiCH,QA0DE,iBAAiB,CAAA,AAGnB,CAAA,WACC,eACA,CAAA,aAEA,CAAA,mCAEC,gBACA,CAAA,aAEA,CAAA,+FAEC,WJ7mCA,CAAA,0BIkmCH,YAeE,YACA,CAAA,SAIC,CAAA,+FAEC,WAAW,CJxnCZ,AIwnCY,CJxnCZ,yBI6nCD,eACC,cACA,CAAA,UACA,CAAA,QACA,CAAA,eAED,CAAA,aACC,cACA,CAAA,cACA,CAAA,gBAAiB,CAAA,AAIpB,CAAA,QACC,4BACA,CAAA,+BAED,CAAA,iBACC,cAEA,CAAA,oBACC,iBJlpCC,CAAA,0BI8oCH,kBAOE,cACA,CAAA,qBAAsB,CJtpCrB,AIspCqB,CJtpCrB,yBI8oCH,kBAWE,SACA,CAAA,SACA,CAAA,WACA,CAAA,eAEA,CAAA,mBACC,6BAAwC,CAAA,AAI3C,CAAA,wBACC,sBACA,CAAA,aACA,CAAA,mBACA,CAAA,6EACA,CAAA,wBAEA,CAAA,0BAIC,qBACA,CAAA,iBACA,CAAA,gBACA,CAAA,YACA,CAAA,SAEA,CAAA,gCACC,YACA,CAAA,iBACA,CAAA,OACA,CAAA,aACA,CAAA,WACA,CAAA,UACA,CAAA,mBACA,CAAA,2BACA,CAAA,iBAGA,CAAA,sCACC,wCAAA,CJjsCD,+BAAA,CAAA,0BImqCH,yBAmCE,aAAa,CAAA,AAGf,CAAA,UACC,yBACA,CAAA,4BAQD,CAAA,gBACC,mBACA,CAAA,wBACA,CAAA,kBACA,CAAA,aACA,CAAA,iBACA,CAAA,SAEA,CAAA,0BACC,gBACA,CAAA,cACA,CAAA,iBACA,CAAA,eACA,CAAA,QACA,CAAA,sCACA,CAAA,cACA,CAAA,iBAGA,CAAA,mCACC,SACA,CAAA,gBACA,CAAA,sBACA,CAAA,eAEA,CAAA,uGACC,qBAGF,CAAA,4BACC,cAED,CAAA,qFACC,gBACA,CAAA,YAGF,CAAA,mBACC,WACA,CAAA,QAED,CAAA,kBACC,WACA,CAAA,QACA,CAAA,WAED,CAAA,0BACC,4BACA,CAAA,iBACA,CAAA,eAEA,CAAA,iCACC,WACA,CAAA,eACA,CAAA,wBACA,CAAA,cACA,CAAA,WACA,CAAA,SACA,CAAA,WACA,CAAA,iBACA,CAAA,QACA,CAAA,sBJhxCA,CAAA,yBIiwCF,2BAkBE,aAEA,CAAA,iCACC,aAAa,CAAA,AAGf,CAAA,4BACC,WACA,CAAA,+BACC,CAAA,kCACD,gCAGF,CAAA,qFAEC,gBAQF,CAAA,yCAEC,WAEA,CAAA,uDACC,qBACA,CAAA,iBACA,CAAA,OACA,CAAA,SACA,CAAA,gBACA,CAAA,WACA,CAAA,6BACA,CAAA,kBAIF,CAAA,+BACC,eAGD,CAAA,oDAEC,gBAED,CAAA,0DAEC,gBAED,CAAA,6EAEC,gBACA,CAAA,4BAED,CAAA,yEAEC,gBACA,CAAA,4BAED,CAAA,+FAEC,gBACA,CAAA,4BAED,CAAA,mEAEC,gBACA,CAAA,4BAED,CAAA,2FAEC,YACA,CAAA,2BAED,CAAA,wEAEC,gBAED,CAAA,0DAEC,gBAED,CAAA,gDAEC,gBAED,CAAA,0DAEC,gBAED,CAAA,oDAEC,gBAED,CAAA,0DAEC,gBAED,CAAA,4DAEC,gBAED,CAAA,wDAEC,gBAED,CAAA,oDAEC,gBAED,CAAA,8DAEC,gBAED,CAAA,sDAEC,gBAED,CAAA,oEAEC,gBAED,CAAA,uEAEC,gBACA,CAAA,4BAED,CAAA,oEAEC,gBAED,CAAA,8DAEC,gBAED,CAAA,8DAEC,gBAED,CAAA,8EAEC,gBAED,CAAA,8EAEC,gBAED,CAAA,oEAEC,gBAED,CAAA,oEAEC,gBAED,CAAA,yEAEC,YACA,CAAA,2BAED,CAAA,8DAEC,gBAED,CAAA,uFAEC,gBACA,CAAA,4BAED,CAAA,oDAEC,gBAED,CAAA,8DAEC,gBAED,CAAA,6FAEC,gBACA,CAAA,4BAGD,CAAA,uEAEC,gBJ98CE,CAAA,yBIw9CF,oGAIC,WAAW,CJ59CV,AI49CU,CJ59CV,yBIk+CD,+CACC,WAEA,CAAA,2DACC,eACA,CAAA,UAGF,CAAA,+CACC,WAAW,CJ3+CX,AI2+CW,CJ3+CX,yBMxBF,oCAEE,gBAAgB,CAAA,AAKnB,CAAA,uBACC,aAKA,CAAA,qBACC,YACA,CAAA,eACA,CAAA,qBACA,CAAA,iBACA,CAAA,QAEA,CAAA,2BACC,mBACA,CAAA,+BACA,CAAA,kBACA,CAAA,eACA,CAAA,cACA,CAAA,OACA,CAAA,QACA,CAAA,UACA,CAAA,SACA,CAAA,8BAEA,CAAA,yBAZD,4BAaE,YACA,CAAA,eACA,CAAA,qBACA,CAAA,iBACA,CAAA,QAAS,CAAA,AAEV,CAAA,yBAnBD,4BAoBE,MAAM,CAAA,AAIR,CAAA,mCACC,WAGC,CAAA,yBADD,6CAEE,cAAc,CAAA,AAEf,CAAA,yBAJD,6CAKE,eAAe,CAAA,AAOpB,CAAA,8BACC,iBAGD,CAAA,cACC,aACA,CAAA,WACA,CAAA,eACA,CAAA,yBAJD,eAKE,cAAc,CAAA,AAEf,CAAA,yBAPD,eAQE,aAAa,CAAA,AAIf,CAAA,4BACC,YACA,CAAA,iBAEA,CAAA,8BACC,gBAIF,CAAA,+BACC,YACA,CAAA,eAGC,CAAA,oDACC,cACA,CAAA,kBACA,CAAA,0DACC,cAID,CAAA,kEACC,qBAED,CAAA,8EACC,UAID,CAAA,uHAEC,mBAED,CAAA,2DACC,8BACA,CAAA,gBAGA,CAAA,uEACC,8BAIH,CAAA,6DACC,YACA,CAAA,mEACC,aAGF,CAAA,4DACC,UAED,CAAA,yGAEC,gBACA,CAAA,QAEA,CADA,yCAID,CAAA,oDACC,2BACA,CAAA,gBAEA,CAAA,gEACC,2BAED,CAAA,iEACC,YACA,CAAA,eACA,CAAA,kBAEA,CAAA,sEACC,gBACA,CAAA,wEACC,UACA,CAAA,8EACC,UAKH,CAAA,yBAfD,kEAgBE,aAAa,CNvIf,AMuIe,CNvIf,yBMuHA,kEAmBE,cACA,CAAA,iBACA,CAAA,kBAAmB,CAAA,AAMvB,CAAA,2CACC,SACA,CAAA,qBAEA,CAAA,sDACC,gBNvJA,CAAA,yBMsJD,uDAIE,eAAe,CAAA,AAIlB,CAAA,kCACC,gBAED,CAAA,yCACC,aAEA,CAAA,yBAHD,0CAIE,iBAAiB,CAAA,AAGnB,CAAA,yCACC,eAED,CAAA,8CACC,eAED,CAAA,0CACC,WACA,CAAA,YACA,CAAA,gBNjLC,CAAA,yBM8KF,2CAME,qBAAqB,CAAA,AAGvB,CAAA,oCACC,WAED,CAAA,mCACC,WAED,CAAA,yBACC,8CACC,WAAW,CAAA,AAId,CAAA,wBACC,wBACA,CAAA,WAED,CAAA,KACC,SACA,CAAA,mBACA,CAAA,eAEA,CAAA,QACC,eACA,CAAA,eAED,CAAA,kBACC,WACA,CAAA,QACA,CAAA,SACA,CAAA,SAEA,CAAA,wBACC,WAED,CAAA,qBACC,gBAGD,CAAA,yBAbD,mBAcE,WAAW,CAAA,AAGb,CAAA,mBACC,SACA,CAAA,SACA,CAAA,iBACA,CAAA,OACA,CAAA,SACA,CAAA,SAEA,CAAA,qBACC,eACA,CAAA,gBACA,CAAA,UACA,CAAA,eACA,CAAA,wBACA,CAAA,kBACA,CAAA,UAED,CAAA,2BACC,iBAED,CAAA,wBACC,cACA,CAAA,cACA,CAAA,eACA,CAAA,iBACA,CAAA,iBAED,CAAA,+BACC,mBACA,CAAA,eAED,CAAA,gCACC,WACA,CAAA,WACA,CAAA,eACA,CAAA,iBAEA,CAAA,qDACC,cACA,CAAA,SACA,CAAA,mBAEA,CAAA,yBALD,sDAME,WACA,CAAA,eAAgB,CAAA,AAGlB,CAAA,qDACC,aAID,CAAA,yCACC,aAGF,CAAA,8BACC,SACA,CAAA,SAEA,CAAA,gCACC,UACA,CAAA,mBAED,CAAA,uCACC,gBACA,CAAA,iBACA,CAAA,gBACA,CAAA,kBACA,CAAA,UAEA,CAAA,8CACC,cACA,CAAA,eAIF,CAAA,iCACC,cACA,CAAA,eAIF,CAAA,yBAnFD,oBAoFE,gBACA,CAAA,QACA,CAAA,YACA,CAAA,eACA,CAAA,cACA,CAAA,OACA,CAAA,KACA,CAAA,UACA,CAAA,yCAEA,CAAA,2BACC,YAED,CAAA,gCACC,SACA,CAAA,SAAU,CCxVb,ADwVa,CCxVb,+IACC,WACA,CAAA,aAED,CAAA,qEACC,WAAW,CAAA","file":"jetpack-admin.min.css"} -
jetpack/trunk/css/jetpack-banners-rtl.css
r1038914 r1043793 3 3 * @see: jetpack/_inc/jetpack.scss 4 4 */ 5 .button, 6 .download-jetpack { 5 #message.jp-banner { 6 position: relative; 7 margin-bottom: 26px; 8 padding: 17px 0 17px 44px; 9 border: none; 10 background: #81a844; 11 color: #fff; 12 overflow: hidden; 13 -moz-box-sizing: border-box; 14 box-sizing: border-box; 15 } 16 #message.jp-banner:after { 17 content: ''; 18 position: absolute; 19 bottom: 0; 20 left: -100px; 21 width: 100%; 22 height: 50px; 23 background: url("../images/the-footcloud.svg") left bottom no-repeat; 24 pointer-events: none; 25 z-index: 1; 26 } 27 #message.jp-banner a { 28 color: #fff; 29 } 30 #message.jp-banner h4 { 31 display: block; 32 margin: 0; 33 padding: 0; 34 color: #fff; 35 font-size: 20px; 36 line-height: 1.3; 37 font-weight: normal; 38 } 39 #message.jp-banner h4 + p { 40 margin-top: 10px; 41 } 42 43 .jp-banner a { 44 padding: 0; 45 } 46 47 #message .jp-banner__content { 48 color: #dfffcc; 49 padding: 0 20px 0 0; 50 -moz-box-sizing: border-box; 51 box-sizing: border-box; 52 width: 75%; 53 } 54 @media (max-width: 768px) { 55 #message .jp-banner__content { 56 width: auto; 57 } 58 } 59 #message .jp-banner__content.is-connection { 60 width: 50%; 61 } 62 #message .jp-banner__content a { 63 background-image: -webkit-linear-gradient(top, transparent 75%, #fff 50%); 64 background-image: linear-gradient(to bottom, transparent 75%, #fff 50%); 65 background-repeat: repeat-x; 66 background-size: 2px 2px; 67 background-position: 0 1.2em; 68 } 69 @media not all, only screen and (min-resolution: 2dppx), only screen and (-webkit-min-device-pixel-ratio: 2) { 70 #message .jp-banner__content a { 71 background-image: -webkit-linear-gradient(top, transparent 75%, #fff 75%); 72 background-image: linear-gradient(to bottom, transparent 75%, #fff 75%); 73 background-repeat: repeat-x; 74 } 75 } 76 #message .jp-banner__content p { 77 margin: 0; 78 padding: 0; 79 line-height: 1.5; 80 } 81 82 #message .jp-banner__action-container { 83 position: absolute; 84 top: 0; 85 left: 0; 86 padding-right: 20px; 87 width: 25%; 88 height: 100%; 89 -moz-box-sizing: border-box; 90 box-sizing: border-box; 91 } 92 @media (max-width: 768px) { 93 #message .jp-banner__action-container { 94 position: static; 95 margin: 14px 0 9px; 96 width: 100%; 97 } 98 } 99 #message .jp-banner__action-container.is-full-width { 100 position: static; 101 margin: 14px 0 9px; 102 width: 100%; 103 height: auto; 104 } 105 #message .jp-banner__action-container.is-connection { 106 width: 50%; 107 } 108 @media (max-width: 768px) { 109 #message .jp-banner__action-container.is-connection { 110 width: 100%; 111 } 112 } 113 114 #message .jp-banner__button { 115 display: inline-block; 116 position: absolute; 117 top: 50%; 118 right: 20px; 119 margin-top: -23px; 120 padding: 0.57143em 0.57143em 0.38095em 0.85714em; 121 border-radius: 6px; 122 -moz-box-sizing: border-box; 123 box-sizing: border-box; 124 background: #518d2a; 125 box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2); 126 font: 400 1.5em/1 'Open Sans', Helvetica, sans-serif; 7 127 -webkit-transition: all .1s ease-in-out; 8 128 transition: all .1s ease-in-out; 9 129 } 10 11 .jp-button, .jp-button--settings { 12 display: inline-block; 13 position: relative; 14 padding: em(10px, 13px) em(19px, 13px); 15 color: #efefef; 16 font: 800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif; 17 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); 18 background: #6f7476; 19 border-radius: 3px; 20 } 21 .jp-button:visited, .jp-button--settings:visited { 22 color: #efefef; 23 } 24 .jp-button:hover, .jp-button--settings:hover, .jp-button:focus, .jp-button--settings:focus { 25 color: #fff; 26 background: #57972d; 27 } 28 .jp-button:active, .jp-button--settings:active { 29 background: #57972d; 30 opacity: 0.8; 31 } 32 33 .jp-button--settings { 34 background: #93b45f; 35 color: #e8eedf; 36 } 37 .jp-button--settings:visited { 38 color: #e8eedf; 39 } 40 .jp-button--settings:hover, .jp-button--settings:focus { 41 background: #9fbd72; 42 color: #fff; 43 } 44 .jp-button--settings.current { 45 background: #3c6621; 46 color: #fff; 47 box-shadow: inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621; 48 } 49 50 .download-jetpack { 51 display: inline-block; 52 position: relative; 53 padding: em(18px, 28px) em(24px, 28px) em(15px, 28px); 54 color: #fff; 55 font: 400 2em/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif; 56 background: #518d2a; 57 z-index: 3; 58 border-radius: 6px; 59 box-shadow: 0 6px 0 #3e6c20, 0 6px 3px rgba(0, 0, 0, 0.4); 60 } 61 .download-jetpack:visited { 62 color: #fff; 63 } 64 .download-jetpack:hover, .download-jetpack:focus { 65 color: #fff; 66 background: #57972d; 67 box-shadow: 0 6px 0 #3e6c20, 0 6px 3px rgba(0, 0, 0, 0.4); 68 } 69 .download-jetpack:active { 70 top: 6px; 71 box-shadow: 0 0px 0 #3e6c20, 0 0 0 rgba(0, 0, 0, 0.4); 72 } 73 .download-jetpack:active:after { 74 top: -6px; 75 } 76 .download-jetpack:before { 130 @media (max-width: 768px) { 131 #message .jp-banner__button { 132 position: static; 133 margin: 0; 134 } 135 } 136 @media (max-width: 420px) { 137 #message .jp-banner__button { 138 display: block; 139 width: 100%; 140 text-align: center; 141 font-size: 1.1em; 142 } 143 } 144 #message .jp-banner__button:hover, #message .jp-banner__button:focus { 145 box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2); 146 } 147 #message .jp-banner__button:active { 148 outline: none; 149 -webkit-transform: translateY(2px); 150 -ms-transform: translateY(2px); 151 transform: translateY(2px); 152 box-shadow: 0 0px 0 #3e6c20, 0 0 0 rgba(0, 0, 0, 0.2); 153 } 154 #message .jp-banner__button:active:after { 155 top: -2px; 156 } 157 #message .jp-banner__button:before { 77 158 content: ''; 78 159 display: inline-block; 79 160 position: relative; 80 top: -2px;81 margin-left: 13px;82 width: 30px;83 height: 30px;84 161 vertical-align: middle; 85 162 background: url("../images/connect-plug.svg") center center no-repeat; 86 163 background-size: 100%; 87 }88 .download-jetpack:after {89 content: '';90 position: absolute;91 top: 0;92 right: 0;93 width: 100%;94 height: 100%;95 }96 @media (max-width: 1147px) {97 .download-jetpack {98 font-size: em(21px);99 }100 .download-jetpack:before {101 top: -1px;102 width: 23px;103 height: 23px;104 }105 }106 @media (max-width: 900px) {107 .download-jetpack:active {108 top: 0;109 }110 }111 @media (max-width: 530px) {112 .download-jetpack {113 font-size: em(17px);114 font-weight: 600;115 }116 .download-jetpack:before {117 width: 19px;118 height: 19px;119 margin-left: 9px;120 }121 }122 123 #searchsubmit {124 display: inline-block;125 border: none;126 position: relative;127 padding: em(5px, 7px) em(9px, 6px);128 color: #efefef;129 font: 800 0.8em/1 'Open Sans', Helvetica, sans-serif;130 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);131 background: #6f7476;132 outline: none;133 border-radius: 3px;134 }135 #searchsubmit:visited {136 color: #efefef;137 }138 #searchsubmit:hover, #searchsubmit:focus {139 color: #fff;140 background: #2aa0d5;141 }142 #searchsubmit:active {143 opacity: 0.7;144 }145 146 #message.jp-connect {147 background: #81a844;148 border: none;149 color: #fff;150 overflow: hidden;151 margin-bottom: 26px;152 padding: 26px 20px;153 position: relative;154 }155 #message.jp-connect:after {156 bottom: 0;157 content: '';158 background: url("../images/the-footcloud.svg") left bottom no-repeat;159 height: 50px;160 pointer-events: none;161 position: absolute;162 left: -100px;163 width: 100%;164 z-index: 1;165 }166 #message.jp-connect a {167 color: #fff;168 }169 #message.jp-connect h4 {170 margin: 0;171 padding: 0;172 }173 #message.jp-connect .jetpack-install-container {174 float: right;175 overflow: hidden;176 }177 #message.jp-connect .jetpack-install-container .submit {178 margin: 0;179 }180 #message.jp-connect .jetpack-install-container .download-jetpack {181 font-size: 1.5em;182 margin: 0 0 0 18px;183 padding: 0.57143em 0.57143em 0.38095em 0.85714em;184 border-radius: 0;185 box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2);186 }187 #message.jp-connect .jetpack-install-container .download-jetpack:hover, #message.jp-connect .jetpack-install-container .download-jetpack:focus {188 box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2);189 }190 #message.jp-connect .jetpack-install-container .download-jetpack:active {191 outline: none;192 top: 2px;193 box-shadow: 0 0px 0 #3e6c20, 0 0 0 rgba(0, 0, 0, 0.2);194 }195 #message.jp-connect .jetpack-install-container .download-jetpack:active:after {196 top: -2px;197 }198 #message.jp-connect .jetpack-install-container .download-jetpack:before {199 164 top: -2px; 200 165 margin-left: 13px; … … 202 167 height: 22px; 203 168 } 204 #message.jp-connect .jetpack-close-button-container { 205 left: 18px; 206 position: absolute; 207 top: 18px; 208 } 209 #message.jp-connect .jetpack-close-button-container a:before { 169 @media (max-width: 420px) { 170 #message .jp-banner__button:before { 171 display: none; 172 } 173 } 174 175 #message .is-full-width .jp-banner__button { 176 position: static; 177 margin: 0; 178 } 179 180 #message .is-opt-in .jp-banner__button:before { 181 content: "\f147"; 182 width: 20px; 183 height: 20px; 184 background: none; 185 font: normal 20px/1 Dashicons; 186 } 187 188 #message .jp-banner__dismiss { 189 position: absolute; 190 top: 0; 191 left: 0; 192 width: 44px; 193 height: 44px; 194 text-align: center; 195 z-index: 99; 196 } 197 #message .jp-banner__dismiss:before { 210 198 color: #a7c979; 211 199 content: '\f158'; 212 font: normal 20px/ 1'dashicons';213 } 214 #message .jp-connect .jetpack-close-button-container a:hover {200 font: normal 20px/44px 'dashicons'; 201 } 202 #message .jp-banner__dismiss:hover { 215 203 opacity: 0.8; 216 204 } 217 #message .jp-connect .jetpack-close-button-container a:active {205 #message .jp-banner__dismiss:active { 218 206 opacity: 1; 219 207 outline: none; 220 208 } 221 #message.jp-connect .jetpack-text-container {222 color: #dfffcc;223 float: right;224 margin-top: -4px;225 }226 #message.jp-connect .jetpack-text-container p {227 margin: 0;228 padding: 0;229 }230 #message.jp-connect .jetpack-text-container p strong {231 color: #fff;232 display: block;233 font-size: 170%;234 font-weight: normal;235 }236 237 @media (max-width: 1130px) {238 #message.jp-connect .jetpack-install-container {239 float: none;240 }241 #message.jp-connect .jetpack-text-container {242 float: none;243 margin-top: 18px;244 padding-left: 30px;245 }246 #message.jp-connect .jetpack-text-container p {247 float: right;248 font-size: 14px;249 margin-left: 4px;250 }251 #message.jp-connect .jetpack-text-container p strong {252 font-size: 14px;253 font-weight: bold;254 }255 }256 @media (max-width: 420px) {257 #message.jp-connect .jetpack-install-container .download-jetpack {258 font-size: 16px;259 letter-spacing: -0.05em;260 padding: 9px 8px;261 text-align: center;262 width: 80%;263 }264 #message.jp-connect .jetpack-install-container .download-jetpack:before {265 display: none;266 }267 }268 209 269 210 /*# sourceMappingURL=jetpack-banners.css.map */ 270 .button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:em(10px, 13px) em(19px, 13px);color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:em(18px, 28px) em(24px, 28px) em(15px, 28px);color:#fff;font:400 2em/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-left:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;right:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:em(21px)}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:em(17px);font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-left:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:em(5px, 7px) em(9px, 6px);color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}#message.jp-connect{background:#81a844;border:none;color:#fff;overflow:hidden;margin-bottom:26px;padding:26px 20px;position:relative}#message.jp-connect:after{bottom:0;content:'';background:url("../images/the-footcloud.svg") left bottom no-repeat;height:50px;pointer-events:none;position:absolute;left:-100px;width:100%;z-index:1}#message.jp-connect a{color:#fff}#message.jp-connect h4{margin:0;padding:0}#message.jp-connect .jetpack-install-container{float:right;overflow:hidden}#message.jp-connect .jetpack-install-container .submit{margin:0}#message.jp-connect .jetpack-install-container .download-jetpack{font-size:1.5em;margin:0 0 0 18px;padding:0.57143em 0.57143em 0.38095em 0.85714em;border-radius:0;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message.jp-connect .jetpack-install-container .download-jetpack:hover,#message.jp-connect .jetpack-install-container .download-jetpack:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message.jp-connect .jetpack-install-container .download-jetpack:active{outline:none;top:2px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message.jp-connect .jetpack-install-container .download-jetpack:active:after{top:-2px}#message.jp-connect .jetpack-install-container .download-jetpack:before{top:-2px;margin-left:13px;width:22px;height:22px}#message.jp-connect .jetpack-close-button-container{left:18px;position:absolute;top:18px}#message.jp-connect .jetpack-close-button-container a:before{color:#a7c979;content:'\f158';font:normal 20px/1 'dashicons'}#message.jp-connect .jetpack-close-button-container a:hover{opacity:0.8}#message.jp-connect .jetpack-close-button-container a:active{opacity:1;outline:none}#message.jp-connect .jetpack-text-container{color:#dfffcc;float:right;margin-top:-4px}#message.jp-connect .jetpack-text-container p{margin:0;padding:0}#message.jp-connect .jetpack-text-container p strong{color:#fff;display:block;font-size:170%;font-weight:normal}@media (max-width: 1130px){#message.jp-connect .jetpack-install-container{float:none}#message.jp-connect .jetpack-text-container{float:none;margin-top:18px;padding-left:30px}#message.jp-connect .jetpack-text-container p{float:right;font-size:14px;margin-left:4px}#message.jp-connect .jetpack-text-container p strong{font-size:14px;font-weight:bold}}@media (max-width: 420px){#message.jp-connect .jetpack-install-container .download-jetpack{font-size:16px;letter-spacing:-0.05em;padding:9px 8px;text-align:center;width:80%}#message.jp-connect .jetpack-install-container .download-jetpack:before{display:none}}211 #message.jp-banner{position:relative;margin-bottom:26px;padding:17px 0 17px 44px;border:none;background:#81a844;color:#fff;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}#message.jp-banner:after{content:'';position:absolute;bottom:0;left:-100px;width:100%;height:50px;background:url("../images/the-footcloud.svg") left bottom no-repeat;pointer-events:none;z-index:1}#message.jp-banner a{color:#fff}#message.jp-banner h4{display:block;margin:0;padding:0;color:#fff;font-size:20px;line-height:1.3;font-weight:normal}#message.jp-banner h4+p{margin-top:10px}.jp-banner a{padding:0}#message .jp-banner__content{color:#dfffcc;padding:0 20px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;width:75%}@media (max-width: 768px){#message .jp-banner__content{width:auto}}#message .jp-banner__content.is-connection{width:50%}#message .jp-banner__content a{background-image:-webkit-linear-gradient(top, transparent 75%, #fff 50%);background-image:linear-gradient(to bottom, transparent 75%, #fff 50%);background-repeat:repeat-x;background-size:2px 2px;background-position:0 1.2em}@media not all, only screen and (min-resolution: 2dppx), only screen and (-webkit-min-device-pixel-ratio: 2){#message .jp-banner__content a{background-image:-webkit-linear-gradient(top, transparent 75%, #fff 75%);background-image:linear-gradient(to bottom, transparent 75%, #fff 75%);background-repeat:repeat-x}}#message .jp-banner__content p{margin:0;padding:0;line-height:1.5}#message .jp-banner__action-container{position:absolute;top:0;left:0;padding-right:20px;width:25%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box}@media (max-width: 768px){#message .jp-banner__action-container{position:static;margin:14px 0 9px;width:100%}}#message .jp-banner__action-container.is-full-width{position:static;margin:14px 0 9px;width:100%;height:auto}#message .jp-banner__action-container.is-connection{width:50%}@media (max-width: 768px){#message .jp-banner__action-container.is-connection{width:100%}}#message .jp-banner__button{display:inline-block;position:absolute;top:50%;right:20px;margin-top:-23px;padding:0.57143em 0.57143em 0.38095em 0.85714em;border-radius:6px;-moz-box-sizing:border-box;box-sizing:border-box;background:#518d2a;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2);font:400 1.5em/1 'Open Sans', Helvetica, sans-serif;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}@media (max-width: 768px){#message .jp-banner__button{position:static;margin:0}}@media (max-width: 420px){#message .jp-banner__button{display:block;width:100%;text-align:center;font-size:1.1em}}#message .jp-banner__button:hover,#message .jp-banner__button:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message .jp-banner__button:active{outline:none;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px);box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message .jp-banner__button:active:after{top:-2px}#message .jp-banner__button:before{content:'';display:inline-block;position:relative;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%;top:-2px;margin-left:13px;width:22px;height:22px}@media (max-width: 420px){#message .jp-banner__button:before{display:none}}#message .is-full-width .jp-banner__button{position:static;margin:0}#message .is-opt-in .jp-banner__button:before{content:"\f147";width:20px;height:20px;background:none;font:normal 20px/1 Dashicons}#message .jp-banner__dismiss{position:absolute;top:0;left:0;width:44px;height:44px;text-align:center;z-index:99}#message .jp-banner__dismiss:before{color:#a7c979;content:'\f158';font:normal 20px/44px 'dashicons'}#message .jp-banner__dismiss:hover{opacity:0.8}#message .jp-banner__dismiss:active{opacity:1;outline:none} 271 212 272 213 /*# sourceMappingURL=jetpack-banners.min.css.map */ -
jetpack/trunk/css/jetpack-banners-rtl.min.css
r1038914 r1043793 1 .button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:em(10px, 13px) em(19px, 13px);color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:em(18px, 28px) em(24px, 28px) em(15px, 28px);color:#fff;font:400 2em/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-left:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;right:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:em(21px)}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:em(17px);font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-left:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:em(5px, 7px) em(9px, 6px);color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}#message.jp-connect{background:#81a844;border:none;color:#fff;overflow:hidden;margin-bottom:26px;padding:26px 20px;position:relative}#message.jp-connect:after{bottom:0;content:'';background:url("../images/the-footcloud.svg") left bottom no-repeat;height:50px;pointer-events:none;position:absolute;left:-100px;width:100%;z-index:1}#message.jp-connect a{color:#fff}#message.jp-connect h4{margin:0;padding:0}#message.jp-connect .jetpack-install-container{float:right;overflow:hidden}#message.jp-connect .jetpack-install-container .submit{margin:0}#message.jp-connect .jetpack-install-container .download-jetpack{font-size:1.5em;margin:0 0 0 18px;padding:0.57143em 0.57143em 0.38095em 0.85714em;border-radius:0;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message.jp-connect .jetpack-install-container .download-jetpack:hover,#message.jp-connect .jetpack-install-container .download-jetpack:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message.jp-connect .jetpack-install-container .download-jetpack:active{outline:none;top:2px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message.jp-connect .jetpack-install-container .download-jetpack:active:after{top:-2px}#message.jp-connect .jetpack-install-container .download-jetpack:before{top:-2px;margin-left:13px;width:22px;height:22px}#message.jp-connect .jetpack-close-button-container{left:18px;position:absolute;top:18px}#message.jp-connect .jetpack-close-button-container a:before{color:#a7c979;content:'\f158';font:normal 20px/1 'dashicons'}#message.jp-connect .jetpack-close-button-container a:hover{opacity:0.8}#message.jp-connect .jetpack-close-button-container a:active{opacity:1;outline:none}#message.jp-connect .jetpack-text-container{color:#dfffcc;float:right;margin-top:-4px}#message.jp-connect .jetpack-text-container p{margin:0;padding:0}#message.jp-connect .jetpack-text-container p strong{color:#fff;display:block;font-size:170%;font-weight:normal}@media (max-width: 1130px){#message.jp-connect .jetpack-install-container{float:none}#message.jp-connect .jetpack-text-container{float:none;margin-top:18px;padding-left:30px}#message.jp-connect .jetpack-text-container p{float:right;font-size:14px;margin-left:4px}#message.jp-connect .jetpack-text-container p strong{font-size:14px;font-weight:bold}}@media (max-width: 420px){#message.jp-connect .jetpack-install-container .download-jetpack{font-size:16px;letter-spacing:-0.05em;padding:9px 8px;text-align:center;width:80%}#message.jp-connect .jetpack-install-container .download-jetpack:before{display:none}}1 #message.jp-banner{position:relative;margin-bottom:26px;padding:17px 0 17px 44px;border:none;background:#81a844;color:#fff;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}#message.jp-banner:after{content:'';position:absolute;bottom:0;left:-100px;width:100%;height:50px;background:url("../images/the-footcloud.svg") left bottom no-repeat;pointer-events:none;z-index:1}#message.jp-banner a{color:#fff}#message.jp-banner h4{display:block;margin:0;padding:0;color:#fff;font-size:20px;line-height:1.3;font-weight:normal}#message.jp-banner h4+p{margin-top:10px}.jp-banner a{padding:0}#message .jp-banner__content{color:#dfffcc;padding:0 20px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;width:75%}@media (max-width: 768px){#message .jp-banner__content{width:auto}}#message .jp-banner__content.is-connection{width:50%}#message .jp-banner__content a{background-image:-webkit-linear-gradient(top, transparent 75%, #fff 50%);background-image:linear-gradient(to bottom, transparent 75%, #fff 50%);background-repeat:repeat-x;background-size:2px 2px;background-position:0 1.2em}@media not all, only screen and (min-resolution: 2dppx), only screen and (-webkit-min-device-pixel-ratio: 2){#message .jp-banner__content a{background-image:-webkit-linear-gradient(top, transparent 75%, #fff 75%);background-image:linear-gradient(to bottom, transparent 75%, #fff 75%);background-repeat:repeat-x}}#message .jp-banner__content p{margin:0;padding:0;line-height:1.5}#message .jp-banner__action-container{position:absolute;top:0;left:0;padding-right:20px;width:25%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box}@media (max-width: 768px){#message .jp-banner__action-container{position:static;margin:14px 0 9px;width:100%}}#message .jp-banner__action-container.is-full-width{position:static;margin:14px 0 9px;width:100%;height:auto}#message .jp-banner__action-container.is-connection{width:50%}@media (max-width: 768px){#message .jp-banner__action-container.is-connection{width:100%}}#message .jp-banner__button{display:inline-block;position:absolute;top:50%;right:20px;margin-top:-23px;padding:0.57143em 0.57143em 0.38095em 0.85714em;border-radius:6px;-moz-box-sizing:border-box;box-sizing:border-box;background:#518d2a;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2);font:400 1.5em/1 'Open Sans', Helvetica, sans-serif;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}@media (max-width: 768px){#message .jp-banner__button{position:static;margin:0}}@media (max-width: 420px){#message .jp-banner__button{display:block;width:100%;text-align:center;font-size:1.1em}}#message .jp-banner__button:hover,#message .jp-banner__button:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message .jp-banner__button:active{outline:none;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px);box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message .jp-banner__button:active:after{top:-2px}#message .jp-banner__button:before{content:'';display:inline-block;position:relative;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%;top:-2px;margin-left:13px;width:22px;height:22px}@media (max-width: 420px){#message .jp-banner__button:before{display:none}}#message .is-full-width .jp-banner__button{position:static;margin:0}#message .is-opt-in .jp-banner__button:before{content:"\f147";width:20px;height:20px;background:none;font:normal 20px/1 Dashicons}#message .jp-banner__dismiss{position:absolute;top:0;left:0;width:44px;height:44px;text-align:center;z-index:99}#message .jp-banner__dismiss:before{color:#a7c979;content:'\f158';font:normal 20px/44px 'dashicons'}#message .jp-banner__dismiss:hover{opacity:0.8}#message .jp-banner__dismiss:active{opacity:1;outline:none} 2 2 3 3 /*# sourceMappingURL=jetpack-banners.min.css.map */ -
jetpack/trunk/css/jetpack-banners.css
r1038914 r1043793 3 3 * @see: jetpack/_inc/jetpack.scss 4 4 */ 5 .button, 6 .download-jetpack { 5 #message.jp-banner { 6 position: relative; 7 margin-bottom: 26px; 8 padding: 17px 44px 17px 0; 9 border: none; 10 background: #81a844; 11 color: #fff; 12 overflow: hidden; 13 -moz-box-sizing: border-box; 14 box-sizing: border-box; 15 } 16 #message.jp-banner:after { 17 content: ''; 18 position: absolute; 19 bottom: 0; 20 right: -100px; 21 width: 100%; 22 height: 50px; 23 background: url("../images/the-footcloud.svg") right bottom no-repeat; 24 pointer-events: none; 25 z-index: 1; 26 } 27 #message.jp-banner a { 28 color: #fff; 29 } 30 #message.jp-banner h4 { 31 display: block; 32 margin: 0; 33 padding: 0; 34 color: #fff; 35 font-size: 20px; 36 line-height: 1.3; 37 font-weight: normal; 38 } 39 #message.jp-banner h4 + p { 40 margin-top: 10px; 41 } 42 43 .jp-banner a { 44 padding: 0; 45 } 46 47 #message .jp-banner__content { 48 color: #dfffcc; 49 padding: 0 0 0 20px; 50 -moz-box-sizing: border-box; 51 box-sizing: border-box; 52 width: 75%; 53 } 54 @media (max-width: 768px) { 55 #message .jp-banner__content { 56 width: auto; 57 } 58 } 59 #message .jp-banner__content.is-connection { 60 width: 50%; 61 } 62 #message .jp-banner__content a { 63 background-image: -webkit-linear-gradient(top, transparent 75%, #fff 50%); 64 background-image: linear-gradient(to bottom, transparent 75%, #fff 50%); 65 background-repeat: repeat-x; 66 background-size: 2px 2px; 67 background-position: 0 1.2em; 68 } 69 @media not all, only screen and (min-resolution: 2dppx), only screen and (-webkit-min-device-pixel-ratio: 2) { 70 #message .jp-banner__content a { 71 background-image: -webkit-linear-gradient(top, transparent 75%, #fff 75%); 72 background-image: linear-gradient(to bottom, transparent 75%, #fff 75%); 73 background-repeat: repeat-x; 74 } 75 } 76 #message .jp-banner__content p { 77 margin: 0; 78 padding: 0; 79 line-height: 1.5; 80 } 81 82 #message .jp-banner__action-container { 83 position: absolute; 84 top: 0; 85 right: 0; 86 padding-left: 20px; 87 width: 25%; 88 height: 100%; 89 -moz-box-sizing: border-box; 90 box-sizing: border-box; 91 } 92 @media (max-width: 768px) { 93 #message .jp-banner__action-container { 94 position: static; 95 margin: 14px 0 9px; 96 width: 100%; 97 } 98 } 99 #message .jp-banner__action-container.is-full-width { 100 position: static; 101 margin: 14px 0 9px; 102 width: 100%; 103 height: auto; 104 } 105 #message .jp-banner__action-container.is-connection { 106 width: 50%; 107 } 108 @media (max-width: 768px) { 109 #message .jp-banner__action-container.is-connection { 110 width: 100%; 111 } 112 } 113 114 #message .jp-banner__button { 115 display: inline-block; 116 position: absolute; 117 top: 50%; 118 left: 20px; 119 margin-top: -23px; 120 padding: 0.57143em 0.85714em 0.38095em 0.57143em; 121 border-radius: 6px; 122 -moz-box-sizing: border-box; 123 box-sizing: border-box; 124 background: #518d2a; 125 box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2); 126 font: 400 1.5em/1 'Open Sans', Helvetica, sans-serif; 7 127 -webkit-transition: all .1s ease-in-out; 8 128 transition: all .1s ease-in-out; 9 129 } 10 11 .jp-button, .jp-button--settings { 12 display: inline-block; 13 position: relative; 14 padding: em(10px, 13px) em(19px, 13px); 15 color: #efefef; 16 font: 800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif; 17 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); 18 background: #6f7476; 19 border-radius: 3px; 20 } 21 .jp-button:visited, .jp-button--settings:visited { 22 color: #efefef; 23 } 24 .jp-button:hover, .jp-button--settings:hover, .jp-button:focus, .jp-button--settings:focus { 25 color: #fff; 26 background: #57972d; 27 } 28 .jp-button:active, .jp-button--settings:active { 29 background: #57972d; 30 opacity: 0.8; 31 } 32 33 .jp-button--settings { 34 background: #93b45f; 35 color: #e8eedf; 36 } 37 .jp-button--settings:visited { 38 color: #e8eedf; 39 } 40 .jp-button--settings:hover, .jp-button--settings:focus { 41 background: #9fbd72; 42 color: #fff; 43 } 44 .jp-button--settings.current { 45 background: #3c6621; 46 color: #fff; 47 box-shadow: inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621; 48 } 49 50 .download-jetpack { 51 display: inline-block; 52 position: relative; 53 padding: em(18px, 28px) em(24px, 28px) em(15px, 28px); 54 color: #fff; 55 font: 400 2em/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif; 56 background: #518d2a; 57 z-index: 3; 58 border-radius: 6px; 59 box-shadow: 0 6px 0 #3e6c20, 0 6px 3px rgba(0, 0, 0, 0.4); 60 } 61 .download-jetpack:visited { 62 color: #fff; 63 } 64 .download-jetpack:hover, .download-jetpack:focus { 65 color: #fff; 66 background: #57972d; 67 box-shadow: 0 6px 0 #3e6c20, 0 6px 3px rgba(0, 0, 0, 0.4); 68 } 69 .download-jetpack:active { 70 top: 6px; 71 box-shadow: 0 0px 0 #3e6c20, 0 0 0 rgba(0, 0, 0, 0.4); 72 } 73 .download-jetpack:active:after { 74 top: -6px; 75 } 76 .download-jetpack:before { 130 @media (max-width: 768px) { 131 #message .jp-banner__button { 132 position: static; 133 margin: 0; 134 } 135 } 136 @media (max-width: 420px) { 137 #message .jp-banner__button { 138 display: block; 139 width: 100%; 140 text-align: center; 141 font-size: 1.1em; 142 } 143 } 144 #message .jp-banner__button:hover, #message .jp-banner__button:focus { 145 box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2); 146 } 147 #message .jp-banner__button:active { 148 outline: none; 149 -webkit-transform: translateY(2px); 150 -ms-transform: translateY(2px); 151 transform: translateY(2px); 152 box-shadow: 0 0px 0 #3e6c20, 0 0 0 rgba(0, 0, 0, 0.2); 153 } 154 #message .jp-banner__button:active:after { 155 top: -2px; 156 } 157 #message .jp-banner__button:before { 77 158 content: ''; 78 159 display: inline-block; 79 160 position: relative; 80 top: -2px;81 margin-right: 13px;82 width: 30px;83 height: 30px;84 161 vertical-align: middle; 85 162 background: url("../images/connect-plug.svg") center center no-repeat; 86 163 background-size: 100%; 87 }88 .download-jetpack:after {89 content: '';90 position: absolute;91 top: 0;92 left: 0;93 width: 100%;94 height: 100%;95 }96 @media (max-width: 1147px) {97 .download-jetpack {98 font-size: em(21px);99 }100 .download-jetpack:before {101 top: -1px;102 width: 23px;103 height: 23px;104 }105 }106 @media (max-width: 900px) {107 .download-jetpack:active {108 top: 0;109 }110 }111 @media (max-width: 530px) {112 .download-jetpack {113 font-size: em(17px);114 font-weight: 600;115 }116 .download-jetpack:before {117 width: 19px;118 height: 19px;119 margin-right: 9px;120 }121 }122 123 #searchsubmit {124 display: inline-block;125 border: none;126 position: relative;127 padding: em(5px, 7px) em(9px, 6px);128 color: #efefef;129 font: 800 0.8em/1 'Open Sans', Helvetica, sans-serif;130 text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);131 background: #6f7476;132 outline: none;133 border-radius: 3px;134 }135 #searchsubmit:visited {136 color: #efefef;137 }138 #searchsubmit:hover, #searchsubmit:focus {139 color: #fff;140 background: #2aa0d5;141 }142 #searchsubmit:active {143 opacity: 0.7;144 }145 146 #message.jp-connect {147 background: #81a844;148 border: none;149 color: #fff;150 overflow: hidden;151 margin-bottom: 26px;152 padding: 26px 20px;153 position: relative;154 }155 #message.jp-connect:after {156 bottom: 0;157 content: '';158 background: url("../images/the-footcloud.svg") right bottom no-repeat;159 height: 50px;160 pointer-events: none;161 position: absolute;162 right: -100px;163 width: 100%;164 z-index: 1;165 }166 #message.jp-connect a {167 color: #fff;168 }169 #message.jp-connect h4 {170 margin: 0;171 padding: 0;172 }173 #message.jp-connect .jetpack-install-container {174 float: left;175 overflow: hidden;176 }177 #message.jp-connect .jetpack-install-container .submit {178 margin: 0;179 }180 #message.jp-connect .jetpack-install-container .download-jetpack {181 font-size: 1.5em;182 margin: 0 18px 0 0;183 padding: 0.57143em 0.85714em 0.38095em 0.57143em;184 border-radius: 0;185 box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2);186 }187 #message.jp-connect .jetpack-install-container .download-jetpack:hover, #message.jp-connect .jetpack-install-container .download-jetpack:focus {188 box-shadow: 0 4px 0 #3e6c20, 0 2px 3px rgba(0, 0, 0, 0.2);189 }190 #message.jp-connect .jetpack-install-container .download-jetpack:active {191 outline: none;192 top: 2px;193 box-shadow: 0 0px 0 #3e6c20, 0 0 0 rgba(0, 0, 0, 0.2);194 }195 #message.jp-connect .jetpack-install-container .download-jetpack:active:after {196 top: -2px;197 }198 #message.jp-connect .jetpack-install-container .download-jetpack:before {199 164 top: -2px; 200 165 margin-right: 13px; … … 202 167 height: 22px; 203 168 } 204 #message.jp-connect .jetpack-close-button-container { 205 right: 18px; 206 position: absolute; 207 top: 18px; 208 } 209 #message.jp-connect .jetpack-close-button-container a:before { 169 @media (max-width: 420px) { 170 #message .jp-banner__button:before { 171 display: none; 172 } 173 } 174 175 #message .is-full-width .jp-banner__button { 176 position: static; 177 margin: 0; 178 } 179 180 #message .is-opt-in .jp-banner__button:before { 181 content: "\f147"; 182 width: 20px; 183 height: 20px; 184 background: none; 185 font: normal 20px/1 Dashicons; 186 } 187 188 #message .jp-banner__dismiss { 189 position: absolute; 190 top: 0; 191 right: 0; 192 width: 44px; 193 height: 44px; 194 text-align: center; 195 z-index: 99; 196 } 197 #message .jp-banner__dismiss:before { 210 198 color: #a7c979; 211 199 content: '\f158'; 212 font: normal 20px/ 1'dashicons';213 } 214 #message .jp-connect .jetpack-close-button-container a:hover {200 font: normal 20px/44px 'dashicons'; 201 } 202 #message .jp-banner__dismiss:hover { 215 203 opacity: 0.8; 216 204 } 217 #message .jp-connect .jetpack-close-button-container a:active {205 #message .jp-banner__dismiss:active { 218 206 opacity: 1; 219 207 outline: none; 220 208 } 221 #message.jp-connect .jetpack-text-container {222 color: #dfffcc;223 float: left;224 margin-top: -4px;225 }226 #message.jp-connect .jetpack-text-container p {227 margin: 0;228 padding: 0;229 }230 #message.jp-connect .jetpack-text-container p strong {231 color: #fff;232 display: block;233 font-size: 170%;234 font-weight: normal;235 }236 237 @media (max-width: 1130px) {238 #message.jp-connect .jetpack-install-container {239 float: none;240 }241 #message.jp-connect .jetpack-text-container {242 float: none;243 margin-top: 18px;244 padding-right: 30px;245 }246 #message.jp-connect .jetpack-text-container p {247 float: left;248 font-size: 14px;249 margin-right: 4px;250 }251 #message.jp-connect .jetpack-text-container p strong {252 font-size: 14px;253 font-weight: bold;254 }255 }256 @media (max-width: 420px) {257 #message.jp-connect .jetpack-install-container .download-jetpack {258 font-size: 16px;259 letter-spacing: -0.05em;260 padding: 9px 8px;261 text-align: center;262 width: 80%;263 }264 #message.jp-connect .jetpack-install-container .download-jetpack:before {265 display: none;266 }267 }268 209 269 210 /*# sourceMappingURL=jetpack-banners.css.map */ -
jetpack/trunk/css/jetpack-banners.css.map
r1038914 r1043793 1 {"version":3,"sources":["../scss/ atoms/_buttons.scss","jetpack-banners.css","../scss/_utilities/mixins/_breakpoint.scss","../scss/organisms/_banners.scss"],"names":[],"mappings":"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","file":"jetpack-banners.css"}1 {"version":3,"sources":["../scss/organisms/_banners.scss","jetpack-banners.css"],"names":[],"mappings":"AAAA;;;GAGC;ACCD;EDCC,oBAAmB;EACnB,qBAAW;EACX,2BAAgB;EAChB,cAAY;ECCX,qBAAoB;EDCrB,aAAA;EACC,kBAAW;EACX,6BAAkB;EAAlB,wBAAkB;ECCnB;AACD;EDCE,aAAW;EACX,oBAAY;EACZ,WAAU;EACV,eAAc;EACd,aAAU;ECCV,cAAa;EDCd,uEAAE;EACD,sBAAW;ECCX,YAAW;EDCZ;ACCD;EDCE,aAAS;ECCV;AACD;EDCE,gBAAe;EACf,WAAA;EACA,YAAW;ECCX,aAAY;EDCZ,iBAAA;EACC,kBAAgB;ECCjB,qBAAoB;EACrB;ADGD;EACC,kBAAU;ECDV;;ADID;EACC,YAAO;ECDP;;AAED;EACE,gBAAe;EDGhB,qBAAA;EAND,6BAAA;EAAA,wBAAA;ECME,YDCO;ECAR;AACD;EDEC;IACC,aAAU;ICAT;EDEF;ACAD;EDGE,YAAA;ECDD;AACD;EACE,2EAAwE;EAAxE,yEAAwE;EDGxE,6BAAA;EAPD,0BAAA;ECOC,8BDCmB;ECApB;AACD;EACE;IDED,2EAAE;IAAF,yEAAE;IACD,6BAAS;IACT;ECAD;AACD;EACE,WAAU;EDGZ,YAAA;EACC,kBAAU;ECDV;;AAED;EDGC,oBAAU;EACV,QAAM;EACN,UAAA;ECDC,oBAAmB;EDGpB,YAAA;EATD,cAAA;ECSE,6BDCgB;ECDhB,wBDCgB;ECAjB;AACD;EACE;IACE,kBAAiB;IDCpB,oBAAA;IACC,aAAU;IACV;ECCD;AACD;EACE,kBAAiB;EDClB,oBAAA;EACC,aAAU;ECCV,cAAa;EDCb;ACCF;EACE,YDDQ;ECET;AACD;EACE;IDCF,aAAA;IACC;ECCA;;AAED;EDCC,uBAAiB;EACjB,oBAAS;EACT,UAAA;EACA,YAAU;EACV,mBAAY;EACZ,kDACC;EAED,oBAAM;EACN,6BAAY;EAAZ,wBAAY;ECDX,qBAAoB;EDGrB,2DAA4B;EAhB7B,sDAA4B;ECgB1B,yCDCgB;ECDhB,iCDCgB;ECAjB;AACD;EACE;IDCD,kBAAA;IApBD,WAAA;ICsBG;EACF;AACD;EACE;IACE,gBAAe;IACf,aAAY;IDDf,oBAAA;IAEC,kBACC;ICCA;EDEF;ACAD;EDEE,2DAA0B;ECA3B;AACD;EDIE,eAAA;EAEC,oCAAS;EAAT,gCAAS;EAAT,4BAAS;ECHV,uDAAsD;EDMvD;ACJD;EDME,WAAS;ECJV;AACD;EDME,aAAY;EACZ,uBAAqB;EACrB,oBAAS;EACT,wBAAkB;EAClB,uEAAW;EACX,uBAAY;ECJZ,WAAU;EDMV,oBAAA;EAZD,aAAA;ECSC,cDIU;ECHX;AACD;EACE;IDMF,eAAA;IACC;ECJA;;AAED;EDOA,kBAAA;EACC,WAAS;ECLT;;AAED;EDOC,kBAAM;ECLL,aAAY;EACZ,cAAa;EDOf,kBAAA;EACC,+BAAkB;ECLlB;;AAED;EDOC,oBAAY;EACZ,QAAA;EACA,UAAS;ECLR,aAAY;EDOb,cAAA;EACC,oBAAc;EACd,aAAS;ECLV;AACD;EDOC,gBAAA;EACC,kBAAY;ECLZ,oCAAmC;EDOpC;ACLD;EDOE,cAAa;ECLd;AACD;EACE,YAAW;EACX,eAAc;EACf","file":"jetpack-banners.css"} -
jetpack/trunk/css/jetpack-banners.min.css
r1038914 r1043793 1 .button,.download-jetpack{-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}.jp-button,.jp-button--settings{display:inline-block;position:relative;padding:em(10px, 13px) em(19px, 13px);color:#efefef;font:800 0.9285714286em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;border-radius:3px}.jp-button:visited,.jp-button--settings:visited{color:#efefef}.jp-button:hover,.jp-button--settings:hover,.jp-button:focus,.jp-button--settings:focus{color:#fff;background:#57972d}.jp-button:active,.jp-button--settings:active{background:#57972d;opacity:0.8}.jp-button--settings{background:#93b45f;color:#e8eedf}.jp-button--settings:visited{color:#e8eedf}.jp-button--settings:hover,.jp-button--settings:focus{background:#9fbd72;color:#fff}.jp-button--settings.current{background:#3c6621;color:#fff;box-shadow:inset 0 2px 0 #365A1F, inset 0 1px 3px #3c6621}.download-jetpack{display:inline-block;position:relative;padding:em(18px, 28px) em(24px, 28px) em(15px, 28px);color:#fff;font:400 2em/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif;background:#518d2a;z-index:3;border-radius:6px;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:visited{color:#fff}.download-jetpack:hover,.download-jetpack:focus{color:#fff;background:#57972d;box-shadow:0 6px 0 #3e6c20,0 6px 3px rgba(0,0,0,0.4)}.download-jetpack:active{top:6px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.4)}.download-jetpack:active:after{top:-6px}.download-jetpack:before{content:'';display:inline-block;position:relative;top:-2px;margin-right:13px;width:30px;height:30px;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%}.download-jetpack:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%}@media (max-width: 1147px){.download-jetpack{font-size:em(21px)}.download-jetpack:before{top:-1px;width:23px;height:23px}}@media (max-width: 900px){.download-jetpack:active{top:0}}@media (max-width: 530px){.download-jetpack{font-size:em(17px);font-weight:600}.download-jetpack:before{width:19px;height:19px;margin-right:9px}}#searchsubmit{display:inline-block;border:none;position:relative;padding:em(5px, 7px) em(9px, 6px);color:#efefef;font:800 0.8em/1 'Open Sans', Helvetica, sans-serif;text-shadow:0 1px 1px rgba(0,0,0,0.2);background:#6f7476;outline:none;border-radius:3px}#searchsubmit:visited{color:#efefef}#searchsubmit:hover,#searchsubmit:focus{color:#fff;background:#2aa0d5}#searchsubmit:active{opacity:0.7}#message.jp-connect{background:#81a844;border:none;color:#fff;overflow:hidden;margin-bottom:26px;padding:26px 20px;position:relative}#message.jp-connect:after{bottom:0;content:'';background:url("../images/the-footcloud.svg") right bottom no-repeat;height:50px;pointer-events:none;position:absolute;right:-100px;width:100%;z-index:1}#message.jp-connect a{color:#fff}#message.jp-connect h4{margin:0;padding:0}#message.jp-connect .jetpack-install-container{float:left;overflow:hidden}#message.jp-connect .jetpack-install-container .submit{margin:0}#message.jp-connect .jetpack-install-container .download-jetpack{font-size:1.5em;margin:0 18px 0 0;padding:0.57143em 0.85714em 0.38095em 0.57143em;border-radius:0;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message.jp-connect .jetpack-install-container .download-jetpack:hover,#message.jp-connect .jetpack-install-container .download-jetpack:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message.jp-connect .jetpack-install-container .download-jetpack:active{outline:none;top:2px;box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message.jp-connect .jetpack-install-container .download-jetpack:active:after{top:-2px}#message.jp-connect .jetpack-install-container .download-jetpack:before{top:-2px;margin-right:13px;width:22px;height:22px}#message.jp-connect .jetpack-close-button-container{right:18px;position:absolute;top:18px}#message.jp-connect .jetpack-close-button-container a:before{color:#a7c979;content:'\f158';font:normal 20px/1 'dashicons'}#message.jp-connect .jetpack-close-button-container a:hover{opacity:0.8}#message.jp-connect .jetpack-close-button-container a:active{opacity:1;outline:none}#message.jp-connect .jetpack-text-container{color:#dfffcc;float:left;margin-top:-4px}#message.jp-connect .jetpack-text-container p{margin:0;padding:0}#message.jp-connect .jetpack-text-container p strong{color:#fff;display:block;font-size:170%;font-weight:normal}@media (max-width: 1130px){#message.jp-connect .jetpack-install-container{float:none}#message.jp-connect .jetpack-text-container{float:none;margin-top:18px;padding-right:30px}#message.jp-connect .jetpack-text-container p{float:left;font-size:14px;margin-right:4px}#message.jp-connect .jetpack-text-container p strong{font-size:14px;font-weight:bold}}@media (max-width: 420px){#message.jp-connect .jetpack-install-container .download-jetpack{font-size:16px;letter-spacing:-0.05em;padding:9px 8px;text-align:center;width:80%}#message.jp-connect .jetpack-install-container .download-jetpack:before{display:none}}1 #message.jp-banner{position:relative;margin-bottom:26px;padding:17px 44px 17px 0;border:none;background:#81a844;color:#fff;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}#message.jp-banner:after{content:'';position:absolute;bottom:0;right:-100px;width:100%;height:50px;background:url("../images/the-footcloud.svg") right bottom no-repeat;pointer-events:none;z-index:1}#message.jp-banner a{color:#fff}#message.jp-banner h4{display:block;margin:0;padding:0;color:#fff;font-size:20px;line-height:1.3;font-weight:normal}#message.jp-banner h4+p{margin-top:10px}.jp-banner a{padding:0}#message .jp-banner__content{color:#dfffcc;padding:0 0 0 20px;-moz-box-sizing:border-box;box-sizing:border-box;width:75%}@media (max-width: 768px){#message .jp-banner__content{width:auto}}#message .jp-banner__content.is-connection{width:50%}#message .jp-banner__content a{background-image:-webkit-linear-gradient(top, transparent 75%, #fff 50%);background-image:linear-gradient(to bottom, transparent 75%, #fff 50%);background-repeat:repeat-x;background-size:2px 2px;background-position:0 1.2em}@media not all, only screen and (min-resolution: 2dppx), only screen and (-webkit-min-device-pixel-ratio: 2){#message .jp-banner__content a{background-image:-webkit-linear-gradient(top, transparent 75%, #fff 75%);background-image:linear-gradient(to bottom, transparent 75%, #fff 75%);background-repeat:repeat-x}}#message .jp-banner__content p{margin:0;padding:0;line-height:1.5}#message .jp-banner__action-container{position:absolute;top:0;right:0;padding-left:20px;width:25%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box}@media (max-width: 768px){#message .jp-banner__action-container{position:static;margin:14px 0 9px;width:100%}}#message .jp-banner__action-container.is-full-width{position:static;margin:14px 0 9px;width:100%;height:auto}#message .jp-banner__action-container.is-connection{width:50%}@media (max-width: 768px){#message .jp-banner__action-container.is-connection{width:100%}}#message .jp-banner__button{display:inline-block;position:absolute;top:50%;left:20px;margin-top:-23px;padding:0.57143em 0.85714em 0.38095em 0.57143em;border-radius:6px;-moz-box-sizing:border-box;box-sizing:border-box;background:#518d2a;box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2);font:400 1.5em/1 'Open Sans', Helvetica, sans-serif;-webkit-transition:all .1s ease-in-out;transition:all .1s ease-in-out}@media (max-width: 768px){#message .jp-banner__button{position:static;margin:0}}@media (max-width: 420px){#message .jp-banner__button{display:block;width:100%;text-align:center;font-size:1.1em}}#message .jp-banner__button:hover,#message .jp-banner__button:focus{box-shadow:0 4px 0 #3e6c20,0 2px 3px rgba(0,0,0,0.2)}#message .jp-banner__button:active{outline:none;-webkit-transform:translateY(2px);-ms-transform:translateY(2px);transform:translateY(2px);box-shadow:0 0px 0 #3e6c20,0 0 0 rgba(0,0,0,0.2)}#message .jp-banner__button:active:after{top:-2px}#message .jp-banner__button:before{content:'';display:inline-block;position:relative;vertical-align:middle;background:url("../images/connect-plug.svg") center center no-repeat;background-size:100%;top:-2px;margin-right:13px;width:22px;height:22px}@media (max-width: 420px){#message .jp-banner__button:before{display:none}}#message .is-full-width .jp-banner__button{position:static;margin:0}#message .is-opt-in .jp-banner__button:before{content:"\f147";width:20px;height:20px;background:none;font:normal 20px/1 Dashicons}#message .jp-banner__dismiss{position:absolute;top:0;right:0;width:44px;height:44px;text-align:center;z-index:99}#message .jp-banner__dismiss:before{color:#a7c979;content:'\f158';font:normal 20px/44px 'dashicons'}#message .jp-banner__dismiss:hover{opacity:0.8}#message .jp-banner__dismiss:active{opacity:1;outline:none} 2 2 3 3 /*# sourceMappingURL=jetpack-banners.min.css.map */ -
jetpack/trunk/css/jetpack-banners.min.css.map
r1038914 r1043793 1 {"version":3,"sources":["../scss/ atoms/_buttons.scss","../scss/_utilities/mixins/_breakpoint.scss","../scss/organisms/_banners.scss"],"names":[],"mappings":"AAIA,0BAEC,uCAAA,CAED,8BAAA,CAAA,+BACC,qBACA,CAAA,iBACA,CAAA,qCACA,CAAA,aACA,CAAA,4DACA,CAAA,qCACA,CAAA,kBACA,CAAA,iBAEA,CAAA,+CACC,cAED,CAAA,uFAEC,WACA,CAAA,kBAED,CAAA,6CACC,mBACA,CAAA,WAGF,CAAA,oBAEC,mBACA,CAAA,aAEA,CAAA,4BACC,cAED,CAAA,qDAEC,mBACA,CAAA,UAED,CAAA,4BACC,mBACA,CAAA,UACA,CAAA,yDAKF,CAAA,iBACC,qBACA,CAAA,iBACA,CAAA,oDACA,CAAA,UACA,CAAA,iEACA,CAAA,kBACA,CAAA,SACA,CAAA,iBACA,CAAA,oDAIA,CAAA,yBACC,WAED,CAAA,+CAEC,WACA,CAAA,kBACA,CAAA,oDAID,CAAA,wBACC,QACA,CAAA,gDAIA,CAAA,8BAEC,SAGF,CAAA,wBACC,WACA,CAAA,oBACA,CAAA,iBACA,CAAA,QACA,CAAA,iBACA,CAAA,UACA,CAAA,WACA,CAAA,qBACA,CAAA,oEACA,CAAA,oBAED,CAAA,uBAEC,WACA,CAAA,iBACA,CAAA,KACA,CAAA,MACA,CAAA,UACA,CAAA,WC7EC,CAAA,0BDuBH,kBAyDE,mBAEA,CAAA,wBACC,SACA,CAAA,UACA,CAAA,WAAY,CCrFZ,ADqFY,CCrFZ,yBDyFD,yBACC,MAAM,CC1FN,AD0FM,CC1FN,yBDuBH,kBAuEE,mBACA,CAAA,eAEA,CAAA,wBACC,WACA,CAAA,WACA,CAAA,gBAAiB,CAAA,AAIpB,CAAA,aACC,qBACA,CAAA,WACA,CAAA,iBACA,CAAA,iCACA,CAAA,aACA,CAAA,mDACA,CAAA,qCACA,CAAA,kBACA,CAAA,YACA,CAAA,iBAEA,CAAA,qBACC,cAED,CAAA,uCAEC,WACA,CAAA,kBAED,CAAA,oBACC,YE1JF,CAAA,mBACC,mBACA,CAAA,WACA,CAAA,UACA,CAAA,eACA,CAAA,kBACA,CAAA,iBACA,CAAA,iBAEA,CAAA,yBACC,SACA,CAAA,UACA,CAAA,oEACA,CAAA,WACA,CAAA,mBACA,CAAA,iBACA,CAAA,YACA,CAAA,UACA,CAAA,SAGD,CAAA,qBACC,WAED,CAAA,sBACC,SACA,CAAA,SAGD,CAAA,8CACC,WACA,CAAA,eAEA,CAAA,sDACC,SAED,CAAA,gEACC,gBACA,CAAA,iBACA,CAAA,+CACA,CAAA,eACA,CAAA,oDAKA,CAAA,6IAEC,qDAKD,CAAA,uEACC,aACA,CAAA,OACA,CAAA,gDAKA,CAAA,6EAEC,SAGF,CAAA,uEACC,SACA,CAAA,iBACA,CAAA,UACA,CAAA,WAIH,CAAA,mDACC,WACA,CAAA,iBACA,CAAA,QAGC,CAAA,4DACC,cACA,CAAA,eACA,CAAA,8BAED,CAAA,2DACC,YAED,CAAA,4DACC,UACA,CAAA,YAIH,CAAA,2CACC,cACA,CAAA,UACA,CAAA,eAEA,CAAA,6CACC,SACA,CAAA,SAEA,CAAA,oDACC,WACA,CAAA,aACA,CAAA,cACA,CAAA,kBAKJ,CAAA,0BAEE,+CACC,WAED,CAAA,2CACC,WACA,CAAA,eACA,CAAA,kBAEA,CAAA,6CACC,WACA,CAAA,cACA,CAAA,gBAEA,CAAA,oDACC,eACA,CAAA,gBAAiB,CAAA,AAOtB,CAAA,yBAEE,iEACC,eACA,CAAA,sBACA,CAAA,eACA,CAAA,iBACA,CAAA,SAEA,CAAA,uEACC,aAAa,CAAA,CAAA","file":"jetpack-banners.min.css"}1 {"version":3,"sources":["../scss/organisms/_banners.scss"],"names":[],"mappings":"AAAA,mBACC,kBACA,CAAA,kBACA,CAAA,wBACA,CAAA,WACA,CAAA,kBACA,CAAA,UACA,CAAA,eACA,CAAA,0BAAA,CAEA,qBAAA,CAAA,wBACC,WACA,CAAA,iBACA,CAAA,QACA,CAAA,YACA,CAAA,UACA,CAAA,WACA,CAAA,oEACA,CAAA,mBACA,CAAA,SAED,CAAA,oBACC,WAED,CAAA,qBACC,cACA,CAAA,QACA,CAAA,SACA,CAAA,UACA,CAAA,cACA,CAAA,eACA,CAAA,kBAEA,CAAA,uBACC,gBAKH,CAAA,YACC,UAGD,CAAA,4BACC,cACA,CAAA,kBACA,CAAA,0BAAA,CACA,qBAAA,CAAA,SAEA,CAAA,yBAND,6BAOE,WAAW,CAAA,AAGZ,CAAA,0CACC,UAED,CAAA,8BAEC,yEAAA,CACA,sEAAA,CAAA,0BACA,CAAA,uBACA,CAAA,2BAEA,CAAA,4GAPD,+BAQE,yEAAA,CACA,sEAAA,CAAA,0BAA2B,CAAA,AAG7B,CAAA,8BACC,SACA,CAAA,SACA,CAAA,eAIF,CAAA,qCACC,kBACC,CAAA,KACA,CAAA,OACD,CAAA,iBACA,CAAA,SACA,CAAA,WACA,CAAA,0BAAA,CAEA,qBAAA,CAAA,yBATD,sCAUE,gBACA,CAAA,iBACA,CAAA,UAAW,CAAA,AAEZ,CAAA,mDACC,gBACA,CAAA,iBACA,CAAA,UACA,CAAA,WAED,CAAA,mDACC,UAEA,CAAA,yBAHD,oDAIE,WAAW,CAAA,AAKd,CAAA,2BACC,qBACA,CAAA,iBACC,CAAA,OACA,CAAA,SACD,CAAA,gBACA,CAAA,+CACA,CAAA,iBACA,CAAA,0BAAA,CACA,qBAAA,CAAA,kBACA,CAAA,oDAGA,CAAA,mDACA,CAAA,sCAAA,CAEA,8BAAA,CAAA,yBAhBD,4BAiBE,gBACA,CAAA,QAAS,CAAA,AAEV,CAAA,yBApBD,4BAqBE,cACA,CAAA,UACA,CAAA,iBACA,CAAA,eAAgB,CAAA,AAEjB,CAAA,mEAEC,qDAID,CAAA,kCACC,aACA,CAAA,iCAAA,CACA,6BADA,CACA,yBAAA,CAAA,gDAIA,CAAA,wCAEC,SAGF,CAAA,kCACC,WACA,CAAA,oBACA,CAAA,iBACA,CAAA,qBACA,CAAA,oEACA,CAAA,oBACA,CAAA,QACA,CAAA,iBACA,CAAA,UACA,CAAA,WAEA,CAAA,yBAZD,mCAaE,aAAa,CAAA,AAKhB,CAAA,0CACC,gBACA,CAAA,QAID,CAAA,6CACC,gBACA,CAAA,UACA,CAAA,WACA,CAAA,eACA,CAAA,4BAGD,CAAA,4BACC,kBACC,CAAA,KACA,CAAA,OACD,CAAA,UACA,CAAA,WACA,CAAA,iBACA,CAAA,UAEA,CAAA,mCACC,cACA,CAAA,eACA,CAAA,iCAED,CAAA,kCACC,YAED,CAAA,mCACC,UACA,CAAA,YAAa,CAAA","file":"jetpack-banners.min.css"} -
jetpack/trunk/css/jetpack-rtl.css
r1041038 r1043793 2 2 * Do not modify this file directly. It is concatenated from individual module CSS files. 3 3 */ 4 .jp-carousel-wrap *{line-height:inherit}.jp-carousel-overlay{background:#000}div.jp-carousel-fadeaway{background:-webkit-gradient(linear,right bottom,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));position:fixed;bottom:0;z-index:2147483647;width:100%;height:15px}.jp-carousel-next-button span,.jp-carousel-previous-button span{background:url(../modules/carousel/images/arrows.png) center center/200px 126px no-repeat}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.jp-carousel-next-button span,.jp-carousel-previous-button span{background-image:url(../modules/carousel/images/arrows-2x.png)}}.jp-carousel-wrap{font-family:"Helvetica Neue",sans-serif!important}.jp-carousel-info{position:absolute;bottom:0;text-align:right!important;-webkit-font-smoothing:subpixel-antialiased!important}.jp-carousel-info ::selection{background:#68c9e8;color:#fff}.jp-carousel-info ::-moz-selection{background:#68c9e8;color:#fff}.jp-carousel-photo-info{position:relative;right:25%;width:50%}.jp-carousel-transitions .jp-carousel-photo-info{-webkit-transition:400ms ease-out;transition:400ms ease-out}.jp-carousel-info h2{background:none!important;border:none!important;color:#999;display:block!important;font:400 13px/1.25em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;margin:7px 0 0!important;padding:10px 0 0!important;overflow:hidden;text-align:right;text-shadow:none!important;text-transform:none!important;-webkit-font-smoothing:subpixel-antialiased}.jp-carousel-next-button,.jp-carousel-previous-button{text-indent:-9999px;overflow:hidden;cursor:pointer}.jp-carousel-next-button span,.jp-carousel-previous-button span{position:absolute;top:0;bottom:0;width:82px;zoom:1;filter:alpha(opacity=20);opacity:.2}.jp-carousel-transitions .jp-carousel-next-button span,.jp-carousel-transitions .jp-carousel-previous-button span{-webkit-transition:500ms opacity ease-out;transition:500ms opacity ease-out}.jp-carousel-next-button:hover span,.jp-carousel-previous-button:hover span{filter:alpha(opacity=60);opacity:.6}.jp-carousel-next-button span{background-position:-110px center;left:0}.jp-carousel-previous-button span{background-position:-10px center;right:0}.jp-carousel-buttons{margin:-18px -20px 15px;padding:8px 10px;border-bottom:1px solid #222;background:#222;text-align:center}div.jp-carousel-buttons a{border:none!important;color:#999;font:400 11px/1.2em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;padding:5px 0 5px 2px;text-decoration:none!important;text-shadow:none!important;vertical-align:middle;-webkit-font-smoothing:subpixel-antialiased}div.jp-carousel-buttons a:hover{color:#68c9e8;border:none!important}.jp-carousel-transitions div.jp-carousel-buttons a:hover{-webkit-transition:none!important;transition:none!important}.jp-carousel-next-button,.jp-carousel-previous-button,.jp-carousel-slide,.jp-carousel-slide img{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.jp-carousel-slide{position:fixed;width:0;bottom:0;background-color:#000;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}.jp-carousel-slide.selected{position:absolute!important;filter:alpha(opacity=100);opacity:1}.jp-carousel-slide{filter:alpha(opacity=25);opacity:.25}.jp-carousel-slide img{display:block;width:100%!important;height:100%!important;max-width:100%!important;max-height:100%!important;background:none!important;border:none!important;padding:0!important;box-shadow:0 2px 8px rgba(0,0,0,.1);zoom:1}.jp-carousel-transitions .jp-carousel-slide{-webkit-transition:opacity 400ms linear;transition:opacity 400ms linear}.jp-carousel-close-hint{color:#999;cursor:default;letter-spacing:0!important;padding:.35em 0 0;position:absolute;text-align:right;width:90%}.jp-carousel-transitions .jp-carousel-close-hint{-webkit-transition:color 200ms linear;transition:color 200ms linear}.jp-carousel-close-hint span{cursor:pointer;background-color:#000;background-color:rgba(0,0,0,.8);display:block;height:22px;font:400 24px/1 "Helvetica Neue",sans-serif!important;line-height:22px;margin:0 .4em 0 0;text-align:center;vertical-align:middle;width:22px;border-radius:4px}.jp-carousel-transitions .jp-carousel-close-hint span{-webkit-transition:border-color 200ms linear;transition:border-color 200ms linear}.jp-carousel-close-hint:hover{cursor:default;color:#fff}.jp-carousel-close-hint:hover span{border-color:#fff}a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-like,div.jp-carousel-buttons a.jp-carousel-reblog{background:url(../modules/carousel/images/carousel-sprite.png?5) 0 0/16px 200px no-repeat}div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-reblog{margin:0 0 0 14px!important}div.jp-carousel-buttons a.jp-carousel-like.liked,div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#303030;padding-left:8px!important;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{margin:0 -12px 0 2px!important}div.jp-carousel-buttons a.jp-carousel-reblog,div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{background-position:6px -36px;padding-right:26px!important;color:#999}div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -156px;padding-right:19px!important}.rtl div.jp-carousel-buttons a.jp-carousel-commentlink{background-position: 100% -156px}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{cursor:default}div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:6px -56px;color:#68c9e8}div.jp-carousel-buttons a.jp-carousel-like{background-position:5px 5px;padding-right:24px!important}div.jp-carousel-buttons a.jp-carousel-like:hover{background-position:5px -15px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-like,div.jp-carousel-buttons a.jp-carousel-reblog{background-image:url(../modules/carousel/images/carousel-sprite-2x.png?5)}}div#carousel-reblog-box{background:#222;background:-webkit-gradient(linear,right bottom,right top,from(#222),to(#333));padding:3px 0 0;display:none;margin:5px auto 0;border-radius:2px;box-shadow:0 0 20px rgba(0,0,0,.9);height:74px;width:565px}#carousel-reblog-box textarea{background:#999;font:13px/1.4 "Helvetica Neue",sans-serif!important;color:#444;padding:3px 6px;width:370px;height:48px;float:right;margin:6px 9px 0;border:1px solid #666;box-shadow:inset 2px 2px 2px rgba(0,0,0,.2);border-radius:textarea:focus{background:#ccc 2px}#carousel-reblog-box;color:#222}#carousel-reblog-box label{color:#aaa;font-size:11px;padding-left:2px;padding-right:2px;display:inline;font-weight:400}#carousel-reblog-box select{width:110px;padding:0;font-size:12px;font-family:"Helvetica Neue",sans-serif!important;background:#333;color:#eee;border:1px solid #444;margin-top:5px}#carousel-reblog-box .submit,#wrapper #carousel-reblog-box p.response{float:right;width:154px;padding-top:0;padding-right:1px;overflow:hidden;height:34px;margin:3px 2px 0 0!important}#wrapper #carousel-reblog-box p.response{font-size:13px;clear:none;padding-right:2px;height:34px;color:#aaa}#carousel-reblog-box input#carousel-reblog-submit,#jp-carousel-comment-form-button-submit{font:13px/24px "Helvetica Neue",sans-serif!important;margin-top:8px;padding:0 10px!important;border-radius:1em;height:24px;color:#333;cursor:pointer;font-weight:400;background:#aaa;background:-webkit-gradient(linear,right bottom,right top,from(#aaa),to(#ccc));border:1px solid #444}#carousel-reblog-box input#carousel-reblog-submit:hover,#jp-carousel-comment-form-button-submit:hover{background:#ccc;background:-webkit-gradient(linear,right bottom,right top,from(#ccc),to(#eee))}#carousel-reblog-box .canceltext{color:#aaa;font-size:11px;line-height:24px}#carousel-reblog-box .canceltext a{color:#fff}.jp-carousel-titleanddesc{border-top:1px solid #222;color:#999;font-size:15px;padding-top:24px;margin-bottom:20px;font-weight:400}.jp-carousel-titleanddesc-title{font:300 1.5em/1.1 "Helvetica Neue",sans-serif!important;text-transform:none!important;color:#fff;margin:0 0 15px;padding:0}.jp-carousel-titleanddesc-desc p{color:#999;line-height:1.4;margin-bottom:.75em}.jp-carousel-comments p a,.jp-carousel-info h2 a,.jp-carousel-titleanddesc p a{color:#fff!important;border:none!important;text-decoration:underline!important;font-weight:400!important;font-style:normal!important}.jp-carousel-titleanddesc p b,.jp-carousel-titleanddesc p strong{font-weight:700;color:#999}.jp-carousel-titleanddesc p em,.jp-carousel-titleanddesc p i{font-style:italic;color:#999}.jp-carousel-comments p a:hover,.jp-carousel-info h2 a:hover,.jp-carousel-titleanddesc p a:hover{color:#68c9e8!important}.jp-carousel-titleanddesc p:empty{display:none}.jp-carousel-left-column-wrapper h1:after,.jp-carousel-left-column-wrapper h1:before,.jp-carousel-photo-info h1:after,.jp-carousel-photo-info h1:before{content:none!important}.jp-carousel-image-meta{background:#111;border:1px solid #222;color:#fff;font:12px/1.4 "Helvetica Neue",sans-serif!important;overflow:hidden;padding:18px 20px;width:209px!important}.jp-carousel-image-meta h5,.jp-carousel-image-meta li{font-family:"Helvetica Neue",sans-serif!important;position:inherit!important;top:auto!important;left:auto!important;right:auto!important;bottom:auto!important;background:none!important;border:none!important;font-weight:400!important;line-height:1.3em!important}.jp-carousel-image-meta ul{margin:0!important;padding:0!important;list-style:none!important}.jp-carousel-image-meta li{width:48%!important;float:right!important;margin:0 0 15px 2%!important;color:#fff!important;font-size:13px!important}.jp-carousel-image-meta h5{color:#999!important;text-transform:uppercase!important;font-size:10px!important;margin:0 0 2px!important;letter-spacing:.1em!important}a.jp-carousel-image-download{padding-right:23px;display:inline-block;clear:both;color:#999;line-height:1;font-weight:400;font-size:13px;text-decoration:none;background-position:0 -82px}.rtl a.jp-carousel-image-download{background-position:100% -82px}a.jp-carousel-image-download span.photo-size{font-size:11px;border-radius:1em;margin-right:2px;display:inline-block}a.jp-carousel-image-download span.photo-size-times{padding:0 2px 0 1px}a.jp-carousel-image-download:hover{background-position:0 -122px;color:#68c9e8;border:none!important}.rtl a.jp-carousel-image-download:hover{background-position:100% -122px}.jp-carousel-image-map{position:relative;margin:-20px -20px 20px;border-bottom:1px solid rgba(255,255,255,.17);height:154px}.jp-carousel-image-map img.gmap-main{border-top-right-radius:6px;border-left:1px solid rgba(255,255,255,.17)}.jp-carousel-image-map div.gmap-topright{width:94px;height:154px;position:absolute;top:0;left:0}.jp-carousel-image-map div.imgclip{overflow:hidden;border-top-left-radius:6px}.jp-carousel-image-map div.gmap-topright img{margin-right:-40px}.jp-carousel-image-map img.gmap-bottomright{position:absolute;top:96px;left:0}.jp-carousel-comments{font:15px/1.7 "Helvetica Neue",sans-serif!important;font-weight:400;background:none}.jp-carousel-comments p a:active,.jp-carousel-comments p a:focus,.jp-carousel-comments p a:hover{color:#68c9e8!important}.jp-carousel-comment{background:none;color:#999;margin-bottom:20px;clear:right;overflow:auto;width:100%}.jp-carousel-comment p{color:#999!important}.jp-carousel-comment .comment-author{font-size:13px;font-weight:400;padding:0;width:auto;display:inline;float:none;border:none;margin:0}.jp-carousel-comment .comment-author a{color:#fff}.jp-carousel-comment .comment-gravatar{float:right}.jp-carousel-comment .comment-content{border:none;margin-right:85px;padding:0}.jp-carousel-comment .avatar{margin:0 0 0 20px;border-radius:4px;border:none!important;padding:0!important;background-color:transparent!important}.jp-carousel-comment .comment-date{color:#999;margin-top:4px;font-size:11px;display:inline;float:left}#jp-carousel-comment-form{margin:0 0 10px!important;float:right;width:100%}textarea#jp-carousel-comment-form-comment-field{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:15px/1.4 "Helvetica Neue",sans-serif!important;width:100%;padding:10px 10px 5px;margin:0;float:none;height:147px;box-shadow:inset 2px 2px 2px rgba(0,0,0,.2);border-radius:3px;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#555}textarea#jp-carousel-comment-form-comment-field:focus{background:#ccc;color:#222}textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#aaa}#jp-carousel-comment-form-spinner{color:#fff;margin:22px 10px 0 0;display:block;width:20px;height:20px;float:right}#jp-carousel-comment-form-submit-and-info-wrapper{display:none;overflow:hidden;width:100%}#jp-carousel-comment-form-commenting-as input{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:13px/1.4 "Helvetica Neue",sans-serif!important;padding:3px 6px;float:right;box-shadow:inset 2px 2px 2px rgba(0,0,0,.2);border-radius:2px;width:285px}#jp-carousel-comment-form-commenting-as input:focus{background:#ccc;color:#222}#jp-carousel-comment-form-commenting-as p{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:22px 0 0;float:right}#jp-carousel-comment-form-commenting-as fieldset{float:right;border:none;margin:20px 0 0;padding:0;clear:both}#jp-carousel-comment-form-commenting-as label{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:0 0 3px 20px;float:right;width:100px}#jp-carousel-comment-form-button-submit{margin-top:20px;float:left}#jp-carousel-comment-form-container,#js-carousel-comment-form-container{margin-bottom:15px;overflow:auto;width:100%}#jp-carousel-comment-post-results{display:none;overflow:auto;width:100%}#jp-carousel-comment-post-results span{display:block;text-align:center;margin-top:20px;width:100%;overflow:auto;padding:1em 0;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(0,0,0,.7);border-radius:2px;font:13px/1.4 "Helvetica Neue",sans-serif!important;border:1px solid rgba(255,255,255,.17);box-shadow:inset 0 0 5px 5px rgba(0,0,0,1)}.jp-carousel-comment-post-error{color:#DF4926}#jp-carousel-comments-closed{display:none;color:#999}#jp-carousel-comments-loading{font:444 15px/1.7 "Helvetica Neue",sans-serif!important;display:none;color:#999;text-align:right;margin-bottom:20px}.jp-carousel-light .jp-carousel-overlay{background:#fff}.jp-carousel-light .jp-carousel-next-button:hover span,.jp-carousel-light .jp-carousel-previous-button:hover span{opacity:.8}.jp-carousel-light .jp-carousel-close-hint:hover,.jp-carousel-light .jp-carousel-titleanddesc div{color:#000!important}.jp-carousel-light .jp-carousel-comment .comment-author a,.jp-carousel-light .jp-carousel-comments p a,.jp-carousel-light .jp-carousel-info h2 a,.jp-carousel-light .jp-carousel-titleanddesc p a{color:#1e8cbe!important}.jp-carousel-light .jp-carousel-comment .comment-author a:hover,.jp-carousel-light .jp-carousel-comments p a:hover,.jp-carousel-light .jp-carousel-info h2 a:hover,.jp-carousel-light .jp-carousel-titleanddesc p a:hover{color:#f1831e!important}.jp-carousel-light .jp-carousel-comment,.jp-carousel-light .jp-carousel-comment p,.jp-carousel-light .jp-carousel-info h2,.jp-carousel-light .jp-carousel-titleanddesc,.jp-carousel-light .jp-carousel-titleanddesc p,.jp-carousel-light .jp-carousel-titleanddesc p b,.jp-carousel-light .jp-carousel-titleanddesc p em,.jp-carousel-light .jp-carousel-titleanddesc p i,.jp-carousel-light .jp-carousel-titleanddesc p strong,.jp-carousel-light div.jp-carousel-buttons a{color:#666}.jp-carousel-light .jp-carousel-buttons{border-bottom-color:#f0f0f0;background:#f5f5f5}.jp-carousel-light div.jp-carousel-buttons a:hover{text-decoration:none;color:#f1831e}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:4px -56px;padding-right:24px!important}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like.liked,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#2ea2cc;color:#fff}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -176px}.rtl .jp-carousel-light div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:100% -176px}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like:hover{background-position:5px -15px;padding-right:23px!important}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-position:5px -36px}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like.liked{background-position:5px 5px}.jp-carousel-light div#carousel-reblog-box{background:#eee;background:-webkit-gradient(linear,right bottom,right top,from(#ececec),to(#f7f7f7));box-shadow:0 2px 10px rgba(0,0,0,.1);border:1px solid #ddd}.jp-carousel-light #carousel-reblog-box textarea{color:#666;border:1px solid #cfcfcf;background:#fff}.jp-carousel-light #carousel-reblog-box .canceltext{color:#888}.jp-carousel-light #carousel-reblog-box .canceltext a{color:#666}.jp-carousel-light #carousel-reblog-box select{background:#eee;color:#333;border:1px solid #aaa}#jp-carousel-comment-form-button-submit,.jp-carousel-light #carousel-reblog-box input#carousel-reblog-submit{color:#333;background:#fff;background:-webkit-gradient(linear,right bottom,right top,from(#ddd),to(#fff));border:1px solid #aaa}.jp-carousel-light .jp-carousel-image-meta{background:#fafafa;border:1px solid #eee;border-top-color:#f5f5f5;border-right-color:#f5f5f5;color:#333}.jp-carousel-light .jp-carousel-image-meta li{color:#000!important}.jp-carousel-light .jp-carousel-close-hint{color:#ccc}.jp-carousel-light .jp-carousel-close-hint span{background-color:#fff;border-color:#ccc}.jp-carousel-light #jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#aaa}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus{color:#333}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#ddd}.jp-carousel-light a.jp-carousel-image-download{background-position:0 -122px}.rtl .jp-carousel-light a.jp-carousel-image-download{background-position:100% -122px}.jp-carousel-light a.jp-carousel-image-download:hover{background-position:0 -122px;color:#f1831e}.rtl .jp-carousel-light a.jp-carousel-image-download:hover{background-position:100% -122px}.jp-carousel-light textarea#jp-carousel-comment-form-comment-field{background:#fbfbfb;color:#333;border:1px solid #dfdfdf;box-shadow:inset 2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input{background:#fbfbfb;border:1px solid #dfdfdf;color:#333;box-shadow:inset 2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input:focus{background:#fbfbfb;color:#333}.jp-carousel-light #jp-carousel-comment-post-results span{background:#f7f7f7;border:1px solid #dfdfdf;box-shadow:inset 0 0 5px rgba(0,0,0,.05)}.jp-carousel-light .jp-carousel-slide{background-color:#fff}.jp-carousel-light .jp-carousel-titleanddesc{border-top:1px solid #eee}.jp-carousel-light .jp-carousel-fadeaway{background:-webkit-gradient(linear,right bottom,right top,from(rgba(255,255,255,.75)),to(rgba(255,255,255,0)))}@media only screen and (max-width:760px){.jp-carousel-info{margin:0 10px!important}.jp-carousel-buttons,.jp-carousel-next-button,.jp-carousel-previous-button{display:none!important}.jp-carousel-image-meta{float:none!important;width:100%!important;-moz-box-sizing:border-box;box-sizing:border-box}.jp-carousel-close-hint{font-weight:800!important;font-size:26px!important;position:fixed!important;top:-10px}.jp-carousel-slide img{filter:alpha(opacity=100);opacity:1}.jp-carousel-wrap{background-color:#000}.jp-carousel-fadeaway{display:none}#jp-carousel-comment-form-container{display:none!important}.jp-carousel-titleanddesc{padding-top:0!important;border:none!important}.jp-carousel-titleanddesc-title{font-size:1em!important}.jp-carousel-left-column-wrapper{padding:0;width:100%!important}.jp-carousel-photo-info{right:0!important;width:100%!important}}.contact-form .clear-form{clear:both}.contact-form input[type=email],.contact-form input[type=text]{width:300px;max-width:98%;margin-bottom:13px}.contact-form select{margin-bottom:13px}.contact-form textarea{height:200px;width:80%;float:none;margin-bottom:13px}.contact-form input[type=checkbox],.contact-form input[type=radio]{float:none;margin-bottom:13px}.contact-form label{margin-bottom:3px;float:none;font-weight:700;display:block}.contact-form label.checkbox,.contact-form label.radio{margin-bottom:3px;float:none;font-weight:700;display:inline-block}.contact-form label span{color:#AAA;margin-right:4px;font-weight:400}.form-errors .form-error-message{color:red}.textwidget .contact-form input[type=email],.textwidget .contact-form input[type=text],.textwidget .contact-form textarea{width:250px;max-width:100%;-moz-box-sizing:border-box;box-sizing:border-box}.infinite-loader{color:#000;display:block;height:28px;text-indent:-9999px}#infinite-handle span{background:#333;border-radius:1px;color:#eee;cursor:pointer;font-size:13px;padding:6px 16px}@media (max-width:800px){#infinite-handle span:before{display:none}#infinite-handle span{display:block}}#infinite-footer{position:fixed;bottom:-50px;right:0;width:100%}#infinite-footer a{text-decoration:none}#infinite-footer .blog-credits a:hover,#infinite-footer .blog-info a:hover{color:#444;text-decoration:underline}#infinite-footer .container{background:rgba(255,255,255,.8);border-color:#ccc;border-color:rgba(0,0,0,.1);border-style:solid;border-width:1px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 auto;overflow:hidden;padding:1px 20px;width:780px}#infinite-footer .blog-credits,#infinite-footer .blog-info{-moz-box-sizing:border-box;box-sizing:border-box;line-height:25px}#infinite-footer .blog-info{float:right;overflow:hidden;text-align:right;text-overflow:ellipsis;white-space:nowrap;width:40%}#infinite-footer .blog-credits{font-weight:400;float:left;width:60%}#infinite-footer .blog-info a{color:#111;font-size:14px;font-weight:700}#infinite-footer .blog-credits{color:#888;font-size:12px;text-align:left}#infinite-footer .blog-credits a{color:#666}.infinity-end.neverending #infinite-footer{display:none}@media (max-width:640px){#infinite-footer .container{-moz-box-sizing:border-box;box-sizing:border-box;width:100%}#infinite-footer .blog-info{width:30%}#infinite-footer .blog-credits{width:70%}#infinite-footer .blog-credits,#infinite-footer .blog-info a{font-size:10px}}@media (max-width:640px){#infinite-footer{position:static}}#wpadminbar li#wp-admin-bar-admin-bar-likes-widget{width:61px;overflow:hidden}#wpadminbar iframe.admin-bar-likes-widget{width:61px;height:28px;min-height:28px;border-width:0;position:absolute;top:0}div.jetpack-likes-widget-wrapper{width:100%;min-height:50px;position:relative}div.jetpack-likes-widget-wrapper .sd-link-color{font-size:12px}div.jetpack-likes-widget-wrapper.slim-likes-widget{width:1px;min-height:0}#likes-other-gravatars{display:none;position:absolute;padding:10px;background-color:#000;border-width:0;opacity:.88;filter:alpha(opacity=88);box-shadow:0 0 10px #000;min-width:130px;z-index:1000}#likes-other-gravatars *{line-height:normal}#likes-other-gravatars .likes-text{color:#fff;font-size:14px;padding-bottom:5px}#likes-other-gravatars li,#likes-other-gravatars ul{margin:0;padding:0;text-indent:0;list-style-type:none}#likes-other-gravatars li::before{content:""}#likes-other-gravatars ul.wpl-avatars{overflow:auto;display:block;position:absolute;max-height:190px}#likes-other-gravatars ul.wpl-avatars li{width:32px;height:32px;float:right;margin:0 0 5px 5px}#likes-other-gravatars ul.wpl-avatars li a{margin:0 0 0 2px;border-bottom:none!important;display:block}#likes-other-gravatars ul.wpl-avatars li a img{background:0 0;border:none;margin:0!important;padding:0!important;position:static}div.sd-box{border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.13)}.comment-likes-widget,.entry-content .post-likes-widget,.post-likes-widget{margin:0;border-width:0;display:block}.post-likes-widget-placeholder{margin:0;border-width:0;position:relative}.post-likes-widget-placeholder .button{display:none}.post-likes-widget-placeholder .loading{color:#999;font-size:12px}.slim-likes-widget .post-likes-widget{width:auto;float:none}div.sharedaddy.sd-like-enabled .sd-like h3{display:none}div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget{width:100%;float:none;position:absolute;top:0}.comment-likes-widget{width:100%}.pd-rating{display:block!important}.sd-gplus .sd-title{display:none}div#jp-relatedposts{display:none;padding-top:1em;margin:1em 0;position:relative}div.jp-relatedposts:after{content:'';display:block;clear:both}div#jp-relatedposts h3.jp-relatedposts-headline{margin:0 0 1em;display:inline-block;float:right;font-size:9pt;font-weight:700;font-family:inherit}div#jp-relatedposts h3.jp-relatedposts-headline em:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.2);margin-bottom:1em}div#jp-relatedposts h3.jp-relatedposts-headline em{font-style:normal;font-weight:700}div#jp-relatedposts div.jp-relatedposts-items{clear:right}div#jp-relatedposts div.jp-relatedposts-items-visual{margin-left:-20px}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post{float:right;width:33%;margin:0 0 1em;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}div#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post{padding-left:20px;filter:alpha(opacity=80);-moz-opacity:.8;opacity:.8}div#jp-relatedposts div.jp-relatedposts-items div.jp-relatedposts-post:hover .jp-relatedposts-post-title a{text-decoration:underline}div#jp-relatedposts div.jp-relatedposts-items div.jp-relatedposts-post:hover{filter:alpha(opacity=100);-moz-opacity:1;opacity:1}div#jp-relatedposts div.jp-relatedposts-items p,div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title{font-size:14px;line-height:20px;margin:0}div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-nothumbs{position:relative}div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay{position:absolute;top:0;bottom:0;right:0;left:0;display:block}div#jp-relatedposts div.jp-relatedposts-items p{margin-bottom:0}div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title{text-transform:none;margin:0;font-family:inherit;display:block;max-width:100%}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a{font-size:inherit;font-weight:400;text-decoration:none;filter:alpha(opacity=100);-moz-opacity:1;opacity:1}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover{text-decoration:underline}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post span{display:block;max-width:90%;overflow:hidden;text-overflow:ellipsis}div#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img,div#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post span{max-width:100%}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context,div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{opacity:.6}.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date,div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt{display:none}div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt{overflow:hidden}div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-nothumbs span{margin-bottom:1em}@media only screen and (max-width:640px){div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post{width:50%}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:nth-child(3n){clear:right}div#jp-relatedposts div.jp-relatedposts-items-visual{margin-left:20px}}@media only screen and (max-width:320px){div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post{width:100%;clear:both;margin:0 0 1em}}#jp-post-flair{padding-top:.5em}#content div.sharedaddy,#main div.sharedaddy,div.sharedaddy{clear:both}div.sharedaddy h3.sd-title{margin:0 0 1em;display:inline-block;line-height:1.2;font-size:9pt;font-weight:700}div.sharedaddy h3.sd-title:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;margin-bottom:1em}body.highlander-light h3.sd-title:before{border-top:1px solid rgba(0,0,0,.2)}body.highlander-dark h3.sd-title:before{border-top:1px solid rgba(255,255,255,.4)}.sd-content ul{padding:0!important;margin:0 0 .7em!important;list-style:none!important}.sd-content ul li{display:inline}.sd-block.sd-gplus{margin:0 0 .5em}.sd-gplus .sd-content{font-size:12px}#sharing_email .sharing_send,.sd-content ul li .option a.share-ustom,.sd-content ul li a.sd-button,.sd-content ul li.advanced a.share-more,.sd-content ul li.preview-item div.option.option-smart-off a,.sd-social-icon .sd-content ul li a.sd-button,.sd-social-icon-text .sd-content ul li a.sd-button,.sd-social-official .sd-content>ul>li .digg_button >a,.sd-social-official .sd-content>ul>li>a.sd-button,.sd-social-text .sd-content ul li a.sd-button{text-decoration:none!important;display:inline-block;margin:0 0 5px 5px;font-size:12px;font-family:"Open Sans",sans-serif;font-weight:400;border-radius:3px;color:#777!important;background:#f8f8f8;border:1px solid #ccc;box-shadow:0 1px 0 rgba(0,0,0,.08);text-shadow:none;line-height:23px;padding:1px 5px 0 8px}.sd-content ul li .option a.share-ustom span,.sd-content ul li a.sd-button>span,.sd-content ul li.advanced a.share-more span,.sd-content ul li.preview-item div.option.option-smart-off a span,.sd-social-icon-text .sd-content ul li a.sd-button>span,.sd-social-official .sd-content>ul>li .digg_button >a span,.sd-social-official .sd-content>ul>li>a.sd-button span,.sd-social-text .sd-content ul li a.sd-button span{line-height:23px}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button,.sd-social-official .sd-content>ul>li .digg_button>a,.sd-social-official .sd-content>ul>li>a.sd-button{line-height:17px;box-shadow:none;vertical-align:top}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a:before,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button:before,.sd-social-official .sd-content>ul>li .digg_button>a:before,.sd-social-official .sd-content>ul>li>a.sd-button:before{margin-bottom:-1px;top:0}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon .sd-content ul li a.sd-button:hover,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:hover,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li .digg_button>a:hover,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-official .sd-content>ul>li>a.sd-button:hover,.sd-social-text .sd-content ul li a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:hover{color:#555;background:#fafafa;border:1px solid #999}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:active{box-shadow:inset 0 1px 0 rgba(0,0,0,.16)}.sd-content ul li a.sd-button:before{display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font:400 16px/1 Genericons;vertical-align:top;position:relative;top:3px;text-align:center}.sd-content ul li{margin:0!important;padding:0}.sd-content ul li.preview-item a.sd-button span,.sd-social-icon-text .sd-content ul li a span,.sd-social-official .sd-content ul li a.sd-button span{margin-right:3px}.sd-content ul li.preview-item.no-icon a.sd-button span{margin-right:0}.sd-content ul li.no-icon a:before,.sd-social-text .sd-content ul li a:before{display:none}body .sd-content ul li.share-custom.no-icon a span,body .sd-social-text .sd-content ul li.share-custom a span{background-image:none;background-position:-500px -500px!important;background-repeat:no-repeat!important;padding-right:0;height:0;line-height:inherit}.sd-social-icon .sd-content ul li a.share-more{position:relative;top:2px}.sd-social-icon .sd-content ul li a.share-more span{margin-right:3px}.sd-content ul li.share-print div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-print a:before,.sd-social-icon-text .sd-content li.share-print a:before,.sd-social-official .sd-content li.share-print a:before,.sd-social-text .sd-content ul li.share-print a:before{content:'\f469'}.sd-content ul li.share-email div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-email a:before,.sd-social-icon-text .sd-content li.share-email a:before,.sd-social-official .sd-content li.share-email a:before,.sd-social-text .sd-content ul li.share-email a:before{content:'\f410'}.sd-content ul li.share-linkedin div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-linkedin a:before,.sd-social-icon-text .sd-content li.share-linkedin a:before,.sd-social-text .sd-content ul li.share-linkedin a:before{content:'\f207'}.sd-content ul li.share-twitter div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-twitter a:before,.sd-social-icon-text .sd-content li.share-twitter a:before,.sd-social-text .sd-content ul li.share-twitter a:before{content:'\f202'}.sd-content ul li.share-reddit div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-reddit a:before,.sd-social-icon-text .sd-content li.share-reddit a:before,.sd-social-text .sd-content ul li.share-reddit a:before{content:'\f222'}.sd-content ul li.share-tumblr div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-tumblr a:before,.sd-social-icon-text .sd-content li.share-tumblr a:before,.sd-social-text .sd-content ul li.share-tumblr a:before{content:'\f214'}.sd-content ul li.share-stumbleupon div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-stumbleupon a:before,.sd-social-icon-text .sd-content li.share-stumbleupon a:before,.sd-social-text .sd-content ul li.share-stumbleupon a:before{content:'\f223'}.sd-content ul li.share-pocket div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pocket a:before,.sd-social-icon-text .sd-content li.share-pocket a:before,.sd-social-text .sd-content ul li.share-pocket a:before{content:'\f224'}.sd-content ul li.share-pinterest div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pinterest a:before,.sd-social-icon-text .sd-content li.share-pinterest a:before,.sd-social-text .sd-content ul li.share-pinterest a:before{content:'\f209'}.sd-content ul li.share-google-plus-1 div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-google-plus-1 a:before,.sd-social-icon-text .sd-content li.share-google-plus-1 a:before,.sd-social-text .sd-content ul li.share-google-plus-1 a:before{content:'\f218'}.sd-content ul li.share-facebook div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-facebook a:before,.sd-social-icon-text .sd-content li.share-facebook a:before,.sd-social-text .sd-content ul li.share-facebook a:before{content:'\f204'}.sd-content ul li.share-press-this div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-press-this a:before,.sd-social-icon-text .sd-content li.share-press-this a:before,.sd-social-official .sd-content li.share-press-this a:before,.sd-social-text .sd-content ul li.share-press-this a:before{content:'\f205'}.sd-social-official .sd-content li.share-press-this a:before{color:#2ba1cb}.sd-content ul li.advanced a.share-more:before,.sd-social-icon .sd-content ul a.share-more:before,.sd-social-icon-text .sd-content a.share-more:before,.sd-social-official .sd-content a.share-more:before,.sd-social-text .sd-content ul a.share-more:before{content:'\f415'}.sd-social-official .sd-content a.share-more:before{color:#2ba1cb}.sd-social .sd-button .share-count{background:#2ea2cc;color:#fff;border-radius:10px;display:inline-block;text-align:center;font-size:10px;padding:1px 3px;line-height:1}.sd-social-official .sd-content ul,.sd-social-official .sd-content ul li{line-height:25px!important}.sd-social-official .sd-content>ul>li>a.sd-button span{line-height:1}.sd-social-official .sd-content ul:after{content:".";display:block;height:0;clear:both;visibility:hidden}.sd-social-official .sd-content li.share-press-this a{margin:0 0 5px}.sd-social-official .sd-content ul>li{display:block;float:right;margin:0 0 5px 10px!important;height:25px}.sd-social-official .sd-content .pocket_button iframe{width:98px}.sd-social-official .sd-content .twitter_button iframe{width:96px}.reddit_button iframe,.stumbleupon_button iframe{margin-top:1px}.googleplus1_button iframe,.like_button iframe,.linkedin_button>span,.pinterest_button,.pocket_button iframe,.twitter_button{margin:0!important}body .sd-social-official li a.share-more,body .sd-social-official li.share-custom a,body .sd-social-official li.share-digg a,body .sd-social-official li.share-email a,body .sd-social-official li.share-press-this a,body .sd-social-official li.share-print{position:relative;top:0}body .sd-social-icon .sd-content li.share-custom>a{padding:2px 3px 0;position:relative;top:4px}body .sd-content ul li.share-custom a.share-icon span,body .sd-social-icon .sd-content li.share-custom a span,body .sd-social-icon-text .sd-content li.share-custom a span,body .sd-social-official .sd-content li.share-custom a span,body .sd-social-text .sd-content li.share-custom a span{background-size:16px 16px;background-repeat:no-repeat;margin-right:0;padding:0 19px 0 0;display:inline-block;height:16px;line-height:16px}body .sd-social-icon .sd-content li.share-custom a span{width:0}body .sd-social-icon .sd-content li.share-custom a span{padding-right:16px!important}.sharing-hidden .inner{position:absolute;z-index:2;border:1px solid #ccc;padding:10px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);border-radius:2px;margin-top:5px;max-width:400px}.sharing-hidden .inner ul{margin:0!important}.sd-social-official .sd-content .sharing-hidden ul>li.share-end{clear:both;margin:0;height:0}.sharing-hidden .inner:after,.sharing-hidden .inner:before{position:absolute;z-index:1;top:-8px;right:20px;width:0;height:0;border-right:6px solid transparent;border-left:6px solid transparent;border-bottom:8px solid #ccc;content:"";display:block}.sharing-hidden .inner:after{z-index:2;top:-7px;border-right:6px solid transparent;border-left:6px solid transparent;border-bottom:8px solid #fff}.sharing-hidden ul{margin:0}.sd-social-icon .sd-content ul li[class*=share-] a,.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a{border-radius:50%;-webkit-border-radius:50%;border:0;box-shadow:none;padding:8px;position:relative;top:-2px;line-height:1;width:auto;height:auto;margin-bottom:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button>span,.sd-social-icon .sd-content ul li[class*=share-] div.option a span{line-height:1}.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a:hover{border:none;opacity:.6}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button:before{top:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button.share-custom{padding:8px 8px 6px;top:5px}.sd-social-icon .sd-content ul li a.sd-button.share-more{margin-right:10px}.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more{margin-right:0}.sd-social-icon .sd-button span.share-count{position:absolute;bottom:0;left:0;border-radius:0;background:#555;font-size:9px}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button{background:#e9e9e9;margin-top:2px;text-indent:0}.sd-social-icon .sd-content ul li[class*=share-].share-tumblr a.sd-button{background:#2c4762;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-facebook a.sd-button{background:#3b5998;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-stumbleupon a.sd-button{background:#ea4b24;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-twitter a.sd-button{background:#00acee;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pinterest a.sd-button{background:#ca1f27;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-digg a.sd-button{color:#555!important}.sd-social-icon .sd-content ul li[class*=share-].share-press-this a.sd-button{background:#1e8cbe;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-linkedin a.sd-button{background:#0077b5;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-google-plus-1 a.sd-button{background:#dd4b39;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pocket a.sd-button{background:#ee4056;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-reddit a.sd-button{background:#cee3f8;color:#555!important}.sharing-screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.sharing-screen-reader-text:active,.sharing-screen-reader-text:focus,.sharing-screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#sharing_email{width:342px;position:absolute;z-index:1001;border:1px solid #ccc;padding:15px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);text-align:right}div.sharedaddy.sharedaddy-dark #sharing_email{border-color:#fff}#sharing_email .errors{color:#fff;background-color:#771a09;font-size:12px;padding:5px 8px;line-height:1;margin:10px 0 0}#sharing_email label{font-size:12px;color:#333;font-weight:700;display:block;padding:0 0 4px;text-align:right;text-shadow:none}#sharing_email form{margin:0}#sharing_email input[type=email],#sharing_email input[type=text]{width:100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;border:1px solid #ccc;margin-bottom:1em;background:#fff;font-size:12px;color:#333;max-width:none;padding:1px 3px}#sharing_email .sharing_cancel{padding:0 1em 0 0;font-size:12px;text-shadow:none}#sharing_email .recaptcha{width:312px;height:123px;margin:0 0 1em}.slideshow-window{background-color:#222;border:20px solid #222;border-radius:11px;-moz-border-radius:11px;-webkit-border-radius:11px;-khtml-border-radius:11px;margin-bottom:20px;height:410px;z-index:1}.slideshow-window.slideshow-white{background-color:#fff;border-color:#fff}.slideshow-window,.slideshow-window *{-moz-box-sizing:content-box;box-sizing:content-box}.slideshow-loading{height:100%;text-align:center;margin:auto}body div.slideshow-window * img{border-width:0!important;margin-left:auto!important;margin-right:auto!important;padding:0!important;background-color:transparent!important;background-image:none!important;max-width:100%}.slideshow-loading img{vertical-align:middle}.slideshow-slide{height:100%;width:100%;text-align:center;margin:auto;display:none}.slideshow-slide img{vertical-align:middle}.slideshow-line-height-hack{overflow:hidden;width:0;font-size:0}.slideshow-slide-caption{font-size:13px;font-family:"Helvetica Neue",sans-serif;color:#f7f7f7;text-shadow:#222 1px 1px 2px;line-height:25px;height:25px;position:absolute;bottom:5px;right:0;z-index:100;width:100%;text-align:center}.slideshow-controls{z-index:1000;position:absolute;bottom:30px;margin:auto;text-align:center;width:100%;-ms-filter:"alpha(Opacity=50)";opacity:.5;direction:rtl}body div div.slideshow-controls a,body div div.slideshow-controls a:hover{border:2px solid rgba(255,255,255,.1)!important;background-color:#000!important;background-color:rgba(0,0,0,.6)!important;background-image:url(../modules/shortcodes/img/slideshow-controls.png)!important;background-repeat:no-repeat;background-size:142px 16px!important;background-position:-34px 8px!important;color:#222!important;margin:0 5px!important;padding:0!important;display:inline-block!important;zoom:1;height:32px!important;width:32px!important;line-height:32px!important;text-align:center!important;-khtml-border-radius:10em!important;border-radius:10em!important;-webkit-transition:300ms border-color ease-out;transition:300ms border-color ease-out}@media only screen and (-webkit-min-device-pixel-ratio:1.5){body div div.slideshow-controls a,body div div.slideshow-controls a:hover{background-image:url(../modules/shortcodes/img/slideshow-controls-2x.png)!important}}body div div.slideshow-controls a:hover{border-color:rgba(255,255,255,1)!important}body div div.slideshow-controls a:first-child{background-position:-76px 8px!important}body div div.slideshow-controls a:last-child{background-position:-117px 8px!important}body div div.slideshow-controls a.running,body div div.slideshow-controls a:nth-child(2){background-position:-34px 8px!important}body div div.slideshow-controls a.paused{background-position:9px 8px!important}.slideshow-controls a img{border:50px dotted #f0f}body.presentation-wrapper-fullscreen-parent,html.presentation-wrapper-fullscreen-parent{overflow:hidden!important}.presentation-wrapper-fullscreen-parent #wpadminbar{display:none}.presentation-wrapper-fullscreen,.presentation-wrapper-fullscreen-parent{min-width:100%!important;min-height:100%!important;position:absolute!important;top:0!important;left:0!important;bottom:0!important;right:0!important;margin:0!important;padding:0!important;z-index:10000!important}.presentation-wrapper-fullscreen{background-color:gray;border:none!important}.presentation-wrapper-fullscreen .nav-arrow-left,.presentation-wrapper-fullscreen .nav-arrow-right{z-index:20001}.presentation-wrapper-fullscreen .nav-fullscreen-button{z-index:20002}.presentation-wrapper{margin:20px auto;border:1px solid #e5e5e5;overflow:hidden;line-height:normal}.presentation{position:relative;margin:0;overflow:hidden;outline:0}.presentation,.presentation .step{background-repeat:no-repeat;background-position:center;background-size:100% 100%}.presentation .step.fade:not(.active){opacity:0}.presentation .slide-content{padding:30px}.presentation .nav-arrow-left,.presentation .nav-arrow-right,.presentation .nav-fullscreen-button{position:absolute;width:34px;background-repeat:no-repeat;z-index:2;opacity:0;-webkit-transition:opacity .25s;transition:opacity .25s}.presentation .nav-arrow-left,.presentation .nav-arrow-right{height:100%;background-image:url(../modules/shortcodes/images/slide-nav.png);background-size:450% 61px}.presentation .nav-arrow-left{right:0;background-position:4px 50%}.presentation .nav-arrow-right{left:0;background-position:-120px 50%}.presentation .nav-fullscreen-button{width:32px;height:32px;margin:4px;bottom:0;left:0;z-index:3;background-image:url(../modules/shortcodes/images/expand.png);background-size:100% 100%}.presentation:hover .nav-arrow-left,.presentation:hover .nav-arrow-right{opacity:1}.presentation:hover .nav-fullscreen-button{opacity:.8}.presentation-wrapper-fullscreen .nav-fullscreen-button{background-image:url(../modules/shortcodes/images/collapse.png)}.presentation .autoplay-overlay{height:15%;width:80%;margin:30% 10%;position:relative;z-index:100;display:table;border-radius:50px;background-color:#e5e5e5;background-color:rgba(0,0,0,.75);-webkit-transition:opacity .5s;transition:opacity .5s}.presentation .autoplay-overlay .overlay-msg{position:relative;display:table-cell;text-align:center;vertical-align:middle;color:#fff}.presentation .will-fade{opacity:0}.presentation .do-fade{opacity:1;-webkit-transition:opacity .5s;transition:opacity .5s}#subscribe-email input{width:95%;padding:1px 2px}.comment-subscription-form .subscribe-label{display:inline!important}.tiled-gallery{clear:both;margin:0 0 20px;overflow:hidden}.tiled-gallery img{margin:2px!important}.tiled-gallery .gallery-group{float:right;position:relative}.tiled-gallery .tiled-gallery-item{float:right;margin:0;position:relative;width:inherit}.tiled-gallery .gallery-row{overflow:hidden}.tiled-gallery .tiled-gallery-item a{background:0 0;border:none;color:none;margin:0;padding:0;text-decoration:none;width:auto}.tiled-gallery .tiled-gallery-item img,.tiled-gallery .tiled-gallery-item img:hover{background:0 0;border:none;box-shadow:none;max-width:100%;padding:0;vertical-align:middle}.tiled-gallery-caption{background:#eee;background:rgba(255,255,255,.8);color:#333;font-size:13px;font-weight:400;overflow:hidden;padding:10px 0;position:absolute;bottom:0;text-indent:10px;text-overflow:ellipsis;width:100%;white-space:nowrap}.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption{font-size:11px}.widget-gallery .tiled-gallery-unresized{visibility:hidden;height:0;overflow:hidden}.tiled-gallery .tiled-gallery-item img.grayscale{position:absolute;right:0;top:0}.tiled-gallery .tiled-gallery-item img.grayscale:hover{opacity:0}.tiled-gallery.type-circle .tiled-gallery-item img{border-radius:.tiled-gallery-caption{display:none 50%!important}.tiled-gallery.type-circle;opacity:0}.jetpack-display-remote-posts{margin:5px 0 20px}.jetpack-display-remote-posts h4{font-size:90%;margin:5px 0;padding:0}.jetpack-display-remote-posts h4 a{text-decoration:none}.jetpack-display-remote-posts p{margin:0!important;padding:0;line-height:1.4em!important;font-size:90%}.jetpack-display-remote-posts img{max-width:100%}.widget-grofile h4{margin:1em 0 .5em}.widget-grofile ul.grofile-urls{margin-right:0;overflow:hidden}.widget-grofile ul.grofile-accounts li{list-style:none;display:inline}.widget-grofile ul.grofile-accounts li::before{content:""!important}.widget-grofile .grofile-accounts-logo{background-image:url(//0.gravatar.com/images/grav-share-sprite.png);background-repeat:no-repeat;width:16px;height:16px;float:right;margin-left:8px;margin-bottom:8px}.rtl .widget-grofile .grofile-accounts-logo{margin-right:8px;margin-left:0}.grofile-thumbnail{width:500px;max-width:100%}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.widget-grofile .grofile-accounts-logo{background-image:url(//0.gravatar.com/images/grav-share-sprite-2x.png);background-size:16px 784px}}.widgets-grid-layout{width:100%}.widgets-grid-layout:after,.widgets-grid-layout:before{content:" ";display:table}.widgets-grid-layout:after{clear:both}.widget-grid-view-image{float:right;max-width:50%}.widget-grid-view-image a{display:block;margin:0 0 4px 2px}.widget-grid-view-image:image:nth-child(even){float:left}.widget-grid-view-image:nth-child(even) a{margin:0 2px 4px 0}.widgets-grid-layout .widget-grid-view-image img{max-width:100%;height:auto}.widgets-multi-column-grid ul{overflow:hidden;padding:0;margin:0;list-style-type:none}.widgets-multi-column-grid ul li{background:0 0;clear:none;float:right;margin:0 0 -3px -5px;padding:0 0 6px 8px;border:none;list-style-type:none!important}.widgets-multi-column-grid ul li a{background:0 0;margin:0;padding:0;border:0}.widgets-multi-column-grid .avatar{vertical-align:middle}.widgets-list-layout{padding:0;margin:0;list-style-type:none}.widgets-list-layout li:after,.widgets-list-layout li:before{content:"";display:table}.widgets-list-layout li:after{clear:both}.widgets-list-layout li{zoom:1;margin-bottom:1em;list-style-type:none!important}.widgets-list-layout .widgets-list-layout-blavatar{float:right;width:21.276596%;max-width:40px;height:auto}.widgets-list-layout-links{float:left;width:73.404255%}.widgets-list-layout span{opacity:.5}.widgets-list-layout span:hover{opacity:.8}4 .jp-carousel-wrap *{line-height:inherit}.jp-carousel-overlay{background:#000}div.jp-carousel-fadeaway{background:-webkit-gradient(linear,right bottom,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));position:fixed;bottom:0;z-index:2147483647;width:100%;height:15px}.jp-carousel-next-button span,.jp-carousel-previous-button span{background:url(../modules/carousel/images/arrows.png) center center/200px 126px no-repeat}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.jp-carousel-next-button span,.jp-carousel-previous-button span{background-image:url(../modules/carousel/images/arrows-2x.png)}}.jp-carousel-wrap{font-family:"Helvetica Neue",sans-serif!important}.jp-carousel-info{position:absolute;bottom:0;text-align:right!important;-webkit-font-smoothing:subpixel-antialiased!important}.jp-carousel-info ::selection{background:#68c9e8;color:#fff}.jp-carousel-info ::-moz-selection{background:#68c9e8;color:#fff}.jp-carousel-photo-info{position:relative;right:25%;width:50%}.jp-carousel-transitions .jp-carousel-photo-info{-webkit-transition:400ms ease-out;transition:400ms ease-out}.jp-carousel-info h2{background:none!important;border:none!important;color:#999;display:block!important;font:400 13px/1.25em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;margin:7px 0 0!important;padding:10px 0 0!important;overflow:hidden;text-align:right;text-shadow:none!important;text-transform:none!important;-webkit-font-smoothing:subpixel-antialiased}.jp-carousel-next-button,.jp-carousel-previous-button{text-indent:-9999px;overflow:hidden;cursor:pointer}.jp-carousel-next-button span,.jp-carousel-previous-button span{position:absolute;top:0;bottom:0;width:82px;zoom:1;filter:alpha(opacity=20);opacity:.2}.jp-carousel-transitions .jp-carousel-next-button span,.jp-carousel-transitions .jp-carousel-previous-button span{-webkit-transition:500ms opacity ease-out;transition:500ms opacity ease-out}.jp-carousel-next-button:hover span,.jp-carousel-previous-button:hover span{filter:alpha(opacity=60);opacity:.6}.jp-carousel-next-button span{background-position:-110px center;left:0}.jp-carousel-previous-button span{background-position:-10px center;right:0}.jp-carousel-buttons{margin:-18px -20px 15px;padding:8px 10px;border-bottom:1px solid #222;background:#222;text-align:center}div.jp-carousel-buttons a{border:none!important;color:#999;font:400 11px/1.2em "Helvetica Neue",sans-serif!important;letter-spacing:0!important;padding:5px 0 5px 2px;text-decoration:none!important;text-shadow:none!important;vertical-align:middle;-webkit-font-smoothing:subpixel-antialiased}div.jp-carousel-buttons a:hover{color:#68c9e8;border:none!important}.jp-carousel-transitions div.jp-carousel-buttons a:hover{-webkit-transition:none!important;transition:none!important}.jp-carousel-next-button,.jp-carousel-previous-button,.jp-carousel-slide,.jp-carousel-slide img{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.jp-carousel-slide{position:fixed;width:0;bottom:0;background-color:#000;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}.jp-carousel-slide.selected{position:absolute!important;filter:alpha(opacity=100);opacity:1}.jp-carousel-slide{filter:alpha(opacity=25);opacity:.25}.jp-carousel-slide img{display:block;width:100%!important;height:100%!important;max-width:100%!important;max-height:100%!important;background:none!important;border:none!important;padding:0!important;box-shadow:0 2px 8px rgba(0,0,0,.1);zoom:1}.jp-carousel-transitions .jp-carousel-slide{-webkit-transition:opacity 400ms linear;transition:opacity 400ms linear}.jp-carousel-close-hint{color:#999;cursor:default;letter-spacing:0!important;padding:.35em 0 0;position:absolute;text-align:right;width:90%}.jp-carousel-transitions .jp-carousel-close-hint{-webkit-transition:color 200ms linear;transition:color 200ms linear}.jp-carousel-close-hint span{cursor:pointer;background-color:#000;background-color:rgba(0,0,0,.8);display:block;height:22px;font:400 24px/1 "Helvetica Neue",sans-serif!important;line-height:22px;margin:0 .4em 0 0;text-align:center;vertical-align:middle;width:22px;border-radius:4px}.jp-carousel-transitions .jp-carousel-close-hint span{-webkit-transition:border-color 200ms linear;transition:border-color 200ms linear}.jp-carousel-close-hint:hover{cursor:default;color:#fff}.jp-carousel-close-hint:hover span{border-color:#fff}a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-like,div.jp-carousel-buttons a.jp-carousel-reblog{background:url(../modules/carousel/images/carousel-sprite.png?5) 0 0/16px 200px no-repeat}div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-reblog{margin:0 0 0 14px!important}div.jp-carousel-buttons a.jp-carousel-like.liked,div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#303030;padding-left:8px!important;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{margin:0 -12px 0 2px!important}div.jp-carousel-buttons a.jp-carousel-reblog,div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{background-position:6px -36px;padding-right:26px!important;color:#999}div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -156px;padding-right:19px!important}.rtl div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0% -156px}div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover{cursor:default}div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:6px -56px;color:#68c9e8}div.jp-carousel-buttons a.jp-carousel-like{background-position:5px 5px;padding-right:24px!important}div.jp-carousel-buttons a.jp-carousel-like:hover{background-position:5px -15px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){a.jp-carousel-image-download,div.jp-carousel-buttons a.jp-carousel-commentlink,div.jp-carousel-buttons a.jp-carousel-like,div.jp-carousel-buttons a.jp-carousel-reblog{background-image:url(../modules/carousel/images/carousel-sprite-2x.png?5)}}div#carousel-reblog-box{background:#222;background:-webkit-gradient(linear,right bottom,right top,from(#222),to(#333));padding:3px 0 0;display:none;margin:5px auto 0;border-radius:2px;box-shadow:0 0 20px rgba(0,0,0,.9);height:74px;width:565px}#carousel-reblog-box textarea{background:#999;font:13px/1.4 "Helvetica Neue",sans-serif!important;color:#444;padding:3px 6px;width:370px;height:48px;float:right;margin:6px 9px 0;border:1px solid #666;box-shadow:inset -2px 2px 2px rgba(0,0,0,.2);border-radius:2px}#carousel-reblog-box textarea:focus{background:#ccc;color:#222}#carousel-reblog-box label{color:#aaa;font-size:11px;padding-left:2px;padding-right:2px;display:inline;font-weight:400}#carousel-reblog-box select{width:110px;padding:0;font-size:12px;font-family:"Helvetica Neue",sans-serif!important;background:#333;color:#eee;border:1px solid #444;margin-top:5px}#carousel-reblog-box .submit,#wrapper #carousel-reblog-box p.response{float:right;width:154px;padding-top:0;padding-right:1px;overflow:hidden;height:34px;margin:3px 2px 0 0!important}#wrapper #carousel-reblog-box p.response{font-size:13px;clear:none;padding-right:2px;height:34px;color:#aaa}#carousel-reblog-box input#carousel-reblog-submit,#jp-carousel-comment-form-button-submit{font:13px/24px "Helvetica Neue",sans-serif!important;margin-top:8px;padding:0 10px!important;border-radius:1em;height:24px;color:#333;cursor:pointer;font-weight:400;background:#aaa;background:-webkit-gradient(linear,right bottom,right top,from(#aaa),to(#ccc));border:1px solid #444}#carousel-reblog-box input#carousel-reblog-submit:hover,#jp-carousel-comment-form-button-submit:hover{background:#ccc;background:-webkit-gradient(linear,right bottom,right top,from(#ccc),to(#eee))}#carousel-reblog-box .canceltext{color:#aaa;font-size:11px;line-height:24px}#carousel-reblog-box .canceltext a{color:#fff}.jp-carousel-titleanddesc{border-top:1px solid #222;color:#999;font-size:15px;padding-top:24px;margin-bottom:20px;font-weight:400}.jp-carousel-titleanddesc-title{font:300 1.5em/1.1 "Helvetica Neue",sans-serif!important;text-transform:none!important;color:#fff;margin:0 0 15px;padding:0}.jp-carousel-titleanddesc-desc p{color:#999;line-height:1.4;margin-bottom:.75em}.jp-carousel-comments p a,.jp-carousel-info h2 a,.jp-carousel-titleanddesc p a{color:#fff!important;border:none!important;text-decoration:underline!important;font-weight:400!important;font-style:normal!important}.jp-carousel-titleanddesc p b,.jp-carousel-titleanddesc p strong{font-weight:700;color:#999}.jp-carousel-titleanddesc p em,.jp-carousel-titleanddesc p i{font-style:italic;color:#999}.jp-carousel-comments p a:hover,.jp-carousel-info h2 a:hover,.jp-carousel-titleanddesc p a:hover{color:#68c9e8!important}.jp-carousel-titleanddesc p:empty{display:none}.jp-carousel-left-column-wrapper h1:after,.jp-carousel-left-column-wrapper h1:before,.jp-carousel-photo-info h1:after,.jp-carousel-photo-info h1:before{content:none!important}.jp-carousel-image-meta{background:#111;border:1px solid #222;color:#fff;font:12px/1.4 "Helvetica Neue",sans-serif!important;overflow:hidden;padding:18px 20px;width:209px!important}.jp-carousel-image-meta h5,.jp-carousel-image-meta li{font-family:"Helvetica Neue",sans-serif!important;position:inherit!important;top:auto!important;left:auto!important;right:auto!important;bottom:auto!important;background:none!important;border:none!important;font-weight:400!important;line-height:1.3em!important}.jp-carousel-image-meta ul{margin:0!important;padding:0!important;list-style:none!important}.jp-carousel-image-meta li{width:48%!important;float:right!important;margin:0 0 15px 2%!important;color:#fff!important;font-size:13px!important}.jp-carousel-image-meta h5{color:#999!important;text-transform:uppercase!important;font-size:10px!important;margin:0 0 2px!important;letter-spacing:.1em!important}a.jp-carousel-image-download{padding-right:23px;display:inline-block;clear:both;color:#999;line-height:1;font-weight:400;font-size:13px;text-decoration:none;background-position:0 -82px}.rtl a.jp-carousel-image-download{background-position:0% -82px}a.jp-carousel-image-download span.photo-size{font-size:11px;border-radius:1em;margin-right:2px;display:inline-block}a.jp-carousel-image-download span.photo-size-times{padding:0 2px 0 1px}a.jp-carousel-image-download:hover{background-position:0 -122px;color:#68c9e8;border:none!important}.rtl a.jp-carousel-image-download:hover{background-position:0% -122px}.jp-carousel-image-map{position:relative;margin:-20px -20px 20px;border-bottom:1px solid rgba(255,255,255,.17);height:154px}.jp-carousel-image-map img.gmap-main{border-top-right-radius:6px;border-left:1px solid rgba(255,255,255,.17)}.jp-carousel-image-map div.gmap-topright{width:94px;height:154px;position:absolute;top:0;left:0}.jp-carousel-image-map div.imgclip{overflow:hidden;border-top-left-radius:6px}.jp-carousel-image-map div.gmap-topright img{margin-right:-40px}.jp-carousel-image-map img.gmap-bottomright{position:absolute;top:96px;left:0}.jp-carousel-comments{font:15px/1.7 "Helvetica Neue",sans-serif!important;font-weight:400;background:none}.jp-carousel-comments p a:active,.jp-carousel-comments p a:focus,.jp-carousel-comments p a:hover{color:#68c9e8!important}.jp-carousel-comment{background:none;color:#999;margin-bottom:20px;clear:right;overflow:auto;width:100%}.jp-carousel-comment p{color:#999!important}.jp-carousel-comment .comment-author{font-size:13px;font-weight:400;padding:0;width:auto;display:inline;float:none;border:none;margin:0}.jp-carousel-comment .comment-author a{color:#fff}.jp-carousel-comment .comment-gravatar{float:right}.jp-carousel-comment .comment-content{border:none;margin-right:85px;padding:0}.jp-carousel-comment .avatar{margin:0 0 0 20px;border-radius:4px;border:none!important;padding:0!important;background-color:transparent!important}.jp-carousel-comment .comment-date{color:#999;margin-top:4px;font-size:11px;display:inline;float:left}#jp-carousel-comment-form{margin:0 0 10px!important;float:right;width:100%}textarea#jp-carousel-comment-form-comment-field{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:15px/1.4 "Helvetica Neue",sans-serif!important;width:100%;padding:10px 10px 5px;margin:0;float:none;height:147px;box-shadow:inset -2px 2px 2px rgba(0,0,0,.2);border-radius:3px;overflow:hidden;-moz-box-sizing:border-box;box-sizing:border-box}textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#555}textarea#jp-carousel-comment-form-comment-field:focus{background:#ccc;color:#222}textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#aaa}#jp-carousel-comment-form-spinner{color:#fff;margin:22px 10px 0 0;display:block;width:20px;height:20px;float:right}#jp-carousel-comment-form-submit-and-info-wrapper{display:none;overflow:hidden;width:100%}#jp-carousel-comment-form-commenting-as input{background:rgba(34,34,34,.9);border:1px solid #3a3a3a;color:#aaa;font:13px/1.4 "Helvetica Neue",sans-serif!important;padding:3px 6px;float:right;box-shadow:inset -2px 2px 2px rgba(0,0,0,.2);border-radius:2px;width:285px}#jp-carousel-comment-form-commenting-as input:focus{background:#ccc;color:#222}#jp-carousel-comment-form-commenting-as p{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:22px 0 0;float:right}#jp-carousel-comment-form-commenting-as fieldset{float:right;border:none;margin:20px 0 0;padding:0;clear:both}#jp-carousel-comment-form-commenting-as label{font:400 13px/1.7 "Helvetica Neue",sans-serif!important;margin:0 0 3px 20px;float:right;width:100px}#jp-carousel-comment-form-button-submit{margin-top:20px;float:left}#jp-carousel-comment-form-container,#js-carousel-comment-form-container{margin-bottom:15px;overflow:auto;width:100%}#jp-carousel-comment-post-results{display:none;overflow:auto;width:100%}#jp-carousel-comment-post-results span{display:block;text-align:center;margin-top:20px;width:100%;overflow:auto;padding:1em 0;-moz-box-sizing:border-box;box-sizing:border-box;background:rgba(0,0,0,.7);border-radius:2px;font:13px/1.4 "Helvetica Neue",sans-serif!important;border:1px solid rgba(255,255,255,.17);box-shadow:inset 0 0 5px 5px rgba(0,0,0,1)}.jp-carousel-comment-post-error{color:#DF4926}#jp-carousel-comments-closed{display:none;color:#999}#jp-carousel-comments-loading{font:444 15px/1.7 "Helvetica Neue",sans-serif!important;display:none;color:#999;text-align:right;margin-bottom:20px}.jp-carousel-light .jp-carousel-overlay{background:#fff}.jp-carousel-light .jp-carousel-next-button:hover span,.jp-carousel-light .jp-carousel-previous-button:hover span{opacity:.8}.jp-carousel-light .jp-carousel-close-hint:hover,.jp-carousel-light .jp-carousel-titleanddesc div{color:#000!important}.jp-carousel-light .jp-carousel-comment .comment-author a,.jp-carousel-light .jp-carousel-comments p a,.jp-carousel-light .jp-carousel-info h2 a,.jp-carousel-light .jp-carousel-titleanddesc p a{color:#1e8cbe!important}.jp-carousel-light .jp-carousel-comment .comment-author a:hover,.jp-carousel-light .jp-carousel-comments p a:hover,.jp-carousel-light .jp-carousel-info h2 a:hover,.jp-carousel-light .jp-carousel-titleanddesc p a:hover{color:#f1831e!important}.jp-carousel-light .jp-carousel-comment,.jp-carousel-light .jp-carousel-comment p,.jp-carousel-light .jp-carousel-info h2,.jp-carousel-light .jp-carousel-titleanddesc,.jp-carousel-light .jp-carousel-titleanddesc p,.jp-carousel-light .jp-carousel-titleanddesc p b,.jp-carousel-light .jp-carousel-titleanddesc p em,.jp-carousel-light .jp-carousel-titleanddesc p i,.jp-carousel-light .jp-carousel-titleanddesc p strong,.jp-carousel-light div.jp-carousel-buttons a{color:#666}.jp-carousel-light .jp-carousel-buttons{border-bottom-color:#f0f0f0;background:#f5f5f5}.jp-carousel-light div.jp-carousel-buttons a:hover{text-decoration:none;color:#f1831e}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog:hover{background-position:4px -56px;padding-right:24px!important}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like.liked,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-color:#2ea2cc;color:#fff}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0 -176px}.rtl .jp-carousel-light div.jp-carousel-buttons a.jp-carousel-commentlink{background-position:0% -176px}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like,.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like:hover{background-position:5px -15px;padding-right:23px!important}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged{background-position:5px -36px}.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-like.liked{background-position:5px 5px}.jp-carousel-light div#carousel-reblog-box{background:#eee;background:-webkit-gradient(linear,right bottom,right top,from(#ececec),to(#f7f7f7));box-shadow:0 2px 10px rgba(0,0,0,.1);border:1px solid #ddd}.jp-carousel-light #carousel-reblog-box textarea{color:#666;border:1px solid #cfcfcf;background:#fff}.jp-carousel-light #carousel-reblog-box .canceltext{color:#888}.jp-carousel-light #carousel-reblog-box .canceltext a{color:#666}.jp-carousel-light #carousel-reblog-box select{background:#eee;color:#333;border:1px solid #aaa}#jp-carousel-comment-form-button-submit,.jp-carousel-light #carousel-reblog-box input#carousel-reblog-submit{color:#333;background:#fff;background:-webkit-gradient(linear,right bottom,right top,from(#ddd),to(#fff));border:1px solid #aaa}.jp-carousel-light .jp-carousel-image-meta{background:#fafafa;border:1px solid #eee;border-top-color:#f5f5f5;border-right-color:#f5f5f5;color:#333}.jp-carousel-light .jp-carousel-image-meta li{color:#000!important}.jp-carousel-light .jp-carousel-close-hint{color:#ccc}.jp-carousel-light .jp-carousel-close-hint span{background-color:#fff;border-color:#ccc}.jp-carousel-light #jp-carousel-comment-form-comment-field::-webkit-input-placeholder{color:#aaa}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus{color:#333}.jp-carousel-light #jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder{color:#ddd}.jp-carousel-light a.jp-carousel-image-download{background-position:0 -122px}.rtl .jp-carousel-light a.jp-carousel-image-download{background-position:0% -122px}.jp-carousel-light a.jp-carousel-image-download:hover{background-position:0 -122px;color:#f1831e}.rtl .jp-carousel-light a.jp-carousel-image-download:hover{background-position:0% -122px}.jp-carousel-light textarea#jp-carousel-comment-form-comment-field{background:#fbfbfb;color:#333;border:1px solid #dfdfdf;box-shadow:inset -2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input{background:#fbfbfb;border:1px solid #dfdfdf;color:#333;box-shadow:inset -2px 2px 2px rgba(0,0,0,.1)}.jp-carousel-light #jp-carousel-comment-form-commenting-as input:focus{background:#fbfbfb;color:#333}.jp-carousel-light #jp-carousel-comment-post-results span{background:#f7f7f7;border:1px solid #dfdfdf;box-shadow:inset 0 0 5px rgba(0,0,0,.05)}.jp-carousel-light .jp-carousel-slide{background-color:#fff}.jp-carousel-light .jp-carousel-titleanddesc{border-top:1px solid #eee}.jp-carousel-light .jp-carousel-fadeaway{background:-webkit-gradient(linear,right bottom,right top,from(rgba(255,255,255,.75)),to(rgba(255,255,255,0)))}@media only screen and (max-width:760px){.jp-carousel-info{margin:0 10px!important}.jp-carousel-buttons,.jp-carousel-next-button,.jp-carousel-previous-button{display:none!important}.jp-carousel-image-meta{float:none!important;width:100%!important;-moz-box-sizing:border-box;box-sizing:border-box}.jp-carousel-close-hint{font-weight:800!important;font-size:26px!important;position:fixed!important;top:-10px}.jp-carousel-slide img{filter:alpha(opacity=100);opacity:1}.jp-carousel-wrap{background-color:#000}.jp-carousel-fadeaway{display:none}#jp-carousel-comment-form-container{display:none!important}.jp-carousel-titleanddesc{padding-top:0!important;border:none!important}.jp-carousel-titleanddesc-title{font-size:1em!important}.jp-carousel-left-column-wrapper{padding:0;width:100%!important}.jp-carousel-photo-info{right:0!important;width:100%!important}}.contact-form .clear-form{clear:both}.contact-form input[type=email],.contact-form input[type=text]{width:300px;max-width:98%;margin-bottom:13px}.contact-form select{margin-bottom:13px}.contact-form textarea{height:200px;width:80%;float:none;margin-bottom:13px}.contact-form input[type=checkbox],.contact-form input[type=radio]{float:none;margin-bottom:13px}.contact-form label{margin-bottom:3px;float:none;font-weight:700;display:block}.contact-form label.checkbox,.contact-form label.radio{margin-bottom:3px;float:none;font-weight:700;display:inline-block}.contact-form label span{color:#AAA;margin-right:4px;font-weight:400}.form-errors .form-error-message{color:red}.textwidget .contact-form input[type=email],.textwidget .contact-form input[type=text],.textwidget .contact-form textarea{width:250px;max-width:100%;-moz-box-sizing:border-box;box-sizing:border-box}.infinite-loader{color:#000;display:block;height:28px;text-indent:-9999px}#infinite-handle span{background:#333;border-radius:1px;color:#eee;cursor:pointer;font-size:13px;padding:6px 16px}@media (max-width:800px){#infinite-handle span:before{display:none}#infinite-handle span{display:block}}#infinite-footer{position:fixed;bottom:-50px;right:0;width:100%}#infinite-footer a{text-decoration:none}#infinite-footer .blog-credits a:hover,#infinite-footer .blog-info a:hover{color:#444;text-decoration:underline}#infinite-footer .container{background:rgba(255,255,255,.8);border-color:#ccc;border-color:rgba(0,0,0,.1);border-style:solid;border-width:1px 0 0;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 auto;overflow:hidden;padding:1px 20px;width:780px}#infinite-footer .blog-credits,#infinite-footer .blog-info{-moz-box-sizing:border-box;box-sizing:border-box;line-height:25px}#infinite-footer .blog-info{float:right;overflow:hidden;text-align:right;text-overflow:ellipsis;white-space:nowrap;width:40%}#infinite-footer .blog-credits{font-weight:400;float:left;width:60%}#infinite-footer .blog-info a{color:#111;font-size:14px;font-weight:700}#infinite-footer .blog-credits{color:#888;font-size:12px;text-align:left}#infinite-footer .blog-credits a{color:#666}.infinity-end.neverending #infinite-footer{display:none}@media (max-width:640px){#infinite-footer .container{-moz-box-sizing:border-box;box-sizing:border-box;width:100%}#infinite-footer .blog-info{width:30%}#infinite-footer .blog-credits{width:70%}#infinite-footer .blog-credits,#infinite-footer .blog-info a{font-size:10px}}@media (max-width:640px){#infinite-footer{position:static}}#wpadminbar li#wp-admin-bar-admin-bar-likes-widget{width:61px;overflow:hidden}#wpadminbar iframe.admin-bar-likes-widget{width:61px;height:28px;min-height:28px;border-width:0;position:absolute;top:0}div.jetpack-likes-widget-wrapper{width:100%;min-height:50px;position:relative}div.jetpack-likes-widget-wrapper .sd-link-color{font-size:12px}div.jetpack-likes-widget-wrapper.slim-likes-widget{width:1px;min-height:0}#likes-other-gravatars{display:none;position:absolute;padding:10px;background-color:#000;border-width:0;opacity:.88;filter:alpha(opacity=88);box-shadow:0 0 10px #000;min-width:130px;z-index:1000}#likes-other-gravatars *{line-height:normal}#likes-other-gravatars .likes-text{color:#fff;font-size:14px;padding-bottom:5px}#likes-other-gravatars li,#likes-other-gravatars ul{margin:0;padding:0;text-indent:0;list-style-type:none}#likes-other-gravatars li::before{content:""}#likes-other-gravatars ul.wpl-avatars{overflow:auto;display:block;position:absolute;max-height:190px}#likes-other-gravatars ul.wpl-avatars li{width:32px;height:32px;float:right;margin:0 0 5px 5px}#likes-other-gravatars ul.wpl-avatars li a{margin:0 0 0 2px;border-bottom:none!important;display:block}#likes-other-gravatars ul.wpl-avatars li a img{background:0 0;border:none;margin:0!important;padding:0!important;position:static}div.sd-box{border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.13)}.comment-likes-widget,.entry-content .post-likes-widget,.post-likes-widget{margin:0;border-width:0;display:block}.post-likes-widget-placeholder{margin:0;border-width:0;position:relative}.post-likes-widget-placeholder .button{display:none}.post-likes-widget-placeholder .loading{color:#999;font-size:12px}.slim-likes-widget .post-likes-widget{width:auto;float:none}div.sharedaddy.sd-like-enabled .sd-like h3{display:none}div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget{width:100%;float:none;position:absolute;top:0}.comment-likes-widget{width:100%}.pd-rating{display:block!important}.sd-gplus .sd-title{display:none}div#jp-relatedposts{display:none;padding-top:1em;margin:1em 0;position:relative}div.jp-relatedposts:after{content:'';display:block;clear:both}div#jp-relatedposts h3.jp-relatedposts-headline{margin:0 0 1em;display:inline-block;float:right;font-size:9pt;font-weight:700;font-family:inherit}div#jp-relatedposts h3.jp-relatedposts-headline em:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;border-top:1px solid rgba(0,0,0,.2);margin-bottom:1em}div#jp-relatedposts h3.jp-relatedposts-headline em{font-style:normal;font-weight:700}div#jp-relatedposts div.jp-relatedposts-items{clear:right}div#jp-relatedposts div.jp-relatedposts-items-visual{margin-left:-20px}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post{float:right;width:33%;margin:0 0 1em;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}div#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post{padding-left:20px;filter:alpha(opacity=80);-moz-opacity:.8;opacity:.8}div#jp-relatedposts div.jp-relatedposts-items div.jp-relatedposts-post:hover .jp-relatedposts-post-title a{text-decoration:underline}div#jp-relatedposts div.jp-relatedposts-items div.jp-relatedposts-post:hover{filter:alpha(opacity=100);-moz-opacity:1;opacity:1}div#jp-relatedposts div.jp-relatedposts-items p,div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title{font-size:14px;line-height:20px;margin:0}div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-nothumbs{position:relative}div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay{position:absolute;top:0;bottom:0;right:0;left:0;display:block}div#jp-relatedposts div.jp-relatedposts-items p{margin-bottom:0}div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title{text-transform:none;margin:0;font-family:inherit;display:block;max-width:100%}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a{font-size:inherit;font-weight:400;text-decoration:none;filter:alpha(opacity=100);-moz-opacity:1;opacity:1}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover{text-decoration:underline}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post span{display:block;max-width:90%;overflow:hidden;text-overflow:ellipsis}div#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img,div#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post span{max-width:100%}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context,div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date{opacity:.6}.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date,div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt{display:none}div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt{overflow:hidden}div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-nothumbs span{margin-bottom:1em}@media only screen and (max-width:640px){div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post{width:50%}div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:nth-child(3n){clear:right}div#jp-relatedposts div.jp-relatedposts-items-visual{margin-left:20px}}@media only screen and (max-width:320px){div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post{width:100%;clear:both;margin:0 0 1em}}#jp-post-flair{padding-top:.5em}#content div.sharedaddy,#main div.sharedaddy,div.sharedaddy{clear:both}div.sharedaddy h3.sd-title{margin:0 0 1em;display:inline-block;line-height:1.2;font-size:9pt;font-weight:700}div.sharedaddy h3.sd-title:before{content:"";display:block;width:100%;min-width:30px;border-top:1px solid #ddd;margin-bottom:1em}body.highlander-light h3.sd-title:before{border-top:1px solid rgba(0,0,0,.2)}body.highlander-dark h3.sd-title:before{border-top:1px solid rgba(255,255,255,.4)}.sd-content ul{padding:0!important;margin:0 0 .7em!important;list-style:none!important}.sd-content ul li{display:inline}.sd-block.sd-gplus{margin:0 0 .5em}.sd-gplus .sd-content{font-size:12px}#sharing_email .sharing_send,.sd-content ul li .option a.share-ustom,.sd-content ul li a.sd-button,.sd-content ul li.advanced a.share-more,.sd-content ul li.preview-item div.option.option-smart-off a,.sd-social-icon .sd-content ul li a.sd-button,.sd-social-icon-text .sd-content ul li a.sd-button,.sd-social-official .sd-content>ul>li .digg_button >a,.sd-social-official .sd-content>ul>li>a.sd-button,.sd-social-text .sd-content ul li a.sd-button{text-decoration:none!important;display:inline-block;margin:0 0 5px 5px;font-size:12px;font-family:"Open Sans",sans-serif;font-weight:400;border-radius:3px;color:#777!important;background:#f8f8f8;border:1px solid #ccc;box-shadow:0 1px 0 rgba(0,0,0,.08);text-shadow:none;line-height:23px;padding:1px 5px 0 8px}.sd-content ul li .option a.share-ustom span,.sd-content ul li a.sd-button>span,.sd-content ul li.advanced a.share-more span,.sd-content ul li.preview-item div.option.option-smart-off a span,.sd-social-icon-text .sd-content ul li a.sd-button>span,.sd-social-official .sd-content>ul>li .digg_button >a span,.sd-social-official .sd-content>ul>li>a.sd-button span,.sd-social-text .sd-content ul li a.sd-button span{line-height:23px}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button,.sd-social-official .sd-content>ul>li .digg_button>a,.sd-social-official .sd-content>ul>li>a.sd-button{line-height:17px;box-shadow:none;vertical-align:top}.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a:before,.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button:before,.sd-social-official .sd-content>ul>li .digg_button>a:before,.sd-social-official .sd-content>ul>li>a.sd-button:before{margin-bottom:-1px;top:0}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon .sd-content ul li a.sd-button:hover,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:hover,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li .digg_button>a:hover,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-official .sd-content>ul>li>a.sd-button:hover,.sd-social-text .sd-content ul li a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:hover{color:#555;background:#fafafa;border:1px solid #999}.sd-social-icon .sd-content ul li a.sd-button:active,.sd-social-icon-text .sd-content ul li a.sd-button:active,.sd-social-official .sd-content>ul>li .digg_button>a:active,.sd-social-official .sd-content>ul>li>a.sd-button:active,.sd-social-text .sd-content ul li a.sd-button:active{box-shadow:inset 0 1px 0 rgba(0,0,0,.16)}.sd-content ul li a.sd-button:before{display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font:400 16px/1 Genericons;vertical-align:top;position:relative;top:3px;text-align:center}.sd-content ul li{margin:0!important;padding:0}.sd-content ul li.preview-item a.sd-button span,.sd-social-icon-text .sd-content ul li a span,.sd-social-official .sd-content ul li a.sd-button span{margin-right:3px}.sd-content ul li.preview-item.no-icon a.sd-button span{margin-right:0}.sd-content ul li.no-icon a:before,.sd-social-text .sd-content ul li a:before{display:none}body .sd-content ul li.share-custom.no-icon a span,body .sd-social-text .sd-content ul li.share-custom a span{background-image:none;background-position:-500px -500px!important;background-repeat:no-repeat!important;padding-right:0;height:0;line-height:inherit}.sd-social-icon .sd-content ul li a.share-more{position:relative;top:2px}.sd-social-icon .sd-content ul li a.share-more span{margin-right:3px}.sd-content ul li.share-print div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-print a:before,.sd-social-icon-text .sd-content li.share-print a:before,.sd-social-official .sd-content li.share-print a:before,.sd-social-text .sd-content ul li.share-print a:before{content:'\f469'}.sd-content ul li.share-email div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-email a:before,.sd-social-icon-text .sd-content li.share-email a:before,.sd-social-official .sd-content li.share-email a:before,.sd-social-text .sd-content ul li.share-email a:before{content:'\f410'}.sd-content ul li.share-linkedin div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-linkedin a:before,.sd-social-icon-text .sd-content li.share-linkedin a:before,.sd-social-text .sd-content ul li.share-linkedin a:before{content:'\f207'}.sd-content ul li.share-twitter div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-twitter a:before,.sd-social-icon-text .sd-content li.share-twitter a:before,.sd-social-text .sd-content ul li.share-twitter a:before{content:'\f202'}.sd-content ul li.share-reddit div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-reddit a:before,.sd-social-icon-text .sd-content li.share-reddit a:before,.sd-social-text .sd-content ul li.share-reddit a:before{content:'\f222'}.sd-content ul li.share-tumblr div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-tumblr a:before,.sd-social-icon-text .sd-content li.share-tumblr a:before,.sd-social-text .sd-content ul li.share-tumblr a:before{content:'\f214'}.sd-content ul li.share-stumbleupon div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-stumbleupon a:before,.sd-social-icon-text .sd-content li.share-stumbleupon a:before,.sd-social-text .sd-content ul li.share-stumbleupon a:before{content:'\f223'}.sd-content ul li.share-pocket div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pocket a:before,.sd-social-icon-text .sd-content li.share-pocket a:before,.sd-social-text .sd-content ul li.share-pocket a:before{content:'\f224'}.sd-content ul li.share-pinterest div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-pinterest a:before,.sd-social-icon-text .sd-content li.share-pinterest a:before,.sd-social-text .sd-content ul li.share-pinterest a:before{content:'\f209'}.sd-content ul li.share-google-plus-1 div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-google-plus-1 a:before,.sd-social-icon-text .sd-content li.share-google-plus-1 a:before,.sd-social-text .sd-content ul li.share-google-plus-1 a:before{content:'\f218'}.sd-content ul li.share-facebook div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-facebook a:before,.sd-social-icon-text .sd-content li.share-facebook a:before,.sd-social-text .sd-content ul li.share-facebook a:before{content:'\f204'}.sd-content ul li.share-press-this div.option.option-smart-off a:before,.sd-social-icon .sd-content ul li.share-press-this a:before,.sd-social-icon-text .sd-content li.share-press-this a:before,.sd-social-official .sd-content li.share-press-this a:before,.sd-social-text .sd-content ul li.share-press-this a:before{content:'\f205'}.sd-social-official .sd-content li.share-press-this a:before{color:#2ba1cb}.sd-content ul li.advanced a.share-more:before,.sd-social-icon .sd-content ul a.share-more:before,.sd-social-icon-text .sd-content a.share-more:before,.sd-social-official .sd-content a.share-more:before,.sd-social-text .sd-content ul a.share-more:before{content:'\f415'}.sd-social-official .sd-content a.share-more:before{color:#2ba1cb}.sd-social .sd-button .share-count{background:#2ea2cc;color:#fff;border-radius:10px;display:inline-block;text-align:center;font-size:10px;padding:1px 3px;line-height:1}.sd-social-official .sd-content ul,.sd-social-official .sd-content ul li{line-height:25px!important}.sd-social-official .sd-content>ul>li>a.sd-button span{line-height:1}.sd-social-official .sd-content ul:after{content:".";display:block;height:0;clear:both;visibility:hidden}.sd-social-official .sd-content li.share-press-this a{margin:0 0 5px}.sd-social-official .sd-content ul>li{display:block;float:right;margin:0 0 5px 10px!important;height:25px}.sd-social-official .sd-content .pocket_button iframe{width:98px}.sd-social-official .sd-content .twitter_button iframe{width:96px}.reddit_button iframe,.stumbleupon_button iframe{margin-top:1px}.googleplus1_button iframe,.like_button iframe,.linkedin_button>span,.pinterest_button,.pocket_button iframe,.twitter_button{margin:0!important}body .sd-social-official li a.share-more,body .sd-social-official li.share-custom a,body .sd-social-official li.share-digg a,body .sd-social-official li.share-email a,body .sd-social-official li.share-press-this a,body .sd-social-official li.share-print{position:relative;top:0}body .sd-social-icon .sd-content li.share-custom>a{padding:2px 3px 0;position:relative;top:4px}body .sd-content ul li.share-custom a.share-icon span,body .sd-social-icon .sd-content li.share-custom a span,body .sd-social-icon-text .sd-content li.share-custom a span,body .sd-social-official .sd-content li.share-custom a span,body .sd-social-text .sd-content li.share-custom a span{background-size:16px 16px;background-repeat:no-repeat;margin-right:0;padding:0 19px 0 0;display:inline-block;height:16px;line-height:16px}body .sd-social-icon .sd-content li.share-custom a span{width:0}body .sd-social-icon .sd-content li.share-custom a span{padding-right:16px!important}.sharing-hidden .inner{position:absolute;z-index:2;border:1px solid #ccc;padding:10px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);border-radius:2px;margin-top:5px;max-width:400px}.sharing-hidden .inner ul{margin:0!important}.sd-social-official .sd-content .sharing-hidden ul>li.share-end{clear:both;margin:0;height:0}.sharing-hidden .inner:after,.sharing-hidden .inner:before{position:absolute;z-index:1;top:-8px;right:20px;width:0;height:0;border-right:6px solid transparent;border-left:6px solid transparent;border-bottom:8px solid #ccc;content:"";display:block}.sharing-hidden .inner:after{z-index:2;top:-7px;border-right:6px solid transparent;border-left:6px solid transparent;border-bottom:8px solid #fff}.sharing-hidden ul{margin:0}.sd-social-icon .sd-content ul li[class*=share-] a,.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a{border-radius:50%;-webkit-border-radius:50%;border:0;box-shadow:none;padding:8px;position:relative;top:-2px;line-height:1;width:auto;height:auto;margin-bottom:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button>span,.sd-social-icon .sd-content ul li[class*=share-] div.option a span{line-height:1}.sd-social-icon .sd-content ul li[class*=share-] a:hover,.sd-social-icon .sd-content ul li[class*=share-] div.option a:hover{border:none;opacity:.6}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button:before{top:0}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button.share-custom{padding:8px 8px 6px;top:5px}.sd-social-icon .sd-content ul li a.sd-button.share-more{margin-right:10px}.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more{margin-right:0}.sd-social-icon .sd-button span.share-count{position:absolute;bottom:0;left:0;border-radius:0;background:#555;font-size:9px}.sd-social-icon .sd-content ul li[class*=share-] a.sd-button{background:#e9e9e9;margin-top:2px;text-indent:0}.sd-social-icon .sd-content ul li[class*=share-].share-tumblr a.sd-button{background:#2c4762;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-facebook a.sd-button{background:#3b5998;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-stumbleupon a.sd-button{background:#ea4b24;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-twitter a.sd-button{background:#00acee;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pinterest a.sd-button{background:#ca1f27;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-digg a.sd-button{color:#555!important}.sd-social-icon .sd-content ul li[class*=share-].share-press-this a.sd-button{background:#1e8cbe;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-linkedin a.sd-button{background:#0077b5;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-google-plus-1 a.sd-button{background:#dd4b39;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-pocket a.sd-button{background:#ee4056;color:#fff!important}.sd-social-icon .sd-content ul li[class*=share-].share-reddit a.sd-button{background:#cee3f8;color:#555!important}.sharing-screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.sharing-screen-reader-text:active,.sharing-screen-reader-text:focus,.sharing-screen-reader-text:hover{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#sharing_email{width:342px;position:absolute;z-index:1001;border:1px solid #ccc;padding:15px;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,.2);text-align:right}div.sharedaddy.sharedaddy-dark #sharing_email{border-color:#fff}#sharing_email .errors{color:#fff;background-color:#771a09;font-size:12px;padding:5px 8px;line-height:1;margin:10px 0 0}#sharing_email label{font-size:12px;color:#333;font-weight:700;display:block;padding:0 0 4px;text-align:right;text-shadow:none}#sharing_email form{margin:0}#sharing_email input[type=email],#sharing_email input[type=text]{width:100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;border:1px solid #ccc;margin-bottom:1em;background:#fff;font-size:12px;color:#333;max-width:none;padding:1px 3px}#sharing_email .sharing_cancel{padding:0 1em 0 0;font-size:12px;text-shadow:none}#sharing_email .recaptcha{width:312px;height:123px;margin:0 0 1em}.slideshow-window{background-color:#222;border:20px solid #222;border-radius:11px;-moz-border-radius:11px;-webkit-border-radius:11px;-khtml-border-radius:11px;margin-bottom:20px;height:410px;z-index:1}.slideshow-window.slideshow-white{background-color:#fff;border-color:#fff}.slideshow-window,.slideshow-window *{-moz-box-sizing:content-box;box-sizing:content-box}.slideshow-loading{height:100%;text-align:center;margin:auto}body div.slideshow-window * img{border-width:0!important;margin-left:auto!important;margin-right:auto!important;padding:0!important;background-color:transparent!important;background-image:none!important;max-width:100%}.slideshow-loading img{vertical-align:middle}.slideshow-slide{height:100%;width:100%;text-align:center;margin:auto;display:none}.slideshow-slide img{vertical-align:middle}.slideshow-line-height-hack{overflow:hidden;width:0;font-size:0}.slideshow-slide-caption{font-size:13px;font-family:"Helvetica Neue",sans-serif;color:#f7f7f7;text-shadow:#222 -1px 1px 2px;line-height:25px;height:25px;position:absolute;bottom:5px;right:0;z-index:100;width:100%;text-align:center}.slideshow-controls{z-index:1000;position:absolute;bottom:30px;margin:auto;text-align:center;width:100%;-ms-filter:"alpha(Opacity=50)";opacity:.5;direction:rtl}body div div.slideshow-controls a,body div div.slideshow-controls a:hover{border:2px solid rgba(255,255,255,.1)!important;background-color:#000!important;background-color:rgba(0,0,0,.6)!important;background-image:url(../modules/shortcodes/img/slideshow-controls.png)!important;background-repeat:no-repeat;background-size:142px 16px!important;background-position:-34px 8px!important;color:#222!important;margin:0 5px!important;padding:0!important;display:inline-block!important;zoom:1;height:32px!important;width:32px!important;line-height:32px!important;text-align:center!important;-khtml-border-radius:10em!important;border-radius:10em!important;-webkit-transition:300ms border-color ease-out;transition:300ms border-color ease-out}@media only screen and (-webkit-min-device-pixel-ratio:1.5){body div div.slideshow-controls a,body div div.slideshow-controls a:hover{background-image:url(../modules/shortcodes/img/slideshow-controls-2x.png)!important}}body div div.slideshow-controls a:hover{border-color:rgba(255,255,255,1)!important}body div div.slideshow-controls a:first-child{background-position:-76px 8px!important}body div div.slideshow-controls a:last-child{background-position:-117px 8px!important}body div div.slideshow-controls a.running,body div div.slideshow-controls a:nth-child(2){background-position:-34px 8px!important}body div div.slideshow-controls a.paused{background-position:9px 8px!important}.slideshow-controls a img{border:50px dotted #f0f}body.presentation-wrapper-fullscreen-parent,html.presentation-wrapper-fullscreen-parent{overflow:hidden!important}.presentation-wrapper-fullscreen-parent #wpadminbar{display:none}.presentation-wrapper-fullscreen,.presentation-wrapper-fullscreen-parent{min-width:100%!important;min-height:100%!important;position:absolute!important;top:0!important;left:0!important;bottom:0!important;right:0!important;margin:0!important;padding:0!important;z-index:10000!important}.presentation-wrapper-fullscreen{background-color:gray;border:none!important}.presentation-wrapper-fullscreen .nav-arrow-left,.presentation-wrapper-fullscreen .nav-arrow-right{z-index:20001}.presentation-wrapper-fullscreen .nav-fullscreen-button{z-index:20002}.presentation-wrapper{margin:20px auto;border:1px solid #e5e5e5;overflow:hidden;line-height:normal}.presentation{position:relative;margin:0;overflow:hidden;outline:0}.presentation,.presentation .step{background-repeat:no-repeat;background-position:center;background-size:100% 100%}.presentation .step.fade:not(.active){opacity:0}.presentation .slide-content{padding:30px}.presentation .nav-arrow-left,.presentation .nav-arrow-right,.presentation .nav-fullscreen-button{position:absolute;width:34px;background-repeat:no-repeat;z-index:2;opacity:0;-webkit-transition:opacity .25s;transition:opacity .25s}.presentation .nav-arrow-left,.presentation .nav-arrow-right{height:100%;background-image:url(../modules/shortcodes/images/slide-nav.png);background-size:450% 61px}.presentation .nav-arrow-left{right:0;background-position:4px 50%}.presentation .nav-arrow-right{left:0;background-position:-120px 50%}.presentation .nav-fullscreen-button{width:32px;height:32px;margin:4px;bottom:0;left:0;z-index:3;background-image:url(../modules/shortcodes/images/expand.png);background-size:100% 100%}.presentation:hover .nav-arrow-left,.presentation:hover .nav-arrow-right{opacity:1}.presentation:hover .nav-fullscreen-button{opacity:.8}.presentation-wrapper-fullscreen .nav-fullscreen-button{background-image:url(../modules/shortcodes/images/collapse.png)}.presentation .autoplay-overlay{height:15%;width:80%;margin:30% 10%;position:relative;z-index:100;display:table;border-radius:50px;background-color:#e5e5e5;background-color:rgba(0,0,0,.75);-webkit-transition:opacity .5s;transition:opacity .5s}.presentation .autoplay-overlay .overlay-msg{position:relative;display:table-cell;text-align:center;vertical-align:middle;color:#fff}.presentation .will-fade{opacity:0}.presentation .do-fade{opacity:1;-webkit-transition:opacity .5s;transition:opacity .5s}#subscribe-email input{width:95%;padding:1px 2px}.comment-subscription-form .subscribe-label{display:inline!important}.tiled-gallery{clear:both;margin:0 0 20px;overflow:hidden}.tiled-gallery img{margin:2px!important}.tiled-gallery .gallery-group{float:right;position:relative}.tiled-gallery .tiled-gallery-item{float:right;margin:0;position:relative;width:inherit}.tiled-gallery .gallery-row{overflow:hidden}.tiled-gallery .tiled-gallery-item a{background:0 0;border:none;color:none;margin:0;padding:0;text-decoration:none;width:auto}.tiled-gallery .tiled-gallery-item img,.tiled-gallery .tiled-gallery-item img:hover{background:0 0;border:none;box-shadow:none;max-width:100%;padding:0;vertical-align:middle}.tiled-gallery-caption{background:#eee;background:rgba(255,255,255,.8);color:#333;font-size:13px;font-weight:400;overflow:hidden;padding:10px 0;position:absolute;bottom:0;text-indent:10px;text-overflow:ellipsis;width:100%;white-space:nowrap}.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption{font-size:11px}.widget-gallery .tiled-gallery-unresized{visibility:hidden;height:0;overflow:hidden}.tiled-gallery .tiled-gallery-item img.grayscale{position:absolute;right:0;top:0}.tiled-gallery .tiled-gallery-item img.grayscale:hover{opacity:0}.tiled-gallery.type-circle .tiled-gallery-item img{border-radius:50%!important}.tiled-gallery.type-circle .tiled-gallery-caption{display:none;opacity:0}.jetpack-display-remote-posts{margin:5px 0 20px}.jetpack-display-remote-posts h4{font-size:90%;margin:5px 0;padding:0}.jetpack-display-remote-posts h4 a{text-decoration:none}.jetpack-display-remote-posts p{margin:0!important;padding:0;line-height:1.4em!important;font-size:90%}.jetpack-display-remote-posts img{max-width:100%}.widget-grofile h4{margin:1em 0 .5em}.widget-grofile ul.grofile-urls{margin-right:0;overflow:hidden}.widget-grofile ul.grofile-accounts li{list-style:none;display:inline}.widget-grofile ul.grofile-accounts li::before{content:""!important}.widget-grofile .grofile-accounts-logo{background-image:url(//0.gravatar.com/images/grav-share-sprite.png);background-repeat:no-repeat;width:16px;height:16px;float:right;margin-left:8px;margin-bottom:8px}.rtl .widget-grofile .grofile-accounts-logo{margin-right:8px;margin-left:0}.grofile-thumbnail{width:500px;max-width:100%}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.widget-grofile .grofile-accounts-logo{background-image:url(//0.gravatar.com/images/grav-share-sprite-2x.png);background-size:16px 784px}}.widgets-grid-layout{width:100%}.widgets-grid-layout:after,.widgets-grid-layout:before{content:" ";display:table}.widgets-grid-layout:after{clear:both}.widget-grid-view-image{float:right;max-width:50%}.widget-grid-view-image a{display:block;margin:0 0 4px 2px}.widget-grid-view-image:image:nth-child(even){float:left}.widget-grid-view-image:nth-child(even) a{margin:0 2px 4px 0}.widgets-grid-layout .widget-grid-view-image img{max-width:100%;height:auto}.widgets-multi-column-grid ul{overflow:hidden;padding:0;margin:0;list-style-type:none}.widgets-multi-column-grid ul li{background:0 0;clear:none;float:right;margin:0 0 -3px -5px;padding:0 0 6px 8px;border:none;list-style-type:none!important}.widgets-multi-column-grid ul li a{background:0 0;margin:0;padding:0;border:0}.widgets-multi-column-grid .avatar{vertical-align:middle}.widgets-list-layout{padding:0;margin:0;list-style-type:none}.widgets-list-layout li:after,.widgets-list-layout li:before{content:"";display:table}.widgets-list-layout li:after{clear:both}.widgets-list-layout li{zoom:1;margin-bottom:1em;list-style-type:none!important}.widgets-list-layout .widgets-list-layout-blavatar{float:right;width:21.276596%;max-width:40px;height:auto}.widgets-list-layout-links{float:left;width:73.404255%}.widgets-list-layout span{opacity:.5}.widgets-list-layout span:hover{opacity:.8} -
jetpack/trunk/jetpack.php
r1041038 r1043793 6 6 * Description: Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users. 7 7 * Author: Automattic 8 * Version: 3.3-beta 28 * Version: 3.3-beta3 9 9 * Author URI: http://jetpack.me 10 10 * License: GPL2+ … … 15 15 define( 'JETPACK__MINIMUM_WP_VERSION', '3.9' ); 16 16 17 define( 'JETPACK__VERSION', '3.3-beta 2' );17 define( 'JETPACK__VERSION', '3.3-beta3' ); 18 18 define( 'JETPACK_MASTER_USER', true ); 19 19 define( 'JETPACK__API_VERSION', 1 ); -
jetpack/trunk/json-endpoints/class.wpcom-json-api-get-site-endpoint.php
r1041038 r1043793 137 137 // This is done so that we can access the updated blavatar on .com via the /me/sites endpoint 138 138 if( is_jetpack_site() ) { 139 $site_icon_url = get_option( 'site_icon_url' ); 140 if( $site_icon_url ) { 141 $response[ $key ] = array( 142 'img' => (string) jetpack_photon_url( $site_icon_url, array() , 'https' ), 143 'ico' => (string) jetpack_photon_url( $site_icon_url, array( 'w' => 16 ), 'https' ) 144 ); 145 } 139 140 $site_icon_url = get_option( 'jetpack_site_icon_url' ); 141 if( ! $site_icon_url ) { 142 $site_icon_url = get_option( 'site_icon_url' ); 143 } else { 144 // clean up site_icon_url was only set during 3.3 beta 2 of jetpack 145 delete_option( 'site_icon_url' ); 146 } 147 if( $site_icon_url ) { 148 $response[ $key ] = array( 149 'img' => (string) jetpack_photon_url( $site_icon_url, array() , 'https' ), 150 'ico' => (string) jetpack_photon_url( $site_icon_url, array( 'w' => 16 ), 'https' ) 151 ); 152 } 146 153 } 147 154 } … … 290 297 $response['options']['jetpack_version'] = get_option( 'jetpack_version' ); 291 298 292 if( get_option( 'main_network_site' ) ) { 293 $response['options']['main_network_site'] = get_option( 'main_network_site' ); 299 if( get_option( 'jetpack_main_network_site' ) ) { 300 $response['options']['main_network_site'] = (string) rtrim( get_option( 'jetpack_main_network_site' ), '/' ); 301 delete_option( 'main_network_site' ); // clean up after on self 302 } elseif( get_option( 'main_network_site' ) ) { // This was only set for 3.3 beta 2 sites and should be removed after 303 $response['options']['main_network_site'] = (string) rtrim( get_option( 'main_network_site' ), '/' ); 294 304 } 305 306 // Sites have to prove that they are not main_network site. 307 // If the sync happends right then we should be able to see that we are not dealing with a network site 308 $response['options']['is_multi_network'] = (bool) get_option( 'jetpack_is_main_network', true ); 295 309 296 310 } -
jetpack/trunk/json-endpoints/class.wpcom-json-api-list-posts-v1-1-endpoint.php
r1041038 r1043793 43 43 // determine statuses 44 44 $status = $args['status']; 45 $status = ( $status ) ? explode( ',', $status ) : [ 'publish' ];45 $status = ( $status ) ? explode( ',', $status ) : array( 'publish' ); 46 46 if ( in_array( 'any', $status ) ) { 47 $status = [];47 $status = array(); 48 48 } else { 49 49 $statuses_whitelist = array( -
jetpack/trunk/json-endpoints/class.wpcom-json-api-update-post-v1-1-endpoint.php
r1038914 r1043793 11 11 // /sites/%s/posts/%d -> $blog_id, $post_id 12 12 // /sites/%s/posts/%d/delete -> $blog_id, $post_id 13 // /sites/%s/posts/%d/restore -> $blog_id, $post_id 13 14 function callback( $path = '', $blog_id = 0, $post_id = 0 ) { 14 15 $blog_id = $this->api->switch_to_blog_and_validate_user( $this->api->get_blog_id( $blog_id ) ); … … 19 20 if ( $this->api->ends_with( $path, '/delete' ) ) { 20 21 return $this->delete_post( $path, $blog_id, $post_id ); 22 } elseif ( $this->api->ends_with( $path, '/restore' ) ) { 23 return $this->restore_post( $path, $blog_id, $post_id ); 21 24 } else { 22 25 return $this->write_post( $path, $blog_id, $post_id ); … … 551 554 } 552 555 556 // /sites/%s/posts/%d/restore -> $blog_id, $post_id 557 function restore_post( $path, $blog_id, $post_id ) { 558 $args = $this->query_args(); 559 $post = get_post( $post_id ); 560 561 if ( !$post || is_wp_error( $post ) ) { 562 return new WP_Error( 'unknown_post', 'Unknown post', 404 ); 563 } 564 565 if ( !current_user_can( 'delete_post', $post->ID ) ) { 566 return new WP_Error( 'unauthorized', 'User cannot restore trashed posts', 403 ); 567 } 568 569 do_action( 'wpcom_json_api_objects', 'posts' ); 570 571 wp_untrash_post( $post->ID ); 572 573 return $this->get_post_by( 'ID', $post->ID, $args['context'] ); 574 } 575 553 576 private function parse_and_set_featured_image( $post_id, $delete_featured_image, $featured_image ) { 554 577 if ( $delete_featured_image ) { -
jetpack/trunk/json-endpoints/jetpack/class.jetpack-json-api-plugins-endpoint.php
r1038914 r1043793 179 179 } 180 180 } 181 181 182 if ( empty( $slug ) && isset( $update_plugins->response ) ) { 182 183 if ( isset( $update_plugins->response[ $plugin_file ] ) ) { … … 184 185 } 185 186 } 186 if ( empty ( $slug) ) { 187 $slug = $plugin_file; 187 188 // Try to infer from the plugin file if not cached 189 if ( empty( $slug) ) { 190 $slug = dirname( $plugin_file ); 191 if ( '.' === $slug ) { 192 $slug = preg_replace("/(.+)\.php$/", "$1", $plugin_file ); 193 } 188 194 } 189 190 195 return $slug; 191 196 } 192 193 197 } -
jetpack/trunk/modules/likes.php
r1038914 r1043793 74 74 add_action( 'admin_bar_menu', array( $this, 'admin_bar_likes' ), 60 ); 75 75 76 add_action( 'wp_enqueue_scripts', array( $this, 'load_styles_register_scripts' ) ); 77 76 78 add_action( 'save_post', array( $this, 'meta_box_save' ) ); 77 79 add_action( 'edit_attachment', array( $this, 'meta_box_save' ) ); … … 105 107 // Do we really need `admin_styles`? With the new admin UI, it's breaking some bits. 106 108 // Jetpack::init()->admin_styles(); 109 } 110 /** 111 * Load style on the front end. 112 * @return null 113 */ 114 function load_styles_register_scripts() { 115 116 wp_enqueue_style( 'jetpack_likes', plugins_url( 'likes/style.css', __FILE__ ), array(), JETPACK__VERSION ); 117 if( $this->in_jetpack ) { 118 $this->register_scripts(); 119 } 107 120 } 108 121 … … 564 577 add_filter( 'the_excerpt', array( &$this, 'post_likes' ), 30, 1 ); 565 578 566 add_action( 'wp_enqueue_scripts', array( &$this, 'enqueue_scripts' ) );567 568 579 } else { 569 580 add_filter( 'post_flair', array( &$this, 'post_likes' ), 30, 1 ); … … 585 596 586 597 /** 587 * Enqueuescripts598 * Register scripts 588 599 */ 589 function enqueue_scripts() { 590 if ( $this->is_likes_visible() ) { 591 wp_enqueue_script( 'postmessage', plugins_url( '_inc/postmessage.js', dirname(__FILE__) ), array( 'jquery' ), JETPACK__VERSION, false ); 592 wp_enqueue_script( 'jquery_inview', plugins_url( '_inc/jquery.inview.js', dirname(__FILE__) ), array( 'jquery' ), JETPACK__VERSION, false ); 593 wp_enqueue_script( 'jetpack_resize', plugins_url( '_inc/jquery.jetpack-resize.js' , dirname(__FILE__) ), array( 'jquery' ), JETPACK__VERSION, false ); 594 wp_enqueue_style( 'jetpack_likes', plugins_url( 'likes/style.css', __FILE__ ), array(), JETPACK__VERSION ); 595 wp_enqueue_script( 'jetpack_likes_queuehandler', plugins_url( 'likes/queuehandler.js' , __FILE__ ), array( 'jquery' ), JETPACK__VERSION, true ); 596 } 600 function register_scripts() { 601 // Lets register all the sciprts 602 wp_register_script( 'postmessage', plugins_url( '_inc/postmessage.js', dirname(__FILE__) ), array( 'jquery' ), JETPACK__VERSION, false ); 603 wp_register_script( 'jquery_inview', plugins_url( '_inc/jquery.inview.js', dirname(__FILE__) ), array( 'jquery' ), JETPACK__VERSION, false ); 604 wp_register_script( 'jetpack_resize', plugins_url( '_inc/jquery.jetpack-resize.js' , dirname(__FILE__) ), array( 'jquery' ), JETPACK__VERSION, false ); 605 wp_register_script( 'jetpack_likes_queuehandler', plugins_url( 'likes/queuehandler.js' , __FILE__ ), array( 'jquery', 'postmessage', 'jetpack_resize', 'jquery_inview' ), JETPACK__VERSION, true ); 597 606 } 598 607 … … 697 706 $domain = $url_parts['host']; 698 707 } 699 700 add_ filter( 'wp_footer', array( $this, 'likes_master' ));708 // make sure to include the scripts before the iframe otherwise weird things happen 709 add_action( 'wp_footer', array( $this, 'likes_master' ), 21 ); 701 710 702 711 /** … … 714 723 $html .= "<span class='sd-text-color'></span><a class='sd-link-color'></a>"; 715 724 $html .= '</div>'; 725 726 // Lets make sure that the script is enqued 727 wp_enqueue_script( 'jetpack_likes_queuehandler' ); 716 728 717 729 return $content . $html; … … 739 751 $domain = $url_parts['host']; 740 752 } 741 742 add_ filter( 'wp_footer', array( $this, 'likes_master' ));753 // make sure to include the scripts before the iframe otherwise weird things happen 754 add_action( 'wp_footer', array( $this, 'likes_master' ), 21 ); 743 755 744 756 $src = sprintf( '%1$s://widgets.wp.com/likes/#blog_id=%2$d&comment_id=%3$d&origin=%1$s://%4$s', $protocol, $blog_id, $comment->comment_ID, $domain ); … … 778 790 $domain = $url_parts['host']; 779 791 } 780 781 add_ filter( 'wp_footer', array( $this, 'likes_master' ));792 // make sure to include the scripts before the iframe otherwise weird things happen 793 add_action( 'wp_footer', array( $this, 'likes_master' ), 21 ); 782 794 783 795 $src = sprintf( '%1$s://widgets.wp.com/likes/#blog_id=%2$d&post_id=%3$d&origin=%1$s://%4$s', $protocol, $blog_id, $post->ID, $domain ); … … 795 807 } 796 808 809 /** 810 * This function needs to get loaded after the scripts get added to the page. 811 * 812 */ 797 813 function likes_master() { 798 814 $protocol = 'http'; … … 810 826 811 827 $likersText = wp_kses( __( '<span>%d</span> bloggers like this:', 'jetpack' ), array( 'span' => array() ) ); 812 ?>828 ?> 813 829 <iframe src='<?php echo $src; ?>' scrolling='no' id='likes-master' name='likes-master' style='display:none;'></iframe> 814 830 <div id='likes-other-gravatars'><div class="likes-text"><?php echo $likersText; ?></div><ul class="wpl-avatars sd-like-gravatars"></ul></div> 815 <?php831 <?php 816 832 } 817 833 … … 883 899 // Sharing Setting Overrides **************************************** 884 900 885 // Single post 886 if ( is_sing ular( 'post') ) {887 if ( ! $this->is_single_post_enabled( ) ) {901 // Single post including custom post types 902 if ( is_single() ) { 903 if ( ! $this->is_single_post_enabled( $post->post_type ) ) { 888 904 $enabled = false; 889 905 } … … 906 922 } 907 923 } 908 924 909 925 if( is_object( $post ) ) { 910 926 // Check that the post is a public, published post. … … 1004 1020 * Are Post Likes enabled on single posts? 1005 1021 * 1022 * @param String $post_type custom post type identifier 1006 1023 * @return bool 1007 1024 */ 1008 function is_single_post_enabled( ) {1025 function is_single_post_enabled( $post_type = 'post' ) { 1009 1026 $options = $this->get_options(); 1010 return (bool) apply_filters( 'wpl_is_single_post_disabled', (bool) in_array( 'post', $options['show'] ) ); 1027 return (bool) apply_filters( 1028 "wpl_is_single_{$post_type}_disabled", 1029 (bool) in_array( $post_type, $options['show'] ) 1030 ); 1011 1031 } 1012 1032 … … 1030 1050 return (bool) apply_filters( 'wpl_is_attachment_disabled', (bool) in_array( 'attachment', $options['show'] ) ); 1031 1051 } 1032 1033 1052 } 1034 1053 -
jetpack/trunk/modules/sharedaddy/sharing-sources.php
r1038914 r1043793 73 73 74 74 return sprintf( 75 '<a rel="nofollow" class="%s" href="%s"%s title="%s"%s><span%s>%s</span></a>', 75 '<a rel="nofollow" data-shared="%s" class="%s" href="%s"%s title="%s"><span%s>%s</span></a>', 76 ( $id ? esc_attr( $id ) : '' ), 76 77 implode( ' ', $klasses ), 77 78 $url, 78 79 ( $this->open_links == 'new' ) ? ' target="_blank"' : '', 79 80 $title, 80 ( $id ? ' id="' . esc_attr( $id ) . '"' : '' ),81 81 ( $this->button_style == 'icon' ) ? '></span><span class="sharing-screen-reader-text"' : '', 82 82 -
jetpack/trunk/modules/sharedaddy/sharing.js
r1041038 r1043793 4 4 twitter_count : {}, 5 5 get_counts : function( url ) { 6 if ( 'undefined' != typeof WPCOMSharing.done_urls[ WPCOM_sharing_counts[ url ] ] ) 6 var https_url, http_url, urls, id, service, service_urls, service_url; 7 8 id = WPCOM_sharing_counts[ url ]; 9 10 if ( 'undefined' != typeof WPCOMSharing.done_urls[ id ] ) { 7 11 return; 12 } 8 13 9 14 // get both the http and https version of these URLs 10 https_url = url.replace( /^http:\/\//i, 'https://' ); 11 http_url = url.replace( /^https:\/\//i, 'http://' ); 12 13 // facebook 14 if ( jQuery( '#sharing-facebook-' + WPCOM_sharing_counts[ url ] ).length ) { 15 jQuery.getScript( 'https://graph.facebook.com/?ids=' + encodeURIComponent( http_url ) + ',' + encodeURIComponent( https_url ) + '&format=json&callback=WPCOMSharing.update_facebook_count' ); 16 } 17 18 // twitter 19 if ( jQuery( '#sharing-twitter-' + WPCOM_sharing_counts[ url ] ).length ) { 20 jQuery.getScript( window.location.protocol + '//cdn.api.twitter.com/1/urls/count.json?callback=WPCOMSharing.update_twitter_count&url=' + encodeURIComponent( http_url ) ); 21 jQuery.getScript( window.location.protocol + '//cdn.api.twitter.com/1/urls/count.json?callback=WPCOMSharing.update_twitter_count&url=' + encodeURIComponent( https_url ) ); 22 } 23 24 // LinkedIn actually gets the share count for both the http and https version automatically -- so we don't need to do extra magic 25 if ( jQuery( '#sharing-linkedin-' + WPCOM_sharing_counts[ url ] ).length ) { 26 jQuery.getScript( window.location.protocol + '//www.linkedin.com/countserv/count/share?format=jsonp&callback=WPCOMSharing.update_linkedin_count&url=' + encodeURIComponent( url ) ); 27 } 28 29 WPCOMSharing.done_urls[ WPCOM_sharing_counts[ url ] ] = true; 15 https_url = encodeURIComponent( url.replace( /^http:\/\//i, 'https://' ) ); 16 http_url = encodeURIComponent( url.replace( /^https:\/\//i, 'http://' ) ); 17 18 urls = { 19 facebook: [ 20 'https://graph.facebook.com/?ids=' + 21 http_url + 22 ',' + 23 https_url + 24 '&format=json&callback=WPCOMSharing.update_facebook_count' 25 ], 26 twitter: [ 27 window.location.protocol + 28 '//cdn.api.twitter.com/1/urls/count.json?callback=WPCOMSharing.update_twitter_count&url=' + 29 http_url, 30 window.location.protocol + 31 '//cdn.api.twitter.com/1/urls/count.json?callback=WPCOMSharing.update_twitter_count&url=' + 32 https_url 33 ], 34 // LinkedIn actually gets the share count for both the http and https version automatically -- so we don't need to do extra magic 35 linkedin: [ 36 window.location.protocol + 37 '//www.linkedin.com/countserv/count/share?format=jsonp&callback=WPCOMSharing.update_linkedin_count&url=' + 38 encodeURIComponent( url ) 39 ] 40 }; 41 42 for ( service in urls ) { 43 if ( ! jQuery( 'a[data-shared=sharing-' + service + '-' + id + ']' ).length ) { 44 continue; 45 } 46 47 while ( ( service_url = urls[ service ].pop() ) ) { 48 jQuery.getScript( service_url ); 49 } 50 } 51 52 WPCOMSharing.done_urls[ id ] = true; 30 53 }, 31 54 // get the version of the url that was stored in the dom (sharing-$service-URL) … … 73 96 } 74 97 }, 75 inject_share_count : function( dom_id, count ) {76 var $share = jQuery( ' #' + dom_id + ' span:first');98 inject_share_count : function( id, count ) { 99 var $share = jQuery( 'a[data-shared=' + id + '] > span'); 77 100 $share.find( '.share-count' ).remove(); 78 101 $share.append( '<span class="share-count">' + WPCOMSharing.format_count( count ) + '</span>' ); -
jetpack/trunk/modules/site-icon.php
r1038914 r1043793 14 14 include dirname( __FILE__ ) . '/site-icon/site-icon-functions.php'; 15 15 16 Jetpack_Sync::sync_options( __FILE__, ' site_icon_url' );16 Jetpack_Sync::sync_options( __FILE__, 'jetpack_site_icon_url' ); -
jetpack/trunk/modules/site-icon/css/site-icon-admin.css
r1003386 r1043793 3 3 */ 4 4 5 .site-icon-image {5 .site-icon-image { 6 6 margin: 0 20px 0 0; 7 7 float: left; 8 8 } 9 .site-icon-content {9 .site-icon-content { 10 10 padding: 10px; 11 11 position: relative; … … 15 15 max-width: 720px; 16 16 } 17 18 17 .site-icon-crop-preview-shell { 19 18 float: right; … … 21 20 overflow: hidden; 22 21 } 23 .site-icon-crop-preview-shell h3 {22 .site-icon-crop-preview-shell h3 { 24 23 margin-top: 0; 25 24 } 26 .site-icon-crop-favicon-preview-shell {25 .site-icon-crop-favicon-preview-shell { 27 26 position: relative; 28 27 margin-bottom: 20px; 29 28 } 30 .site-icon-crop-preview-favicon {29 .site-icon-crop-preview-favicon { 31 30 width:16px; 32 31 height:16px; … … 36 35 left:102px; 37 36 } 38 .site-icon-browser-title {37 .site-icon-browser-title { 39 38 position: absolute; 40 39 top:23px; … … 42 41 width:100px; 43 42 overflow: hidden; 44 height:16px; 43 height:16px; 45 44 } 46 45 .site-icon-crop-preview-homeicon { … … 50 49 border-radius: 16px; 51 50 } 52 .site-icon-title .small {51 .site-icon-title .small { 53 52 color:#999; 54 53 font-size: 16px; 55 54 } 55 .wp-core-ui .site-icon-submit-form .button { 56 vertical-align: middle; 57 } -
jetpack/trunk/modules/site-icon/jetpack-site-icon.php
r1041038 r1043793 18 18 class Jetpack_Site_Icon { 19 19 20 public $ option_name = 'site_icon';21 public $module = 'site_icon';22 public $version = 1;20 public $module = 'site-icon'; 21 public static $version = 1; 22 public static $assets_version = 2; 23 23 24 24 public static $min_size = 512; // the minimum size of the blavatar, 512 is the same as wp.com can be overwritten by SITE_ICON_MIN_SIZE … … 142 142 public function upload_balavatar_head() { 143 143 144 wp_register_script( 'site-icon-crop', plugin_dir_url( __FILE__ ). "js/site-icon-crop.js" , array( 'jquery', 'jcrop' ) , $this->version, false);144 wp_register_script( 'site-icon-crop', plugin_dir_url( __FILE__ ). "js/site-icon-crop.js" , array( 'jquery', 'jcrop' ) , self::$assets_version, false); 145 145 if ( isset( $_REQUEST['step'] ) && $_REQUEST['step'] == 2 ) { 146 146 wp_enqueue_script( 'site-icon-crop' ); … … 155 155 global $post; 156 156 157 if( $post->ID == get_option( 'site_icon_id' ) ) {157 if( $post->ID == Jetpack_Options::get_option( 'site_icon_id' ) ) { 158 158 $media_states[] = __( 'Site Icon', 'jetpack' ); 159 159 } … … 166 166 * Direct the user to the Settings -> General 167 167 */ 168 p rivatefunction jetpack_configuration_load() {169 wp_safe_redirect( admin_url( 'options-general.php#site _icon' ) );168 public static function jetpack_configuration_load() { 169 wp_safe_redirect( admin_url( 'options-general.php#site-icon' ) ); 170 170 exit; 171 171 } … … 176 176 public function admin_init() { 177 177 /* register the styles and scripts */ 178 wp_register_style( 'site-icon-admin' , plugin_dir_url( __FILE__ ). "css/site-icon-admin.css", array(), $this->version ); 179 //wp_register_script( 'site-icon-admin', plugin_dir_url( __FILE__ ). "js/site-icon-admin.js" , array( 'jquery' ) , $this->version, true ); 178 wp_register_style( 'site-icon-admin' , plugin_dir_url( __FILE__ ). "css/site-icon-admin.css", array(), self::$assets_version ); 180 179 // register the settings 181 180 add_settings_section( … … 187 186 188 187 // We didn't have site_icon_url in 3.2 // this could potentially be removed in a year 189 if( get_option( 'site_icon_id' ) && ! get_option( 'site_icon_url' ) ) { 190 update_option( 'site_icon_url', jetpack_site_icon_url( get_current_blog_id(), 512 ) ); 188 if( get_option( 'site_icon_id' ) && ! Jetpack_Options::get_option( 'site_icon_url' ) ) { 189 Jetpack_Options::update_option( 'site_icon_id', get_option( 'site_icon_id' ) ); 190 Jetpack_Options::update_option( 'site_icon_url', jetpack_site_icon_url( get_current_blog_id(), 512 ) ); 191 delete_option( 'site_icon_id' ); 192 delete_option( 'site_icon_url' ); // @todo don't include in 3.3 191 193 } 192 194 } … … 203 205 && wp_verify_nonce( $_GET['nonce'], 'remove_site_icon' ) ) { 204 206 205 $site_icon_id = get_option( 'site_icon_id' );207 $site_icon_id = Jetpack_Options::get_option( 'site_icon_id' ); 206 208 // Delete the previous Blavatar 207 209 self::delete_site_icon( $site_icon_id, true ); 208 wp_safe_redirect( admin_url( 'options-general.php#site _icon' ) );210 wp_safe_redirect( admin_url( 'options-general.php#site-icon' ) ); 209 211 } 210 212 } … … 216 218 public function site_icon_settings() { 217 219 $upload_blavatar_url = admin_url( 'options-general.php?page=jetpack-site_icon-upload' ); 218 219 // only load the220 // wp_enqueue_script( 'site-icon-admin' );221 220 222 221 // lets delete the temp data that we might he holding on to … … 285 284 <p><input name="site-iconfile" id="site-iconfile" type="file" /></p> 286 285 <p><?php esc_html_e( 'The image needs to be at least', 'jetpack' ); ?> <strong><?php echo self::$min_size; ?>px</strong> <?php esc_html_e( 'in both width and height.', 'jetpack' ); ?></p> 287 <p class="submit ">286 <p class="submit site-icon-submit-form"> 288 287 <input name="submit" value="<?php esc_attr_e( 'Upload Image' , 'jetpack' ); ?>" type="submit" class="button button-primary button-large" /><?php printf( __( ' or <a href="%s">Cancel</a> and go back to the settings.' , 'jetpack' ), esc_url( admin_url( 'options-general.php' ) ) ); ?> 289 288 <input name="step" value="2" type="hidden" /> … … 291 290 <?php wp_nonce_field( 'update-site_icon-2', '_nonce' ); ?> 292 291 </p> 293 </div>294 292 </form> 295 293 <?php … … 324 322 <div class="site-icon-crop-shell"> 325 323 <form action="" method="post" enctype="multipart/form-data"> 326 <p ><input name="submit" value="<?php esc_attr_e( 'Crop Image', 'jetpack' ); ?>" type="submit" class="button button-primary button-large" /><?php printf( __( ' or <a href="%s">Cancel</a> and go back to the settings.' , 'jetpack' ), esc_url( admin_url( 'options-general.php' ) ) ); ?></p>324 <p class="site-icon-submit-form"><input name="submit" value="<?php esc_attr_e( 'Crop Image', 'jetpack' ); ?>" type="submit" class="button button-primary button-large" /><?php printf( __( ' or <a href="%s">Cancel</a> and go back to the settings.' , 'jetpack' ), esc_url( admin_url( 'options-general.php' ) ) ); ?></p> 327 325 <div class="site-icon-crop-preview-shell"> 328 326 … … 383 381 384 382 // Delete the previous site_icon 385 $previous_site_icon_id = get_option( 'site_icon_id' );383 $previous_site_icon_id = Jetpack_Options::get_option( 'site_icon_id' ); 386 384 self::delete_site_icon( $previous_site_icon_id ); 387 385 … … 391 389 $dir = wp_upload_dir(); 392 390 393 $site_icon_filename = $image_edit->generate_filename( dechex ( time() ) . '_site_icon', null, 'png' );391 $site_icon_filename = $image_edit->generate_filename( dechex ( time() ) . 'v' . self::$version . '_site_icon', null, 'png' ); 394 392 $image_edit->save( $site_icon_filename ); 395 393 … … 405 403 406 404 // Save the site_icon data into option 407 update_option( 'site_icon_id', $site_icon_id );405 Jetpack_Options::update_option( 'site_icon_id', $site_icon_id ); 408 406 409 407 //Get the site icon URL ready to sync 410 update_option( 'site_icon_url', jetpack_site_icon_url( get_current_blog_id(), 512 ) );408 Jetpack_Options::update_option( 'site_icon_url', jetpack_site_icon_url( get_current_blog_id(), 512 ) ); 411 409 412 410 ?> … … 496 494 public static function delete_attachment_data( $post_id ) { 497 495 // The user could be deleting the site_icon image 498 $site_icon_id = get_option( 'site_icon_id' );496 $site_icon_id = Jetpack_Options::get_option( 'site_icon_id' ); 499 497 if( $site_icon_id && $post_id == $site_icon_id ) { 500 delete_option( 'site_icon_id' );501 delete_option( 'site_icon_url' );498 Jetpack_Options::delete_option( 'site_icon_id' ); 499 Jetpack_Options::delete_option( 'site_icon_url' ); 502 500 } 503 501 // The user could be deleting the temporary images … … 513 511 */ 514 512 public static function delete_attachment_images( $check, $post_id, $meta_key, $single ) { 515 $site_icon_id = get_option( 'site_icon_id' );513 $site_icon_id = Jetpack_Options::get_option( 'site_icon_id' ); 516 514 if( $post_id == $site_icon_id && '_wp_attachment_backup_sizes' == $meta_key && true == $single ) 517 515 add_filter( 'intermediate_image_sizes', array( 'Jetpack_Site_Icon', 'intermediate_image_sizes' ) ); … … 534 532 self::delete_temporay_data(); 535 533 536 // Delete the URL from the Jetpack Options array537 delete_option( 'site_icon_url' );538 539 return delete_option( 'site_icon_id' );534 // Delete the URL from the Jetpack Options array 535 Jetpack_Options::delete_option( 'site_icon_url' ); 536 537 return Jetpack_Options::delete_option( 'site_icon_id' ); 540 538 } 541 539 -
jetpack/trunk/modules/site-icon/js/site-icon-crop.js
r1003386 r1043793 6 6 7 7 updateCoords : function ( coords ) { 8 8 9 9 $('#crop-x').val( coords.x ); 10 10 $('#crop-y').val( coords.y ); … … 33 33 width: Math.round( preview_rx * crop_image.attr( 'width' ) ) + 'px', 34 34 height: Math.round( preview_ry * crop_image.attr( 'height' ) ) + 'px', 35 marginLeft: '-' + Math.round( rx * coords.x) + 'px',36 marginTop: '-' + Math. round(ry * coords.y) + 'px'35 marginLeft: '-' + Math.round( preview_rx * coords.x ) + 'px', 36 marginTop: '-' + Math.floor( preview_ry* coords.y ) + 'px' 37 37 }); 38 38 }, … … 47 47 }); 48 48 jcrop_api.animateTo([Site_Icon_Crop_Data.init_x, Site_Icon_Crop_Data.init_y, Site_Icon_Crop_Data.init_size, Site_Icon_Crop_Data.init_size]); 49 50 49 } 51 50 52 51 }; 53 52 54 53 Site_Icon_Crop.ready(); 55 54 -
jetpack/trunk/modules/site-icon/site-icon-functions.php
r1038914 r1043793 39 39 40 40 if( function_exists( 'get_blog_option' ) ) { 41 $site_icon_id = get_blog_option( $blog_id, ' site_icon_id' );41 $site_icon_id = get_blog_option( $blog_id, 'jetpack_site_icon_id' ); 42 42 } else { 43 $site_icon_id = get_option( 'site_icon_id' );43 $site_icon_id = Jetpack_Options::get_option( 'site_icon_id' ); 44 44 } 45 45 -
jetpack/trunk/modules/subscriptions.php
r1038914 r1043793 469 469 $str = ''; 470 470 471 if ( FALSE === has_filter( 'comment_form', 'show_subscription_checkbox' ) && 1 == get_option( 'stc_enabled', 1 ) ) {471 if ( FALSE === has_filter( 'comment_form', 'show_subscription_checkbox' ) && 1 == get_option( 'stc_enabled', 1 ) && empty( $post->post_password ) ) { 472 472 // Subscribe to comments checkbox 473 473 $str .= '<p class="comment-subscription-form"><input type="checkbox" name="subscribe_comments" id="subscribe_comments" value="subscribe" style="width: auto; -moz-appearance: checkbox; -webkit-appearance: checkbox;"' . $comments_checked . ' /> '; … … 644 644 645 645 <p id="subscribe-email"> 646 <label id="jetpack-subscribe-label" for=" email">646 <label id="jetpack-subscribe-label" for="<?php echo esc_attr( $subscribe_field_id ); ?>"> 647 647 <?php echo !empty( $subscribe_placeholder ) ? esc_html( $subscribe_placeholder ) : esc_html__( 'Email Address:', 'jetpack' ); ?> 648 648 </label> 649 <input type="email" name="email" value="<?php echo esc_attr( $subscribe_email ); ?>" id="<?php echo esc_attr( $subscribe_field_id ) ?>" placeholder="<?php echo esc_attr( $subscribe_placeholder ); ?>" />649 <input type="email" name="email" value="<?php echo esc_attr( $subscribe_email ); ?>" id="<?php echo esc_attr( $subscribe_field_id ); ?>" placeholder="<?php echo esc_attr( $subscribe_placeholder ); ?>" /> 650 650 </p> 651 651 … … 673 673 label.style.width = '1px'; 674 674 label.style.overflow = 'hidden'; 675 676 675 } 677 676 } ) ( document ); -
jetpack/trunk/modules/videopress/videopress-admin-rtl.css
r1003386 r1043793 23 23 margin-right: -220px; 24 24 z-index: 101; 25 box-shadow: 2px 2px 5px 2px rgba( 0, 0, 0, 0.5 );25 box-shadow: -2px 2px 5px 2px rgba( 0, 0, 0, 0.5 ); 26 26 -webkit-border-bottom-left-radius: 2px; 27 27 -webkit-border-bottom-right-radius: 2px; -
jetpack/trunk/modules/videopress/videopress-admin-rtl.min.css
r1003386 r1043793 1 .videopress-modal-backdrop{background:#000;opacity:.7;position:absolute;top:0;width:100%;height:100%;overflow:hidden;z-index:100}.videopress-modal{padding:10px 20px;background:#fff;position:absolute;top:0;width:440px;overflow:hidden;right:50%;margin-right:-220px;z-index:101;box-shadow: 2px 2px 5px 2px rgba(0,0,0,.5);-webkit-border-bottom-left-radius:2px;-webkit-border-bottom-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.videopress-modal .submit{text-align:left;padding:10px 0 5px}.videopress-preview{display:block;float:left;width:65%;margin-top:18px;background:#000;min-height:97px;text-decoration:none}.vp-preview span.videopress-preview-unavailable{width:65%;float:left;text-align:right;margin-left:0}.videopress-preview img{float:right;width:100%}.videopress-preview span{display:block;padding-top:40px;color:#fff!important;text-align:center}.vp-setting .help{margin:0 35% 4px 0}.media-sidebar .vp-setting input[type=checkbox]{float:right;margin-top:10px}.vp-setting label{float:right;margin:8px 5px 0 8px;max-width:135px}.vp-setting input[type=radio]{float:right;margin-top:9px;width:auto}.vp-preview span{margin-top:18px}.uploader-videopress{margin:16px}.uploader-videopress .videopress-errors div{margin:16px 0}1 .videopress-modal-backdrop{background:#000;opacity:.7;position:absolute;top:0;width:100%;height:100%;overflow:hidden;z-index:100}.videopress-modal{padding:10px 20px;background:#fff;position:absolute;top:0;width:440px;overflow:hidden;right:50%;margin-right:-220px;z-index:101;box-shadow:-2px 2px 5px 2px rgba(0,0,0,.5);-webkit-border-bottom-left-radius:2px;-webkit-border-bottom-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.videopress-modal .submit{text-align:left;padding:10px 0 5px}.videopress-preview{display:block;float:left;width:65%;margin-top:18px;background:#000;min-height:97px;text-decoration:none}.vp-preview span.videopress-preview-unavailable{width:65%;float:left;text-align:right;margin-left:0}.videopress-preview img{float:right;width:100%}.videopress-preview span{display:block;padding-top:40px;color:#fff!important;text-align:center}.vp-setting .help{margin:0 35% 4px 0}.media-sidebar .vp-setting input[type=checkbox]{float:right;margin-top:10px}.vp-setting label{float:right;margin:8px 5px 0 8px;max-width:135px}.vp-setting input[type=radio]{float:right;margin-top:9px;width:auto}.vp-preview span{margin-top:18px}.uploader-videopress{margin:16px}.uploader-videopress .videopress-errors div{margin:16px 0} -
jetpack/trunk/scss/atoms/_buttons.scss
r1003386 r1043793 56 56 padding: em(18px, 28px) em(24px, 28px) em(15px, 28px); 57 57 color: #fff; 58 font: 400 2 em/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif; // 28/1458 font: 400 20px/1 "proxima-nova", 'Open Sans', Helvetica, sans-serif; // 28/14 59 59 background: #518d2a; 60 60 z-index: 3; -
jetpack/trunk/scss/jetpack-banners.scss
r1038914 r1043793 1 1 @import "_utilities/mixins/mixins", 2 "atoms/ buttons",2 "atoms/typography/variables", 3 3 "atoms/typography/functions", 4 4 "organisms/banners"; -
jetpack/trunk/scss/organisms/_banners.scss
r1003386 r1043793 1 #message.jp-connect { 1 #message.jp-banner { 2 position: relative; 3 margin-bottom: 26px; 4 padding: 17px 44px 17px 0; 5 border: none; 2 6 background: #81a844; 3 border: none;4 7 color: #fff; 5 8 overflow: hidden; 6 margin-bottom: 26px; 7 padding: 26px 20px; 8 position: relative; 9 box-sizing: border-box; 9 10 10 11 &:after { 12 content: ''; 13 position: absolute; 11 14 bottom: 0; 12 content: ''; 15 right: -100px; 16 width: 100%; 17 height: 50px; 13 18 background: url('../images/the-footcloud.svg') right bottom no-repeat; 14 height: 50px;15 19 pointer-events: none; 16 position: absolute;17 right: -100px;18 width: 100%;19 20 z-index: 1; 20 21 } 21 22 22 a { 23 23 color: #fff; 24 24 } 25 25 h4 { 26 display: block; 26 27 margin: 0; 27 28 padding: 0; 28 } 29 30 .jetpack-install-container { 31 float: left; 32 overflow: hidden; 33 34 .submit { 35 margin: 0; 36 } 37 .download-jetpack { 38 font-size: 1.5em; 39 margin: 0 18px 0 0; 40 padding: em(12px, 21px) em(18px, 21px) em(8px, 21px) em(12px, 21px); 41 border-radius: 0; 42 box-shadow: 43 0 4px 0 #3e6c20, 44 0 2px 3px rgba(0,0,0,.2) 45 ; 46 47 &:hover, 48 &:focus { 49 box-shadow: 50 0 4px 0 #3e6c20, 51 0 2px 3px rgba(0,0,0,.2) 52 ; 53 } 54 &:active { 55 outline: none; 56 top: 2px; 57 box-shadow: 58 0 0px 0 #3e6c20, 59 0 0 0 rgba(0,0,0,.2) 60 ; 61 62 &:after { 63 // fixes buggy clicks 64 top: -2px; 65 } 66 } 67 &:before { 68 top: -2px; 69 margin-right: 13px; 70 width: 22px; 71 height: 22px; 72 } 73 } 74 } 75 .jetpack-close-button-container { 76 right: 18px; 77 position: absolute; 78 top: 18px; 79 80 a { 81 &:before { 82 color: #a7c979; 83 content: '\f158'; 84 font: normal 20px/1 'dashicons'; 85 } 86 &:hover { 87 opacity: 0.8; 88 } 89 &:active { 90 opacity: 1; 91 outline: none; 92 } 93 } 94 } 95 .jetpack-text-container { 96 color: #dfffcc; 97 float: left; 98 margin-top: -4px; 99 100 p { 101 margin: 0; 102 padding: 0; 103 104 strong { 105 color: #fff; 106 display: block; 107 font-size: 170%; 108 font-weight: normal; 109 } 110 } 111 } 112 } 113 @media (max-width: 1130px) { 114 #message.jp-connect { 115 .jetpack-install-container { 116 float: none; 117 } 118 .jetpack-text-container { 119 float: none; 120 margin-top: 18px; 121 padding-right: 30px; 122 123 p { 124 float: left; 125 font-size: 14px; 126 margin-right: 4px; 127 128 strong { 129 font-size: 14px; 130 font-weight: bold; 131 } 132 } 133 } 134 } 135 } 136 137 @media (max-width: 420px) { 138 #message.jp-connect { 139 .jetpack-install-container .download-jetpack { 140 font-size: 16px; 141 letter-spacing: -0.05em; 142 padding: 9px 8px; 143 text-align: center; 144 width: 80%; 145 146 &:before { 147 display: none; 148 } 149 } 150 } 151 } 29 color: #fff; 30 font-size: 20px; 31 line-height: 1.3; 32 font-weight: normal; 33 34 + p { 35 margin-top: 10px; 36 } 37 } 38 } 39 40 .jp-banner a { 41 padding: 0; 42 } 43 44 #message .jp-banner__content { 45 color: #dfffcc; 46 padding: 0 0 0 20px; 47 box-sizing: border-box; 48 width: 75%; 49 50 @media ( max-width: 768px ) { 51 width: auto; 52 53 } 54 &.is-connection { 55 width: 50%; 56 } 57 a { 58 // Medium text underline hack 59 background-image: linear-gradient(to bottom, rgba(0,0,0,0) 75%, #fff 50%); 60 background-repeat: repeat-x; 61 background-size: 2px 2px; 62 background-position: 0 1.2em; 63 64 @media not all, only screen and (min-resolution: 2dppx), only screen and (-webkit-min-device-pixel-ratio: 2) { 65 background-image: linear-gradient(to bottom, rgba(0,0,0,0) 75%, #fff 75%); 66 background-repeat: repeat-x; 67 } 68 } 69 p { 70 margin: 0; 71 padding: 0; 72 line-height: 1.5; 73 } 74 } 75 76 #message .jp-banner__action-container { 77 position: absolute; 78 top: 0; 79 right: 0; 80 padding-left: 20px; 81 width: 25%; 82 height: 100%; 83 box-sizing: border-box; 84 85 @media ( max-width: 768px ) { 86 position: static; 87 margin: 14px 0 9px; 88 width: 100%; 89 } 90 &.is-full-width { 91 position: static; 92 margin: 14px 0 9px; 93 width: 100%; 94 height: auto; 95 } 96 &.is-connection { 97 width: 50%; 98 99 @media ( max-width: 768px ) { 100 width: 100%; 101 } 102 } 103 } 104 105 #message .jp-banner__button { 106 display: inline-block; 107 position: absolute; 108 top: 50%; 109 left: 20px; 110 margin-top: -23px; 111 padding: em(12px, 21px) em(18px, 21px) em(8px, 21px) em(12px, 21px); 112 border-radius: 6px; 113 box-sizing: border-box; 114 background: #518d2a; 115 box-shadow: 116 0 4px 0 #3e6c20, 117 0 2px 3px rgba(0,0,0,.2); 118 font: 400 1.5em/1 'Open Sans', Helvetica, sans-serif; 119 transition: all .1s ease-in-out; 120 121 @media ( max-width: 768px ) { 122 position: static; 123 margin: 0; 124 } 125 @media ( max-width: 420px ) { 126 display: block; 127 width: 100%; 128 text-align: center; 129 font-size: 1.1em; 130 } 131 &:hover, 132 &:focus { 133 box-shadow: 134 0 4px 0 #3e6c20, 135 0 2px 3px rgba(0,0,0,.2); 136 } 137 &:active { 138 outline: none; 139 transform: translateY(2px); 140 box-shadow: 141 0 0px 0 #3e6c20, 142 0 0 0 rgba(0,0,0,.2); 143 144 &:after { 145 // fixes buggy clicks 146 top: -2px; 147 } 148 } 149 &:before { 150 content: ''; 151 display: inline-block; 152 position: relative; 153 vertical-align: middle; 154 background: url('../images/connect-plug.svg') center center no-repeat; 155 background-size: 100%; 156 top: -2px; 157 margin-right: 13px; 158 width: 22px; 159 height: 22px; 160 161 @media ( max-width: 420px ) { 162 display: none; 163 } 164 } 165 } 166 167 #message .is-full-width .jp-banner__button { 168 position: static; 169 margin: 0; 170 } 171 172 // Changes icon for opt-in message 173 #message .is-opt-in .jp-banner__button:before { 174 content: "\f147"; 175 width: 20px; 176 height: 20px; 177 background: none; 178 font: normal 20px/1 Dashicons; 179 } 180 181 #message .jp-banner__dismiss { 182 position: absolute; 183 top: 0; 184 right: 0; 185 width: 44px; 186 height: 44px; 187 text-align: center; 188 z-index: 99; 189 190 &:before { 191 color: #a7c979; 192 content: '\f158'; 193 font: normal 20px/44px 'dashicons'; 194 } 195 &:hover { 196 opacity: 0.8; 197 } 198 &:active { 199 opacity: 1; 200 outline: none; 201 } 202 } -
jetpack/trunk/scss/templates/_main.scss
r1008014 r1043793 794 794 } 795 795 }; 796 } 796 } 797 797 @include breakpoint(desktop){ 798 798 margin: 1% 0 1% 2%; … … 984 984 } 985 985 } 986 .button-secondary { 986 .button-secondary, 987 .button-primary:active { 988 // fixing weird core bug thingy 987 989 vertical-align: baseline; 988 990 } … … 1269 1271 z-index: 2; 1270 1272 1273 &.is-opt-in { 1274 margin: 50px 0 0; 1275 max-width: 100%; 1276 padding: 10px 15px; 1277 background: #fff; 1278 border: 0; 1279 box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); 1280 font-size: 13px; 1281 text-align: center; 1282 1283 // page=jetpack specific styling 1284 .subhead & { 1285 margin: 0; 1286 padding-bottom: 0; 1287 background: transparent; 1288 box-shadow: none; 1289 1290 .jp-button { 1291 display: inline-block; 1292 } 1293 } 1294 p { 1295 color: #3c4549; 1296 } 1297 .jp-button { 1298 margin-top: 15px; 1299 display: none; 1300 } 1301 } 1271 1302 h4 { 1272 1303 color: #fff; … … 1302 1333 } 1303 1334 } 1335 a { 1336 color:#FFF; 1337 border-bottom:1px solid #D5E4BD; 1338 } a:hover{ 1339 border-bottom:1px solid #F1F6E9; 1340 } 1304 1341 } 1305 1342 &.error .squeezer:before, -
jetpack/trunk/views/admin/admin-page.php
r1003386 r1043793 32 32 <?php elseif ( $data['is_connected'] ) : ?> 33 33 <h2><?php _e("You're successfully connected to Jetpack!", 'jetpack' ); ?></h2> 34 <?php 35 if ( Jetpack::init()->can_display_jetpack_manage_notice() ) { 36 Jetpack::init()->opt_in_jetpack_manage_notice(); 37 } 38 ?> 34 39 <?php else : ?> 35 40 <h2><?php _e('Once you’ve connected Jetpack, you’ll get access to all the delightful features below.', 'jetpack' ); ?></h2>
Note: See TracChangeset
for help on using the changeset viewer.