Changeset 299558
- Timestamp:
- 11/21/2025 05:36:19 AM (3 days ago)
- Location:
- security-services-elementor/0.2.0
- Files:
-
- 1 added
- 10 edited
- 1 copied
-
. (copied) (copied from security-services-elementor/0.1.9)
-
archive.php (modified) (3 diffs)
-
assets/js/script.js (modified) (1 diff)
-
functions.php (modified) (1 diff)
-
includes/customizer.php (modified) (1 diff)
-
includes/product-create.php (added)
-
index.php (modified) (3 diffs)
-
page.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
search.php (modified) (3 diffs)
-
sidebar.php (modified) (1 diff)
-
style.css (modified) (149 diffs)
Legend:
- Unmodified
- Added
- Removed
-
security-services-elementor/0.2.0/archive.php
r294970 r299558 131 131 </div> 132 132 <div class="col-lg-4 col-md-4"> 133 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 133 <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 134 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 134 135 <?php 135 136 dynamic_sidebar('sidebar-2'); … … 166 167 </div> 167 168 <div class="col-lg-3 col-md-3"> 168 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 169 <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 170 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 169 171 <?php 170 172 dynamic_sidebar('sidebar-2'); … … 173 175 </div> 174 176 <div class="col-lg-3 col-md-3"> 175 <div class="sidebar-area sidebar-three <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 177 <div class="sidebar-area sidebar-three <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 178 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 176 179 <?php 177 180 dynamic_sidebar('sidebar-3'); -
security-services-elementor/0.2.0/assets/js/script.js
r294970 r299558 247 247 } 248 248 }); 249 250 /* =============================================== 251 sticky sidebar 252 ============================================= */ 253 254 window.addEventListener('scroll', function () { 255 var security_services_elementor_sidebar = document.querySelector('.sidebar-sticky'); 256 if (!security_services_elementor_sidebar) return; 257 258 var security_services_elementor_scrollTop = window.scrollY || document.documentElement.scrollTop; 259 var security_services_elementor_windowHeight = window.innerHeight; 260 var security_services_elementor_documentHeight = document.documentElement.scrollHeight; 261 262 var security_services_elementor_isBottom = security_services_elementor_scrollTop + security_services_elementor_windowHeight >= security_services_elementor_documentHeight - 100; 263 264 if (security_services_elementor_scrollTop >= 100 && !security_services_elementor_isBottom) { 265 security_services_elementor_sidebar.classList.add('sidebar-fixed'); 266 } else { 267 security_services_elementor_sidebar.classList.remove('sidebar-fixed'); 268 } 269 }); -
security-services-elementor/0.2.0/functions.php
r288878 r299558 420 420 define('SECURITY_SERVICES_ELEMENTOR_LIVE_DEMO',__('https://preview.wpelemento.com/security-services-elementor/','security-services-elementor')); 421 421 define('SECURITY_SERVICES_ELEMENTOR_THEME_BUNDLE',__('https://www.wpelemento.com/products/wordpress-theme-bundle','security-services-elementor')); 422 423 require get_template_directory() . '/includes/product-create.php'; 424 425 if( class_exists( 'Whizzie' ) ) { 426 $Whizzie = new Whizzie(); 427 } 422 428 } 423 429 add_action('after_setup_theme', 'security_services_elementor_enqueue_setting'); -
security-services-elementor/0.2.0/includes/customizer.php
r294970 r299558 688 688 'type' => 'custom', 689 689 'tab' => 'general', 690 'settings' => 'security_services_elementor_enable_sidebar_sticky_heading', 691 'section' => 'security_services_elementor_additional_setting', 692 'default' => '<h3 style="color: #2271b1; padding:10px; background:#fff; margin:0; border-left: solid 5px #2271b1; ">' . __( 'Sticky Sidebar', 'security-services-elementor' ) . '</h3>', 693 'priority' => 10, 694 ] ); 695 696 Kirki::add_field( 'theme_config_id', [ 697 'type' => 'toggle', 698 'tab' => 'general', 699 'settings' => 'security_services_elementor_enable_sticky_sidebar', 700 'label' => esc_html__( 'Enable or Disable Sticky Sidebar', 'security-services-elementor' ), 701 'section' => 'security_services_elementor_additional_setting', 702 'default' => false, 703 'priority' => 10, 704 ] ); 705 706 Kirki::add_field( 'theme_config_id', [ 707 'type' => 'custom', 708 'tab' => 'general', 690 709 'settings' => 'security_services_elementor_scroll_alignment_heading', 691 710 'section' => 'security_services_elementor_additional_setting', -
security-services-elementor/0.2.0/index.php
r294970 r299558 131 131 </div> 132 132 <div class="col-lg-4 col-md-4"> 133 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 133 <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 134 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 134 135 <?php 135 136 dynamic_sidebar('sidebar-2'); … … 166 167 </div> 167 168 <div class="col-lg-3 col-md-3"> 168 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 169 <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 170 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 169 171 <?php 170 172 dynamic_sidebar('sidebar-2'); … … 173 175 </div> 174 176 <div class="col-lg-3 col-md-3"> 175 <div class="sidebar-area sidebar-three <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 177 <div class="sidebar-area sidebar-three <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 178 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 176 179 <?php 177 180 dynamic_sidebar('sidebar-3'); -
security-services-elementor/0.2.0/page.php
r294970 r299558 51 51 <div class="row"> 52 52 <div class="col-lg-4 col-md-4"> 53 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 53 <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 54 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 54 55 <?php 55 56 dynamic_sidebar('sidebar-2'); … … 97 98 </div> 98 99 <div class="col-lg-4 col-md-4"> 99 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 100 <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 101 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 100 102 <?php 101 103 dynamic_sidebar('sidebar-2'); -
security-services-elementor/0.2.0/readme.txt
r296872 r299558 2 2 Contributors: wpelemento 3 3 Requires at least: 5.0 4 Stable tag: 0. 1.94 Stable tag: 0.2.0 5 5 Requires PHP: 5.6 6 6 Tested up to: 6.8 … … 86 86 87 87 == Changelog == 88 89 = November-20-2025 :: 0.2.0 90 91 * Added sticky sidebar. 92 * Remove unwanted css. 93 * Added premium button in header section, footer section and site title section. 94 * Added header demo import. 88 95 89 96 = October-31-2025 :: 0.1.9 -
security-services-elementor/0.2.0/search.php
r294970 r299558 131 131 </div> 132 132 <div class="col-lg-4 col-md-4"> 133 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 133 <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 134 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 134 135 <?php 135 136 dynamic_sidebar('sidebar-2'); … … 166 167 </div> 167 168 <div class="col-lg-3 col-md-3"> 168 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 169 <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 170 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 169 171 <?php 170 172 dynamic_sidebar('sidebar-2'); … … 173 175 </div> 174 176 <div class="col-lg-3 col-md-3"> 175 <div class="sidebar-area sidebar-three <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 177 <div class="sidebar-area sidebar-three <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 178 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 176 179 <?php 177 180 dynamic_sidebar('sidebar-3'); -
security-services-elementor/0.2.0/sidebar.php
r294970 r299558 9 9 ?> 10 10 11 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 11 <div class="sidebar-area <?php if( get_theme_mod('security_services_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 12 <?php echo esc_attr( get_theme_mod('security_services_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 12 13 <?php if ( ! dynamic_sidebar( 'security-services-elementor-sidebar' ) ) : ?> 13 14 <div role="complementary" aria-label="<?php echo esc_attr__( 'sidebar1', 'security-services-elementor' ); ?>" id="Search" class="sidebar-widget"> -
security-services-elementor/0.2.0/style.css
r296872 r299558 5 5 Theme URI: https://www.wpelemento.com/products/free-security-guard-wordpress-theme 6 6 Author URI: https://www.wpelemento.com/ 7 Version: 0. 1.97 Version: 0.2.0 8 8 Requires PHP: 5.6 9 9 Tested up to: 6.8 … … 38 38 transition: none; 39 39 } 40 40 41 .screen-reader-text:focus { 41 42 background-color: #f1f1f1; … … 57 58 z-index: 100000; 58 59 } 60 59 61 #content[tabindex="-1"]:focus { 60 62 outline: 0; 61 63 } 64 62 65 body { 63 66 font-family: "Outfit", sans-serif; … … 66 69 background: #fff; 67 70 } 71 68 72 h1, 69 73 h2, … … 76 80 font-family: "Outfit", sans-serif; 77 81 } 82 78 83 a { 79 84 color: #121212; … … 84 89 text-decoration: none; 85 90 } 91 86 92 a:hover, 87 93 a:focus { … … 89 95 text-decoration: none; 90 96 } 97 91 98 .post-single a, 92 99 .page-single a, … … 99 106 color: var(--primary-theme-color); 100 107 } 108 101 109 .post-content a { 102 110 color: var(--primary-theme-color); 103 111 } 112 104 113 /* =============================================== 105 114 HEADER BOX … … 108 117 background: #211919; 109 118 } 119 110 120 .quote-btn a { 111 121 border-radius: 6px; … … 117 127 font-weight: 500; 118 128 } 129 119 130 .quote-btn a:hover { 120 131 background: var(--primary-theme-color); … … 122 133 color: #fff; 123 134 } 135 124 136 /* =============================================== 125 137 FOOTER SOCIAL ICONS … … 129 141 padding: 6px 0px; 130 142 } 143 131 144 .footer-links i { 132 145 color: #000; … … 135 148 border-radius: 3px; 136 149 } 150 137 151 .footer-links i:hover { 138 152 color: var(--primary-theme-color); 139 153 } 154 140 155 /* =============================================== 141 156 HEADER IMAGE … … 149 164 background-position: center; 150 165 } 166 151 167 .header-image-box:before { 152 168 position: absolute; … … 159 175 z-index: 1; 160 176 } 177 161 178 .header-image-box h1, 162 179 .headerimgbox-meta span, … … 168 185 color: #fff; 169 186 } 187 170 188 .header-image-box h1 { 171 189 font-size: 65px; 172 190 } 191 173 192 .header-image-box h1, 174 193 .post-title a { 175 194 word-wrap: break-word; 176 195 } 196 177 197 /* =============================================== 178 198 LOGO BOX … … 190 210 font-weight: bold; 191 211 } 212 192 213 .logo span { 193 214 display: block; … … 196 217 color: #fff; 197 218 } 219 198 220 /* =============================================== 199 221 MENU BOX … … 203 225 position: relative; 204 226 } 227 205 228 #main-menu ul { 206 229 margin: 0; … … 208 231 display: block; 209 232 } 233 210 234 #main-menu ul li { 211 235 position: relative; … … 214 238 text-align: left; 215 239 } 240 216 241 #main-menu ul li a { 217 242 display: block; … … 224 249 text-transform: capitalize; 225 250 } 251 226 252 #main-menu .sub-menu li a:hover::after { 227 253 display: none; 228 254 } 255 229 256 #main-menu a:hover, 230 257 #main-menu ul li a:hover, 231 #main-menu li:hover >a,258 #main-menu li:hover>a, 232 259 #main-menu a:focus, 233 260 #main-menu ul li a:focus, 234 #main-menu li.focus >a,235 #main-menu li:focus >a,236 #main-menu ul li.current-menu-item >a,237 #main-menu ul li.current_page_item >a,238 #main-menu ul li.current-menu-parent >a,239 #main-menu ul li.current_page_ancestor >a,240 #main-menu ul li.current-menu-ancestor >a {261 #main-menu li.focus>a, 262 #main-menu li:focus>a, 263 #main-menu ul li.current-menu-item>a, 264 #main-menu ul li.current_page_item>a, 265 #main-menu ul li.current-menu-parent>a, 266 #main-menu ul li.current_page_ancestor>a, 267 #main-menu ul li.current-menu-ancestor>a { 241 268 color: var(--primary-theme-color); 242 269 } 270 243 271 #main-menu ul.children, 244 272 #main-menu ul.sub-menu { … … 256 284 transition: opacity 0.3s ease 0s; 257 285 } 286 258 287 #main-menu ul.children li, 259 288 #main-menu ul.sub-menu li { … … 266 295 margin: 0; 267 296 } 268 #main-menu li li:hover > ul, 269 #main-menu li li:focus > ul, 270 #main-menu li li.focus > ul { 297 298 #main-menu li li:hover>ul, 299 #main-menu li li:focus>ul, 300 #main-menu li li.focus>ul { 271 301 top: 0px; 272 302 left: -100%; 273 303 } 304 274 305 #main-menu ul.children li a, 275 306 #main-menu ul.sub-menu li a { … … 283 314 color: #121212; 284 315 } 316 285 317 #main-menu ul.children li a:hover, 286 318 #main-menu ul.sub-menu li a:hover { … … 289 321 border-radius: 0; 290 322 } 323 291 324 #main-menu ul.children li ul:before, 292 325 #main-menu ul.sub-menu li ul:before, … … 296 329 display: none; 297 330 } 298 #main-menu li:hover > ul, 299 #main-menu li:focus > ul, 300 #main-menu li.focus > ul { 331 332 #main-menu li:hover>ul, 333 #main-menu li:focus>ul, 334 #main-menu li.focus>ul { 301 335 opacity: 1; 302 336 left: 0; 303 337 } 338 304 339 /* =============================================== 305 340 menu dropdown css … … 317 352 color: #fff; 318 353 } 354 319 355 #main-menu ul li.menu-item-has-children { 320 356 padding-right: 10px; 321 357 margin-right: 10px; 322 358 } 359 323 360 #main-menu ul.sub-menu li.menu-item-has-children:after { 324 361 right: 30px; 325 362 } 363 326 364 img.custom-logo { 327 365 max-width: 100%; 328 366 } 367 329 368 /* =============================================== 330 369 POST BOX … … 334 373 background: #f2f8ff; 335 374 } 375 336 376 .post-box { 337 377 box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 9%); … … 339 379 text-align: center; 340 380 } 381 341 382 h3.post-title { 342 383 font-size: 25px; 343 384 } 385 344 386 .related-post h3.post-title { 345 387 font-size: 21px; 346 388 } 389 347 390 .post-content p { 348 391 color: #5b5b5b; 349 392 } 393 350 394 .post-meta, 351 395 .crumb-box a:hover { 352 396 color: var(--primary-theme-color); 353 397 } 398 354 399 pre { 355 400 display: block; … … 364 409 border-radius: 4px; 365 410 } 411 366 412 .post-content img, 367 413 .post-thumbnail img, … … 371 417 max-width: 100%; 372 418 } 419 373 420 .post-content img, 374 421 .post-thumbnail img { … … 376 423 height: auto; 377 424 } 425 378 426 .post-content:after { 379 427 content: ""; … … 381 429 clear: both; 382 430 } 431 383 432 .post-content { 384 433 word-wrap: break-word; 385 434 } 435 386 436 #content, 387 437 footer { … … 389 439 width: 100%; 390 440 } 441 391 442 .box { 392 443 background-color: rgb(171 171 171 / 70%); … … 395 446 position: relative; 396 447 } 448 397 449 .post-box:hover:before { 398 450 opacity: 1; 399 451 transform: translateX(0); 400 452 } 453 401 454 .box img { 402 455 width: 100%; … … 405 458 transition: all 0.5s ease; 406 459 } 460 407 461 .post-box:hover img { 408 462 opacity: 0.2; 409 463 transform: translateX(20px) scale(1.15); 410 464 } 465 411 466 .box .box-content { 412 467 opacity: 0; … … 421 476 transition: all 0.5s ease; 422 477 } 478 423 479 .post-box:hover .box-content { 424 480 opacity: 1; 425 481 transform: scale(1); 426 482 } 483 427 484 p.slider-button a { 428 485 background: var(--primary-theme-color); … … 432 489 font-weight: bold; 433 490 } 491 434 492 p.slider-button a:hover { 435 493 background: #121212; 436 494 } 495 437 496 .post-info span, 438 497 .post-info a { … … 442 501 display: inline-block; 443 502 } 503 444 504 .post-info a:hover, 445 505 .entry-date:hover a, … … 449 509 color: var(--primary-theme-color); 450 510 } 511 451 512 .post-info i { 452 513 color: var(--primary-theme-color); 453 514 font-size: 12px; 454 515 } 516 455 517 /* Edit link */ 456 518 .link-edit { … … 458 520 margin-left: 10px; 459 521 } 522 460 523 .post-info { 461 524 display: inline-block; 462 525 } 526 463 527 .link-edit::before { 464 528 content: "\f044"; 465 529 color: var(--primary-theme-color); 466 530 } 531 467 532 .link-edit::before { 468 533 display: inline-block; … … 471 536 margin-right: 8px; 472 537 } 538 473 539 .post-edit-link { 474 540 color: #000 !important; 475 541 } 542 476 543 /* =============================================== 477 544 Pagination … … 482 549 margin: 25px 0; 483 550 } 551 484 552 .pagination .nav-links a, 485 553 .pagination .nav-links span.current, … … 496 564 background: #f3f4f7; 497 565 } 566 498 567 .pagination .nav-links a:hover, 499 568 .pagination .nav-links a:focus, … … 514 583 color: #fff; 515 584 } 585 516 586 .comment-respond input#submit:hover, 517 587 .comment-reply a:hover { 518 588 background: #121212; 519 589 } 590 520 591 .comment-form-url input, 521 592 nav.navigation.pagination { 522 593 width: 100%; 523 594 } 595 524 596 .comment-respond input#submit { 525 597 background: var(--primary-theme-color); … … 529 601 font-weight: 600; 530 602 } 603 531 604 .comment-content a { 532 605 word-wrap: break-word; 533 606 } 607 534 608 .bypostauthor { 535 609 display: block; 536 610 } 611 537 612 .comments-title { 538 613 font-size: 1.125rem; 539 614 } 615 540 616 .comment-body .pull-left { 541 617 padding-right: 0.625rem; 542 618 } 619 543 620 .comment-list { 544 621 padding-left: 0; 545 622 border-bottom: 1px solid #00000047; 546 623 } 624 547 625 .comment-list .comment { 548 626 display: block; 549 627 } 628 550 629 .comment-list .pingback { 551 630 border-top: 1px solid rgba(0, 0, 0, 0.125); 552 631 padding: 0.563rem 0; 553 632 } 633 554 634 .comment-list .pingback a { 555 635 margin-left: 5px; 556 636 margin-right: 5px; 557 637 } 638 558 639 .comment-content.card-block { 559 640 padding: 15px; 560 641 } 642 561 643 .comment-reply a { 562 644 padding: 10px; … … 564 646 background: var(--primary-theme-color); 565 647 } 648 566 649 /* =============================================== 567 650 SIDEBARS … … 572 655 padding: 0 0 0 20px; 573 656 } 657 574 658 .sidebar-area .textwidget img, 575 659 .footer-area .textwidget img { … … 577 661 height: auto; 578 662 } 663 579 664 .sidebar-area .sidebar-widget { 580 665 margin-bottom: 25px; 581 666 } 667 582 668 .sidebar-area a, 583 669 .sidebar-area p, … … 592 678 font-weight: normal; 593 679 } 680 594 681 .sidebar-area ul, 595 682 #calendar_wrap, … … 599 686 margin: 0; 600 687 } 688 601 689 .sidebar-area ul { 602 690 padding: 15px 30px 25px; … … 604 692 border: solid 1px #e4e7ee; 605 693 } 694 606 695 .wp-calendar .sidebar-area li a, 607 696 .sidebar-area li { … … 609 698 color: #5b5b5b; 610 699 } 700 611 701 .sidebar-area li a:hover, 612 702 .sidebar-area li:hover { 613 703 color: var(--primary-theme-color); 614 704 } 705 615 706 .sidebar-area li { 616 707 padding: 14px 10px; 617 708 border-bottom: solid 1px #e4e7ee; 618 709 } 710 619 711 .sidebar-area h4.title { 620 712 position: relative; … … 623 715 margin-bottom: 20px; 624 716 } 717 625 718 .sidebar-area h4.title:before { 626 719 position: absolute; … … 634 727 margin: auto; 635 728 } 729 636 730 .sidebar-area h4.title:after { 637 731 position: absolute; … … 646 740 margin: auto; 647 741 } 742 648 743 .sidebar-area .tagcloud a, 649 744 .footer-area .tagcloud a { … … 656 751 border: solid 1px #e4e7ee; 657 752 } 753 658 754 .footer-area .tagcloud a { 659 755 border: solid 1px #fff; 660 756 color: #fff; 661 757 } 758 662 759 .sidebar-area .tagcloud a:before, 663 760 .footer-area .tagcloud a:before { 664 761 content: "#"; 665 762 } 763 666 764 .sidebar-area .tagcloud a:hover, 667 765 .footer-area .tagcloud a:hover { … … 669 767 color: #fff; 670 768 } 769 671 770 .sidebar-area .wp-block-group__inner-container h2 { 672 771 color: #000000 !important; 673 772 font-size: 20px; 674 773 } 774 675 775 .sidebar-area select, 676 776 .footer-area select, … … 702 802 border: solid 1px #e4e7ee; 703 803 } 804 704 805 .sidebar-area ol.wp-block-latest-comments { 705 806 padding-left: 0px; 706 807 } 808 707 809 #wp-calendar th, 708 810 #wp-calendar #today, … … 711 813 color: #434343 !important; 712 814 } 815 713 816 #wp-calendar a:hover { 714 817 border: none; 715 818 } 819 716 820 #wp-calendar { 717 821 background: #fff; 718 822 width: 100%; 719 823 } 824 720 825 #wp-calendar caption { 721 826 font-size: 14px; … … 726 831 font-weight: 500; 727 832 } 833 728 834 #wp-calendar th, 729 835 #wp-calendar td { … … 733 839 padding: 3px 6px; 734 840 } 841 735 842 #wp-calendar td a { 736 843 display: block; … … 740 847 text-decoration: underline; 741 848 } 849 742 850 #wp-calendar td#prev a, 743 851 #wp-calendar td#prev a { … … 745 853 text-align: left; 746 854 } 855 747 856 #wp-calendar th { 748 857 font-weight: bold; 749 858 } 859 750 860 tr:nth-child(2n + 2) { 751 861 background-color: #f3f4f7; 752 862 } 863 753 864 .searchform label { 754 865 display: block; 755 866 } 867 756 868 .searchform input[type="text"] { 757 869 width: calc(100% - 110px); … … 762 874 border: none; 763 875 } 876 764 877 #searchform { 765 878 border: solid 1px #e4e7ee; 766 879 border-radius: 30px; 767 880 } 881 768 882 .searchform input[type="submit"] { 769 883 background: var(--primary-theme-color); … … 786 900 transition: color 0.3s ease, background-color 0.3s ease; 787 901 } 902 788 903 .searchform input[type="submit"]:hover, 789 904 .searchform input[type="submit"]:focus { … … 791 906 text-decoration: none; 792 907 } 908 793 909 .searchform:after { 794 910 content: ""; … … 796 912 clear: both; 797 913 } 914 798 915 .footer-widget { 799 916 background: #000; 800 917 } 918 801 919 .footer-copyright { 802 920 background: var(--primary-theme-color); 803 921 } 922 804 923 footer a, 805 924 footer p, … … 817 936 color: #fff; 818 937 } 938 819 939 .footer-area ul { 820 940 padding: 0; 821 941 list-style: none; 822 942 } 943 823 944 .footer-area h4.title { 824 945 font-size: 30px; … … 827 948 word-wrap: break-word; 828 949 } 950 829 951 .footer-area li { 830 952 padding: 8px 0; 831 953 } 954 832 955 .footer-area input[type="search"] { 833 956 width: 100%; … … 836 959 border: solid 1px#4d4d4d; 837 960 } 961 838 962 .footer-area form.woocommerce-product-search button, 839 963 #sidebar form.woocommerce-product-search button { … … 848 972 border: solid 1pxvar (--primary-theme-color); 849 973 } 974 850 975 img.size-auto, 851 976 img.size-full, … … 859 984 height: auto; 860 985 } 986 861 987 .alignleft, 862 988 img.alignleft { … … 866 992 margin-top: 4px; 867 993 } 994 868 995 .alignright, 869 996 img.alignright { … … 873 1000 margin-top: 4px; 874 1001 } 1002 875 1003 div.aligncenter, 876 1004 img.aligncenter { … … 880 1008 float: none; 881 1009 } 1010 882 1011 img.alignleft, 883 1012 img.alignright, … … 885 1014 margin-bottom: 12px; 886 1015 } 1016 887 1017 .wp-caption { 888 1018 line-height: 18px; … … 892 1022 text-align: center; 893 1023 } 1024 894 1025 .wp-caption img { 895 1026 margin: 5px 5px 0; … … 897 1028 height: 100%; 898 1029 } 1030 899 1031 .wp-caption p.wp-caption-text { 900 1032 color: #888; … … 911 1043 border-radius: 30px; 912 1044 } 913 .sidebar-area 914 .widget_search 915 .wp-block-search__inside-wrapper 916 .wp-block-search__input { 1045 1046 .sidebar-area .widget_search .wp-block-search__inside-wrapper .wp-block-search__input { 917 1047 width: calc(100% - 110px); 918 1048 margin: 0; … … 922 1052 border: none; 923 1053 } 1054 924 1055 .sidebar-area .widget_search button.wp-block-search__button.wp-element-button { 925 1056 background: var(--primary-theme-color); … … 942 1073 transition: color 0.3s ease, background-color 0.3s ease; 943 1074 } 1075 944 1076 .sidebar-area .widget_search button.wp-block-search__button:hover, 945 1077 .sidebar-area .widget_search button.wp-block-search__button:focus { … … 947 1079 text-decoration: none; 948 1080 } 1081 949 1082 .sidebar-area .widget_search .wp-block-search__inside-wrapper { 950 1083 content: ""; … … 961 1094 color: #000; 962 1095 } 1096 963 1097 .sidebar-area .wp-block-search label { 964 1098 display: inline; 965 1099 } 1100 966 1101 .sidebar-area .widget_search label:before, 967 1102 .sidebar-area .sidebar-widget.widget_block .wp-block-heading:before { … … 976 1111 margin: auto; 977 1112 } 1113 978 1114 .sidebar-area .widget_search label:after, 979 1115 .sidebar-area .sidebar-widget.widget_block .wp-block-heading:after { … … 989 1125 margin: auto; 990 1126 } 1127 991 1128 .sidebar-area .wp-block-tag-cloud a, 992 1129 .footer-area .wp-block-tag-cloud a, … … 1000 1137 border: solid 1px #e4e7ee; 1001 1138 } 1139 1002 1140 .footer-area .wp-block-tag-cloud a { 1003 1141 border: solid 1px #fff; 1004 1142 color: #fff; 1005 1143 } 1144 1006 1145 .sidebar-area .wp-block-tag-cloud a:before, 1007 1146 .footer-area .wp-block-tag-cloud a:before, … … 1009 1148 content: "#"; 1010 1149 } 1150 1011 1151 .sidebar-area .wp-block-tag-cloud a:hover, 1012 1152 .footer-area .wp-block-tag-cloud a:hover, … … 1015 1155 color: #fff; 1016 1156 } 1157 1017 1158 .sidebar-area ol footer.wp-block-latest-comments__comment-meta { 1018 1159 float: none !important; 1019 1160 } 1161 1020 1162 .sidebar-area ol.wp-block-latest-comments { 1021 1163 padding-left: 0px !important; … … 1024 1166 border: solid 1px #e4e7ee; 1025 1167 } 1168 1026 1169 .footer-area .wp-block-heading { 1027 1170 font-size: 30px; … … 1030 1173 word-wrap: break-word; 1031 1174 } 1175 1032 1176 /* WOOCOMMERCE */ 1033 1177 /* Cart */ … … 1036 1180 margin-left: auto; 1037 1181 } 1182 1038 1183 .wp-block-woocommerce-checkout.alignwide { 1039 1184 margin-right: auto; 1040 1185 margin-left: auto; 1041 1186 } 1187 1042 1188 .wp-block-woocommerce-cart .wc-block-cart-items { 1043 1189 border: 1px solid #dee2e6 !important; … … 1045 1191 padding: 10px; 1046 1192 } 1193 1047 1194 .wp-block-woocommerce-cart-order-summary-block { 1048 1195 border: 1px solid #dee2e6 !important; 1049 1196 box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 9%); 1050 1197 } 1198 1051 1199 .wp-block-woocommerce-cart-order-summary-heading-block { 1052 1200 padding: 10px 20px !important; 1053 1201 background: #f3f4f7 !important; 1054 1202 } 1203 1055 1204 .wc-block-components-product-name { 1056 1205 font-size: 20px; … … 1059 1208 color: #000 !important; 1060 1209 } 1210 1061 1211 .wc-block-cart-items__header-image { 1062 1212 padding-left: 16px !important; 1063 1213 } 1214 1064 1215 .wc-block-cart-items__header-total { 1065 1216 padding-right: 16px !important; 1066 1217 } 1218 1067 1219 .wc-block-components-totals-coupon-link, 1068 1220 .wc-block-cart__submit-container a, … … 1088 1240 text-decoration: none !important; 1089 1241 } 1242 1090 1243 .yith-wcwl-wishlistexistsbrowse a, 1091 1244 .yith-wcwl-wishlistaddedbrowse a { … … 1093 1246 color: #fff !important; 1094 1247 } 1248 1095 1249 .yith-wcwl-add-to-wishlist.exists .yith-wcwl-wishlistaddedbrowse { 1096 1250 display: inline-block !important; 1097 1251 } 1252 1098 1253 .entry-summary .yith-wcwl-add-button a, 1099 1254 .entry-summary .yith-wcwl-wishlistexistsbrowse, … … 1101 1256 margin-bottom: 10px; 1102 1257 } 1258 1103 1259 .wc-block-components-totals-coupon__form button { 1104 1260 margin-top: 0px !important; 1105 1261 } 1262 1106 1263 .entry-summary .yith-wcwl-add-button, 1107 1264 .products .yith-wcwl-add-button { … … 1109 1266 margin-bottom: 10px; 1110 1267 } 1268 1111 1269 .wc-block-cart__submit-container a { 1112 1270 margin-top: 20px; 1113 1271 } 1272 1114 1273 .wc-block-components-totals-coupon-link:hover, 1115 1274 .wc-block-cart__submit-container:hover a, … … 1120 1279 background: #121212; 1121 1280 } 1281 1122 1282 .wc-block-components-totals-coupon { 1123 1283 text-align: center; 1124 1284 } 1285 1125 1286 .wc-block-cart-items__header-product { 1126 1287 background: #f3f4f7 !important; 1127 1288 } 1289 1128 1290 .wc-block-cart-items__header th { 1129 1291 padding: 10px 20px !important; 1130 1292 font-size: 14px; 1131 1293 } 1294 1132 1295 .wc-block-cart__totals-title { 1133 1296 font-size: 14px !important; … … 1135 1298 text-align: center !important; 1136 1299 } 1300 1137 1301 tr.wc-block-cart-items__row { 1138 1302 padding: 15px 15px !important; 1139 1303 } 1304 1140 1305 .wc-block-components-totals-item, 1141 1306 .wc-block-components-totals-item { … … 1143 1308 padding-right: 16px !important; 1144 1309 } 1310 1145 1311 span.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title { 1146 1312 display: block !important; 1147 1313 } 1314 1148 1315 #commentform input[type="text"], 1149 1316 #commentform input[type="email"], … … 1159 1326 height: auto; 1160 1327 } 1328 1161 1329 .woocommerce-message p { 1162 1330 flex-basis: 55%; 1163 1331 } 1332 1164 1333 .product .price ins, 1165 1334 .price .woocommerce-Price-amount.amount { … … 1167 1336 font-weight: 600; 1168 1337 } 1338 1169 1339 .product .price del .woocommerce-Price-amount.amount { 1170 1340 font-size: 18px !important; 1171 1341 font-weight: 500 !important; 1172 1342 } 1343 1173 1344 .product .price { 1174 1345 margin: 10px 0px !important; 1175 1346 } 1347 1176 1348 /* single product review form */ 1177 1349 #reviews .comment-form { … … 1179 1351 flex-direction: column; 1180 1352 } 1353 1181 1354 #reviews .comment-form-author { 1182 1355 order: 1; 1183 1356 } 1357 1184 1358 #reviews .comment-form-email { 1185 1359 order: 2; 1186 1360 } 1361 1187 1362 #reviews .comment-form-comment { 1188 1363 order: 3; 1189 1364 } 1365 1190 1366 #reviews .comment-form-cookies-consent { 1191 1367 order: 4; 1192 1368 } 1369 1193 1370 #reviews .form-submit { 1194 1371 order: 5; … … 1199 1376 padding-left: 0; 1200 1377 } 1378 1201 1379 .wishlist_table.mobile table { 1202 1380 width: auto; 1203 1381 } 1382 1204 1383 .wishlist_table.mobile li { 1205 1384 padding: 15px; 1206 1385 border: 1px solid rgba(0, 0, 0, 0.1); 1207 1386 } 1387 1208 1388 .cart.wishlist_table .additional-info-wrapper { 1209 1389 display: flex; … … 1211 1391 justify-content: space-around; 1212 1392 } 1393 1213 1394 ul.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile { 1214 1395 display: grid; … … 1216 1397 gap: 10px; 1217 1398 } 1399 1218 1400 .wishlist_table.images_grid li .item-details table.item-details-table td.label, 1219 1401 .wishlist_table.mobile li .item-details table.item-details-table td.label, … … 1222 1404 font-size: 16px !important; 1223 1405 } 1406 1224 1407 .wishlist_table.mobile li .item-details table.item-details-table td, 1225 1408 .additional-info .value { … … 1228 1411 font-family: "Exo 2", sans-serif; 1229 1412 } 1413 1230 1414 .main-product-section .wishlist_view { 1231 1415 display: block !important; 1232 1416 } 1417 1233 1418 .share-button i::before { 1234 1419 font-family: "FontAwesome"; 1235 1420 } 1421 1236 1422 .hidden-title-form button i, 1237 1423 .wishlist-title a.show-title-form i, … … 1240 1426 .wishlist_table .add_to_cart.button i, 1241 1427 .wishlist_table .ask-an-estimate-button i, 1242 .yith-wcwl-add-button >a i,1428 .yith-wcwl-add-button>a i, 1243 1429 .yith-wcwl-wishlist-new button i, 1244 1430 .yith-wcwl-wishlist-search-form button.wishlist-search-button i { 1245 1431 margin-right: 0px !important; 1246 1432 } 1433 1247 1434 .wpr-grid-slider-dots { 1248 1435 z-index: 9 !important; 1249 1436 } 1437 1250 1438 .wishlist_table tr td, 1251 1439 .wishlist_table tr th.product-checkbox, … … 1253 1441 text-align: left !important; 1254 1442 } 1443 1255 1444 /* Cart */ 1256 1445 .wc-block-grid__product-title { … … 1259 1448 text-decoration: none !important; 1260 1449 } 1450 1261 1451 a.wc-block-grid__product-link { 1262 1452 text-decoration: none !important; 1263 1453 } 1454 1264 1455 .wc-block-grid__product-price { 1265 1456 color: var(--primary-theme-color) !important; … … 1267 1458 font-weight: 500 !important; 1268 1459 } 1460 1269 1461 .wc-block-grid .wc-block-grid__product-onsale, 1270 1462 .wc-block-grid__product-image .wc-block-grid__product-onsale { … … 1280 1472 color: #fff !important; 1281 1473 } 1474 1282 1475 .wc-block-grid__products .wc-block-grid__product-image img { 1283 1476 width: 100% !important; 1284 1477 } 1478 1285 1479 /* CHECKOUT */ 1286 1480 .wp-block-woocommerce-checkout-order-summary-block { … … 1289 1483 box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 9%); 1290 1484 } 1485 1291 1486 /* MY ACCOUNT */ 1292 1487 … … 1296 1491 margin-bottom: 0; 1297 1492 } 1493 1298 1494 nav.woocommerce-MyAccount-navigation ul li { 1299 1495 padding: 10px; … … 1301 1497 background: var(--primary-theme-color); 1302 1498 } 1499 1303 1500 nav.woocommerce-MyAccount-navigation ul li:hover { 1304 1501 background: #121212; 1305 1502 } 1503 1306 1504 nav.woocommerce-MyAccount-navigation ul li a { 1307 1505 text-decoration: none; 1308 1506 color: #fff; 1309 1507 } 1508 1310 1509 /* MY ACCOUNT Address Button */ 1311 1510 .woocommerce-Address-title a { … … 1318 1517 text-decoration: none !important; 1319 1518 } 1519 1320 1520 header.woocommerce-Address-title.title { 1321 1521 display: inline-grid; 1322 1522 margin-bottom: 20px; 1323 1523 } 1524 1324 1525 /* CHECKOUT */ 1325 1526 .woocommerce form .form-row label, … … 1329 1530 width: 100%; 1330 1531 } 1532 1331 1533 /* BUTTONS */ 1332 1534 .woocommerce #respond input#submit.alt, … … 1344 1546 border-radius: 7px !important; 1345 1547 } 1548 1346 1549 .woocommerce #respond input#submit.alt:hover, 1347 1550 .woocommerce a.button.alt:hover, … … 1356 1559 color: #fff; 1357 1560 } 1561 1358 1562 .woocommerce a.added_to_cart { 1359 1563 padding: 0.618em 1em; … … 1362 1566 border-radius: 0px; 1363 1567 } 1568 1364 1569 /* SHOP & SINGLE PRODUCT */ 1365 1570 … … 1376 1581 min-height: 2em !important; 1377 1582 } 1583 1378 1584 .woocommerce span.onsale { 1379 1585 left: 10px; 1380 1586 right: auto; 1381 1587 } 1588 1382 1589 h2.woocommerce-loop-product__title { 1383 1590 font-size: 18px !important; 1384 1591 } 1592 1385 1593 .woocommerce ul.products li.product .price, 1386 1594 .woocommerce div.product p.price, … … 1391 1599 font-size: 18px; 1392 1600 } 1601 1393 1602 .woocommerce ul.products li.product .price ins, 1394 1603 .woocommerce div.product p.price ins, … … 1396 1605 text-decoration: none; 1397 1606 } 1607 1398 1608 .woocommerce ul.products li.product, 1399 1609 .woocommerce-page ul.products li.product { 1400 1610 text-align: center; 1401 1611 } 1612 1402 1613 .woocommerce .quantity .qty { 1403 1614 width: 9em; 1404 1615 padding: 8px; 1405 1616 } 1617 1406 1618 .woocommerce ul.products li.product .star-rating { 1407 1619 font-size: 12px; … … 1416 1628 background: transparent; 1417 1629 } 1630 1418 1631 .wp-block-button__link { 1419 1632 color: #fff !important; … … 1421 1634 margin-bottom: 5px; 1422 1635 } 1636 1423 1637 .wp-block-button.is-style-outline .wp-block-button__link { 1424 1638 border: 1px solid var(--primary-theme-color); 1425 1639 color: #121212 !important; 1426 1640 } 1641 1427 1642 .wp-block-button.is-style-squared .wp-block-button__link { 1428 1643 border-radius: 0px !important; 1429 1644 } 1645 1430 1646 .product .add_to_cart_button.added { 1431 1647 display: none !important; 1432 1648 } 1649 1433 1650 /* shop page additional css */ 1434 1651 .woocommerce ul.products li.product a img { … … 1439 1656 border-radius: 20px; 1440 1657 } 1658 1441 1659 .woocommerce ul.products li.product, 1442 1660 .woocommerce-page ul.products li.product { … … 1445 1663 padding: 10px; 1446 1664 } 1665 1447 1666 ul.products a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart, 1448 1667 a.added_to_cart.wc-forward { 1449 1668 padding: 8px 30px; 1450 1669 } 1670 1451 1671 ul.products h2.woocommerce-loop-product__title { 1452 1672 color: var(--primary-theme-color); … … 1462 1682 font-weight: bold; 1463 1683 } 1684 1464 1685 .woocommerce nav.woocommerce-pagination ul li a { 1465 1686 display: block; … … 1474 1695 border-radius: 10px; 1475 1696 } 1697 1476 1698 .woocommerce nav.woocommerce-pagination ul li a:hover { 1477 1699 background: var(--primary-theme-color); … … 1485 1707 overflow: unset; 1486 1708 } 1709 1487 1710 .woocommerce nav.woocommerce-pagination { 1488 1711 text-align: center; 1489 1712 margin-bottom: 20px; 1490 1713 } 1714 1491 1715 /* SINGLE POST */ 1492 1716 .single-post-category span { … … 1494 1718 color: #5b5b5b; 1495 1719 } 1720 1496 1721 .single-post-category .post-categories li, 1497 1722 .single-post-category ul { … … 1499 1724 padding-left: 0px; 1500 1725 } 1726 1501 1727 .single-post-category .post-categories li a { 1502 1728 margin-right: 8px; … … 1510 1736 line-height: 1; 1511 1737 } 1738 1512 1739 .single-post-category .post-categories li a:hover { 1513 1740 background: #000000; 1514 1741 } 1742 1515 1743 /*scroll-to-top*/ 1516 1744 .scroll-up { … … 1520 1748 z-index: 999; 1521 1749 } 1750 1522 1751 .scroll-up a { 1523 1752 background: var(--primary-theme-color); 1524 1753 color: #ffffff; 1525 1754 } 1755 1526 1756 .scroll-up a { 1527 1757 display: block; … … 1537 1767 box-shadow: 0 0 10px rgb(0 0 0 / 20%); 1538 1768 } 1769 1539 1770 .scroll-up i { 1540 1771 line-height: 40px; … … 1554 1785 align-items: center; 1555 1786 } 1787 1556 1788 .preloader { 1557 1789 animation: move 0.5s ease infinite alternate; 1558 1790 } 1791 1559 1792 .diamond { 1560 1793 width: 60px; … … 1566 1799 align-items: center; 1567 1800 } 1801 1568 1802 .diamond span { 1569 1803 width: 60px; … … 1573 1807 left: 0; 1574 1808 } 1809 1575 1810 .diamond span:nth-child(1) { 1576 1811 border: 10px solid var(--primary-theme-color); … … 1579 1814 transform: rotateX(90deg) rotateZ(45deg); 1580 1815 } 1816 1581 1817 .diamond span:nth-child(2) { 1582 1818 border: 6px solid var(--primary-theme-color); … … 1585 1821 transform: rotateX(90deg) rotateY(90deg) rotateZ(45deg); 1586 1822 } 1823 1587 1824 .diamond span:last-child { 1588 1825 border: 6px solid var(--primary-theme-color); … … 1591 1828 transform: rotateZ(45deg); 1592 1829 } 1830 1593 1831 @keyframes move { 1594 1832 0% { 1595 1833 transform: translateY(0) scaleY(0.9); 1596 1834 } 1835 1597 1836 100% { 1598 1837 transform: translateY(-70px) scaleY(1.1); 1599 1838 } 1600 1839 } 1840 1601 1841 @keyframes spin { 1602 1842 0% { 1603 1843 transform: translateY(-50%) rotateX(-15deg) rotateY(0deg); 1604 1844 } 1845 1605 1846 100% { 1606 1847 transform: translateY(-50%) rotateX(-15deg) rotateY(180deg); 1607 1848 } 1608 1849 } 1850 1609 1851 .result-search #searchform { 1610 1852 display: table; 1611 1853 } 1854 1612 1855 .not-found-content #searchform { 1613 1856 display: inline-block; 1614 1857 } 1858 1615 1859 .footer-copyright a, 1616 1860 .footer-copyright p { 1617 1861 color: #ffffff; 1618 1862 } 1863 1619 1864 /* =============================================== 1620 1865 Progress Bar … … 1627 1872 z-index: 99999; 1628 1873 } 1874 1629 1875 #elemento-progress-bar.top { 1630 1876 top: 0; 1631 1877 } 1878 1632 1879 .admin-bar #elemento-progress-bar.top { 1633 1880 top: 32px; 1634 1881 } 1882 1635 1883 #elemento-progress-bar.bottom { 1636 1884 bottom: 0; 1637 1885 } 1886 1638 1887 /* =============================================== 1639 1888 HOME PAGE CSS … … 1644 1893 color: var(--primary-theme-color) !important; 1645 1894 } 1895 1646 1896 .info-sec { 1647 1897 border: 1px Solid !important; 1648 1898 } 1899 1649 1900 .plan-sec .price { 1650 1901 font-size: 26px !important; … … 1654 1905 letter-spacing: 0.52px; 1655 1906 } 1907 1656 1908 .plan-sec ul li i { 1657 1909 color: #fff; 1658 1910 font-size: 15px; 1659 1911 } 1912 1660 1913 .plan-sec ul li { 1661 1914 overflow: hidden; … … 1665 1918 } 1666 1919 1667 /* Wide Block */ 1668 1669 .alignwide { 1670 margin-left : -60px; 1671 margin-right : -60px; 1672 } 1920 /* =============================================== 1921 Wide Block 1922 ============================================= */ 1923 1924 .alignwide { 1925 margin-left: -60px; 1926 margin-right: -60px; 1927 } 1928 1673 1929 .alignfull { 1674 margin-left : calc( -100vw / 2 + 100% / 2 ); 1675 margin-right : calc( -100vw / 2 + 100% / 2 ); 1676 max-width : 100vw; 1677 } 1678 1679 /* Sticky Copyright */ 1680 1681 .sticky-copyright.footer-copyright{ 1930 margin-left: calc(-100vw / 2 + 100% / 2); 1931 margin-right: calc(-100vw / 2 + 100% / 2); 1932 max-width: 100vw; 1933 } 1934 1935 /* =============================================== 1936 Sticky Copyright 1937 ============================================= */ 1938 1939 .sticky-copyright.footer-copyright { 1682 1940 position: fixed; 1683 bottom: 0;1684 left: 0;1941 bottom: 0; 1942 left: 0; 1685 1943 width: 100%; 1686 1944 z-index: 999; … … 1688 1946 box-shadow: 0px 0px 8px #000000; 1689 1947 } 1690 .close-sticky { 1691 position: static; 1692 } 1948 1949 /* =============================================== 1950 Sticky Sidebar 1951 ============================================= */ 1952 1953 .sidebar-sticky { 1954 position: sticky; 1955 top: 100px; 1956 z-index: 999; 1957 }
Note: See TracChangeset
for help on using the changeset viewer.