This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .rental-content-service { | |
| background-color: #f00; | |
| padding: 120px 0; | |
| box-shadow: 0 0 0 100vmax #f00; | |
| clip-path: inset(0 -100vmax); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .post-container { | |
| --padding-inline: 20px; | |
| --content-max-width: 1240px; | |
| --wide-max-width: 1440px; | |
| --wide-size: calc((var(--wide-max-width) - var(--content-max-width)) / 2); | |
| display: grid; | |
| grid-template-columns: | |
| [full-width-start] minmax(var(--padding-inline), 1fr) | |
| [wide-start] minmax(0, var(--wide-size)) | |
| [content-start] min(100% - (var(--padding-inline) * 2), var(--content-max-width)) [content-end] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| document.addEventListener('aos:in:num-counter', (e) => { | |
| let endVal = e.detail.dataset.endVal * 1; | |
| let start = 0; | |
| e.detail.textContent = start; | |
| var duration = e.detail.dataset.duration; | |
| var range = endVal - start; | |
| var current = start; | |
| var increment = endVal > start? 1 : -1; | |
| var stepTime = Math.abs(Math.floor(duration / range)); | |
| var timer = setInterval(function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@500;600;700;800&display=swap"); | |
| .svg-icon { | |
| vertical-align: top; | |
| fill: currentColor; | |
| } | |
| .single-product-head { | |
| background-color: #fafafa; | |
| border: 1px solid #f2f2f2; | |
| border-radius: 4px; | |
| padding: 32px 60px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| display: -moz-box; | |
| display: -webkit-box; | |
| -webkit-line-clamp: 2; | |
| -webkit-box-orient: vertical; | |
| line-clamp: 2; | |
| box-orient: vertical; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //disable upadate single plugin | |
| add_filter( 'site_transient_update_plugins', 'filter_plugin_updates' ); | |
| function filter_plugin_updates( $value ) { | |
| unset( $value->response['wpcf7-redirect/wpcf7-redirect.php'] ); | |
| return $value; | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| wp_enqueue_style( 'style', get_template_directory_uri() . '/css/style.css', array(), filemtime(get_template_directory() . '/css/style.css') ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(function() { | |
| $(document).on('scrollstart', function() { | |
| console.log('scroll started') | |
| }) | |
| $(document).on('scrollend', function() { | |
| console.log('scroll ended') | |
| }) |
NewerOlder