Changeset 299557
- Timestamp:
- 11/21/2025 05:36:10 AM (3 days ago)
- Location:
- web-agency-elementor/0.5.1
- Files:
-
- 11 edited
- 1 copied
-
. (copied) (copied from web-agency-elementor/0.5)
-
archive.php (modified) (3 diffs)
-
assets/js/script.js (modified) (1 diff)
-
includes/customizer.php (modified) (1 diff)
-
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) (64 diffs)
-
templates/left-sidebar.php (modified) (1 diff)
-
templates/right-sidebar.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
web-agency-elementor/0.5.1/archive.php
r295622 r299557 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('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 133 <div class="sidebar-area <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 134 <?php echo esc_attr( get_theme_mod('web_agency_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('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 169 <div class="sidebar-area <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 170 <?php echo esc_attr( get_theme_mod('web_agency_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('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 177 <div class="sidebar-area sidebar-three <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 178 <?php echo esc_attr( get_theme_mod('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 176 179 <?php 177 180 dynamic_sidebar('sidebar-3'); -
web-agency-elementor/0.5.1/assets/js/script.js
r295622 r299557 241 241 } 242 242 }); 243 244 /* =============================================== 245 sticky sidebar 246 ============================================= */ 247 248 window.addEventListener('scroll', function () { 249 var web_agency_elementor_sidebar = document.querySelector('.sidebar-sticky'); 250 if (!web_agency_elementor_sidebar) return; 251 252 var web_agency_elementor_scrollTop = window.scrollY || document.documentElement.scrollTop; 253 var web_agency_elementor_windowHeight = window.innerHeight; 254 var web_agency_elementor_documentHeight = document.documentElement.scrollHeight; 255 256 var web_agency_elementor_isBottom = web_agency_elementor_scrollTop + web_agency_elementor_windowHeight >= web_agency_elementor_documentHeight - 100; 257 258 if (web_agency_elementor_scrollTop >= 100 && !web_agency_elementor_isBottom) { 259 web_agency_elementor_sidebar.classList.add('sidebar-fixed'); 260 } else { 261 web_agency_elementor_sidebar.classList.remove('sidebar-fixed'); 262 } 263 }); -
web-agency-elementor/0.5.1/includes/customizer.php
r295622 r299557 476 476 'section' => 'web_agency_elementor_additional_setting', 477 477 'default' => true, 478 'priority' => 10, 479 ] ); 480 481 Kirki::add_field( 'theme_config_id', [ 482 'type' => 'custom', 483 'tab' => 'general', 484 'settings' => 'web_agency_elementor_enable_sidebar_sticky_heading', 485 'section' => 'web_agency_elementor_additional_setting', 486 'default' => '<h3 style="color: #2271b1; padding:10px; background:#fff; margin:0; border-left: solid 5px #2271b1; ">' . __( 'Sticky Sidebar', 'web-agency-elementor' ) . '</h3>', 487 'priority' => 10, 488 ] ); 489 490 Kirki::add_field( 'theme_config_id', [ 491 'type' => 'toggle', 492 'tab' => 'general', 493 'settings' => 'web_agency_elementor_enable_sticky_sidebar', 494 'label' => esc_html__( 'Enable or Disable Sticky Sidebar', 'web-agency-elementor' ), 495 'section' => 'web_agency_elementor_additional_setting', 496 'default' => false, 478 497 'priority' => 10, 479 498 ] ); -
web-agency-elementor/0.5.1/index.php
r295622 r299557 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('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 133 <div class="sidebar-area <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 134 <?php echo esc_attr( get_theme_mod('web_agency_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('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 169 <div class="sidebar-area <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 170 <?php echo esc_attr( get_theme_mod('web_agency_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('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 177 <div class="sidebar-area sidebar-three <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 178 <?php echo esc_attr( get_theme_mod('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 176 179 <?php 177 180 dynamic_sidebar('sidebar-3'); -
web-agency-elementor/0.5.1/page.php
r295622 r299557 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('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 53 <div class="sidebar-area <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 54 <?php echo esc_attr( get_theme_mod('web_agency_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('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 100 <div class="sidebar-area <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 101 <?php echo esc_attr( get_theme_mod('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 100 102 <?php 101 103 dynamic_sidebar('sidebar-2'); -
web-agency-elementor/0.5.1/readme.txt
r295622 r299557 2 2 Contributors: wpelemento 3 3 Requires at least: 5.0 4 Stable tag: 0.5 4 Stable tag: 0.5.1 5 5 Requires PHP: 5.6 6 6 Tested up to: 6.8 … … 64 64 65 65 == Changelog == 66 67 = November-20-2025 :: 0.5.1 68 69 * Added sticky sidebar. 70 * Remove unwanted css. 71 * Fixed minor errors. 66 72 67 73 = October-29-2025 :: 0.5 -
web-agency-elementor/0.5.1/search.php
r295622 r299557 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('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 133 <div class="sidebar-area <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 134 <?php echo esc_attr( get_theme_mod('web_agency_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('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 169 <div class="sidebar-area <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 170 <?php echo esc_attr( get_theme_mod('web_agency_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('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 177 <div class="sidebar-area sidebar-three <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 178 <?php echo esc_attr( get_theme_mod('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 176 179 <?php 177 180 dynamic_sidebar('sidebar-3'); -
web-agency-elementor/0.5.1/sidebar.php
r295622 r299557 9 9 ?> 10 10 11 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 11 <div class="sidebar-area <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 12 <?php echo esc_attr( get_theme_mod('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 12 13 <?php if ( ! dynamic_sidebar( 'web-agency-elementor-sidebar' ) ) : ?> 13 14 <div role="complementary" aria-label="<?php echo esc_attr__( 'sidebar1', 'web-agency-elementor' ); ?>" id="Search" class="sidebar-widget"> -
web-agency-elementor/0.5.1/style.css
r295622 r299557 6 6 Author URI: https://www.wpelemento.com/ 7 7 Requires at least: 5.0 8 Version: 0.5 8 Version: 0.5.1 9 9 Requires PHP: 5.6 10 10 Tested up to: 6.8 … … 24 24 25 25 .screen-reader-text { 26 border: 0; 27 clip: rect(1px, 1px, 1px, 1px); 28 clip-path: inset(50%); 29 height: 1px; 30 margin: -1px; 31 overflow: hidden; 32 padding: 0; 33 position: absolute !important; 34 width: 1px; 35 word-wrap: normal !important; 36 -webkit-transition: none; 37 -moz-transition: none; 38 -o-transition: none; 39 transition: none; 40 } 26 border: 0; 27 clip: rect(1px, 1px, 1px, 1px); 28 clip-path: inset(50%); 29 height: 1px; 30 margin: -1px; 31 overflow: hidden; 32 padding: 0; 33 position: absolute !important; 34 width: 1px; 35 word-wrap: normal !important; 36 -webkit-transition: none; 37 -moz-transition: none; 38 -o-transition: none; 39 transition: none; 40 } 41 41 42 .screen-reader-text:focus { 42 background-color: #f1f1f1; 43 border-radius: 3px; 44 box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); 45 clip: auto !important; 46 clip-path: none; 47 color: #21759b; 48 display: block; 49 font-size: 14px; 50 font-weight: 600; 51 height: auto; 52 left: 5px; 53 line-height: normal; 54 padding: 15px 23px 14px; 55 text-decoration: none; 56 top: 5px; 57 width: auto; 58 z-index: 100000; 59 } 43 background-color: #f1f1f1; 44 border-radius: 3px; 45 box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); 46 clip: auto !important; 47 clip-path: none; 48 color: #21759b; 49 display: block; 50 font-size: 14px; 51 font-weight: 600; 52 height: auto; 53 left: 5px; 54 line-height: normal; 55 padding: 15px 23px 14px; 56 text-decoration: none; 57 top: 5px; 58 width: auto; 59 z-index: 100000; 60 } 61 60 62 #content[tabindex="-1"]:focus { 61 outline: 0; 62 } 63 outline: 0; 64 } 65 63 66 body { 64 font-family: 'Poppins', sans-serif;67 font-family: 'Poppins', sans-serif; 65 68 color: #6b6b87; 66 margin: 0;69 margin: 0; 67 70 background: #fff; 68 71 } 69 h1,h2,h3,h4,h5,h6{ 70 font-weight: bold; 71 color: #1a1b29; 72 } 72 73 h1, 74 h2, 75 h3, 76 h4, 77 h5, 78 h6 { 79 font-weight: bold; 80 color: #1a1b29; 81 } 82 73 83 a { 74 color: #1a1b29;84 color: #1a1b29; 75 85 -webkit-transition: color .1s linear; 76 86 -moz-transition: color .1s linear; … … 79 89 text-decoration: none; 80 90 } 91 81 92 a:hover, 82 93 a:focus { 83 color: var(--primary-theme-color);94 color: var(--primary-theme-color); 84 95 text-decoration: none; 85 96 } 97 86 98 .alignwide { 87 margin-left : -80px; 88 margin-right : -80px; 89 } 99 margin-left: -80px; 100 margin-right: -80px; 101 } 102 90 103 .alignfull { 91 margin-left : calc( -100vw / 2 + 100% / 2 ); 92 margin-right : calc( -100vw / 2 + 100% / 2 ); 93 max-width : 100vw; 94 } 104 margin-left: calc(-100vw / 2 + 100% / 2); 105 margin-right: calc(-100vw / 2 + 100% / 2); 106 max-width: 100vw; 107 } 108 95 109 .alignfull img { 96 110 width: 100vw; 97 111 } 98 .post-single a, .page-single a,.sidebar-area .textwidget a,.comment-content a,.woocommerce-product-details__short-description a,#tab-description a,.extra-home-content a { 112 113 .post-single a, 114 .page-single a, 115 .sidebar-area .textwidget a, 116 .comment-content a, 117 .woocommerce-product-details__short-description a, 118 #tab-description a, 119 .extra-home-content a { 99 120 text-decoration: underline; 100 color: var(--primary-theme-color);121 color: var(--primary-theme-color); 101 122 } 102 123 … … 113 134 border-radius: 30px; 114 135 } 115 .head-btn a:hover{ 116 background: var(--primary-theme-color); 117 color: #fff; 118 } 136 137 .head-btn a:hover { 138 background: var(--primary-theme-color); 139 color: #fff; 140 } 141 119 142 .header { 120 143 position: absolute; … … 122 145 z-index: 9999; 123 146 } 124 .page-template-frontpage .logo p,.page-template-frontpage .logo a,.page-template-frontpage #main-menu ul li a{ 125 color: #1a1b29; 126 } 127 .page-template-frontpage .head-btn a{ 128 background: #1a1b29; 129 color: #fff; 130 } 147 148 .page-template-frontpage .logo p, 149 .page-template-frontpage .logo a, 150 .page-template-frontpage #main-menu ul li a { 151 color: #1a1b29; 152 } 153 154 .page-template-frontpage .head-btn a { 155 background: #1a1b29; 156 color: #fff; 157 } 158 131 159 /* =============================================== 132 160 FOOTER SOCIAL ICONS 133 161 ============================================= */ 134 .footer-links {162 .footer-links { 135 163 text-align: left; 136 164 padding: 6px 0px; 137 165 } 138 .footer-links i{ 166 167 .footer-links i { 139 168 color: #000; 140 169 background: #fff; … … 142 171 border-radius: 3px; 143 172 } 144 .footer-links i:hover{ 173 174 .footer-links i:hover { 145 175 color: var(--primary-theme-color); 146 176 } 177 147 178 /* =============================================== 148 179 HEADER IMAGE 149 180 ============================================= */ 150 181 151 .header-image-box {152 position: relative;153 height: 350px;182 .header-image-box { 183 position: relative; 184 height: 350px; 154 185 display: flex; 155 186 align-items: center; 156 187 background-position: center; 157 188 } 189 158 190 .header-image-box:before { 159 191 position: absolute; … … 167 199 z-index: 1; 168 200 } 169 .header-image-box h1,.headerimgbox-meta span,.crumb-box a,.crumb-box, .header-image-box p{ 201 202 .header-image-box h1, 203 .headerimgbox-meta span, 204 .crumb-box a, 205 .crumb-box, 206 .header-image-box p { 170 207 position: relative; 171 208 z-index: 1; 172 209 color: #fff; 173 210 } 174 .header-image-box h1{ 175 font-size: 65px; 176 } 177 .header-image-box h1 , .post-title a{ 211 212 .header-image-box h1 { 213 font-size: 65px; 214 } 215 216 .header-image-box h1, 217 .post-title a { 178 218 word-wrap: break-word; 179 219 } 220 180 221 /* =============================================== 181 222 LOGO BOX … … 193 234 font-weight: bold; 194 235 } 236 195 237 .logo p { 196 238 display: block; … … 205 247 206 248 #main-menu { 207 display:block; 208 position:relative; 209 float:left; 210 margin:0 auto; 211 width:100% 212 } 249 display: block; 250 position: relative; 251 float: left; 252 margin: 0 auto; 253 width: 100% 254 } 255 213 256 #main-menu ul { 214 margin:0;257 margin: 0; 215 258 padding: 0; 216 display:block; 217 } 259 display: block; 260 } 261 218 262 #main-menu ul li { 219 position:relative; 220 display:block; 221 float:left; 222 text-align:left; 223 } 263 position: relative; 264 display: block; 265 float: left; 266 text-align: left; 267 } 268 224 269 #main-menu ul li a { 225 270 display: block; … … 230 275 font-weight: bold; 231 276 } 277 232 278 #main-menu a:hover, 233 279 #main-menu ul li a:hover, 234 #main-menu li:hover >a,280 #main-menu li:hover>a, 235 281 #main-menu a:focus, 236 282 #main-menu ul li a:focus, 237 #main-menu li.focus > a, 238 #main-menu li:focus > a, 239 #main-menu ul li.current-menu-item > a, 240 #main-menu ul li.current_page_item > a, 241 #main-menu ul li.current-menu-parent > a, 242 #main-menu ul li.current_page_ancestor > a, 243 #main-menu ul li.current-menu-ancestor > a { 244 color:var(--primary-theme-color); 245 } 246 #main-menu ul.children , 283 #main-menu li.focus>a, 284 #main-menu li:focus>a, 285 #main-menu ul li.current-menu-item>a, 286 #main-menu ul li.current_page_item>a, 287 #main-menu ul li.current-menu-parent>a, 288 #main-menu ul li.current_page_ancestor>a, 289 #main-menu ul li.current-menu-ancestor>a { 290 color: var(--primary-theme-color); 291 } 292 293 #main-menu ul.children, 247 294 #main-menu ul.sub-menu { 248 opacity:0; 249 position: absolute; 250 top: 35px; 251 left: -9999em; 252 background:#f5f9ff; 253 z-index:10001; 254 width:213px; 255 padding-left:0; 256 -webkit-transition: opacity 0.3s ease 0s; 257 -moz-transition: opacity 0.3s ease 0s; 258 -o-transition: opacity 0.3s ease 0s; 259 transition: opacity 0.3s ease 0s; 260 } 261 #main-menu ul.children li , 295 opacity: 0; 296 position: absolute; 297 top: 35px; 298 left: -9999em; 299 background: #f5f9ff; 300 z-index: 10001; 301 width: 213px; 302 padding-left: 0; 303 -webkit-transition: opacity 0.3s ease 0s; 304 -moz-transition: opacity 0.3s ease 0s; 305 -o-transition: opacity 0.3s ease 0s; 306 transition: opacity 0.3s ease 0s; 307 } 308 309 #main-menu ul.children li, 262 310 #main-menu ul.sub-menu li { 263 position:relative; 264 margin:0; 265 line-height:1.2em; 266 text-transform:none; 267 width:213px; 268 min-height: inherit; 269 margin:0; 270 } 271 #main-menu li li:hover > ul, 272 #main-menu li li:focus > ul, 273 #main-menu li li.focus > ul { 274 top:0px; 275 left: -100%; 276 } 277 #main-menu ul.children li a , 311 position: relative; 312 margin: 0; 313 line-height: 1.2em; 314 text-transform: none; 315 width: 213px; 316 min-height: inherit; 317 margin: 0; 318 } 319 320 #main-menu li li:hover>ul, 321 #main-menu li li:focus>ul, 322 #main-menu li li.focus>ul { 323 top: 0px; 324 left: -100%; 325 } 326 327 #main-menu ul.children li a, 278 328 #main-menu ul.sub-menu li a { 279 text-decoration:none; 280 text-align:left; 281 display:block; 282 padding:10px 15px; 283 margin:0; 284 border:none; 285 line-height:inherit; 286 color: #1a1b29; 287 border-bottom: solid 1px #e4e7ee; 288 } 329 text-decoration: none; 330 text-align: left; 331 display: block; 332 padding: 10px 15px; 333 margin: 0; 334 border: none; 335 line-height: inherit; 336 color: #1a1b29; 337 border-bottom: solid 1px #e4e7ee; 338 } 339 289 340 #main-menu ul.children li a:hover, 290 #main-menu ul.sub-menu li a:hover{ 291 background: var(--primary-theme-color); 292 color: #fff; 293 } 341 #main-menu ul.sub-menu li a:hover { 342 background: var(--primary-theme-color); 343 color: #fff; 344 } 345 294 346 #main-menu ul.children li ul:before, 295 347 #main-menu ul.sub-menu li ul:before, … … 297 349 .dropdown-toggle, 298 350 button.close-menu { 299 display:none; 300 } 301 #main-menu li:hover > ul, 302 #main-menu li:focus > ul, 303 #main-menu li.focus > ul { 304 opacity:1; 305 left: 0; 306 } 351 display: none; 352 } 353 354 #main-menu li:hover>ul, 355 #main-menu li:focus>ul, 356 #main-menu li.focus>ul { 357 opacity: 1; 358 left: 0; 359 } 360 307 361 /* =============================================== 308 362 Menu dropdown css 309 363 ============================================= */ 310 #main-menu ul li.menu-item-has-children:after {364 #main-menu ul li.menu-item-has-children:after { 311 365 content: ''; 312 366 position: absolute; … … 317 371 display: inline-block; 318 372 padding: 3px; 319 -webkit-transform: translate(0,-50%) rotate(45deg); 320 transform: translate(0,-50%) rotate(45deg); 321 } 322 .page-template-frontpage #main-menu ul li.menu-item-has-children:after{ 373 -webkit-transform: translate(0, -50%) rotate(45deg); 374 transform: translate(0, -50%) rotate(45deg); 375 } 376 377 .page-template-frontpage #main-menu ul li.menu-item-has-children:after { 323 378 border-color: #000; 324 379 } 325 #main-menu ul li.menu-item-has-children{ 380 381 #main-menu ul li.menu-item-has-children { 326 382 padding-right: 15px; 327 383 } 384 328 385 #main-menu ul.sub-menu li.menu-item-has-children:after { 329 386 right: 30px; 330 387 } 331 img.custom-logo{ 388 389 img.custom-logo { 332 390 max-width: 100%; 333 391 } 392 334 393 /* =============================================== 335 394 POST BOX 336 395 ============================================= */ 337 396 338 .sticky .post-content-box{ 339 background: #f2f8ff; 340 } 397 .sticky .post-content-box { 398 background: #f2f8ff; 399 } 400 341 401 .post-box { 342 402 box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 9%); … … 344 404 text-align: center; 345 405 } 406 346 407 h3.post-title { 347 408 font-size: 25px; 348 409 } 349 .post-content p{ 350 color: #6b6b87; 351 } 352 .post-meta,.crumb-box a:hover{ 353 color: #ad7c21; 354 } 410 411 .post-content p { 412 color: #6b6b87; 413 } 414 415 .post-meta, 416 .crumb-box a:hover { 417 color: #ad7c21; 418 } 419 355 420 pre { 356 display: block; 357 padding: 9.5px; 358 margin: 0 0 10px; 359 font-size: 13px; 360 line-height: 1.42857143; 361 color: #1a1b29; 362 white-space: break-spaces; 363 background-color: #f5f5f5; 364 border: 1px solid #ccc; 365 border-radius: 4px; 366 } 421 display: block; 422 padding: 9.5px; 423 margin: 0 0 10px; 424 font-size: 13px; 425 line-height: 1.42857143; 426 color: #1a1b29; 427 white-space: break-spaces; 428 background-color: #f5f5f5; 429 border: 1px solid #ccc; 430 border-radius: 4px; 431 } 432 367 433 .post-content img, 368 434 .post-thumbnail img, … … 370 436 .post-content object, 371 437 .post-content embed { 372 max-width: 100%; 373 } 438 max-width: 100%; 439 } 440 374 441 .post-content img, 375 442 .post-thumbnail img { 376 max-height:100%; 377 height:auto; 378 } 443 max-height: 100%; 444 height: auto; 445 } 446 379 447 .post-content:after { 380 448 content: ""; … … 382 450 clear: both; 383 451 } 384 #content,footer { 452 453 #content, 454 footer { 385 455 float: left; 386 456 width: 100%; 387 457 } 458 388 459 .box { 389 460 background-color: rgb(26 27 41 / 80%); … … 392 463 position: relative; 393 464 } 394 .post-box:hover:before{ 465 466 .post-box:hover:before { 395 467 opacity: 1; 396 468 transform: translateX(0); 397 469 } 398 .box img{ 470 471 .box img { 399 472 width: 100%; 400 473 height: auto; … … 402 475 transition: all 0.5s ease; 403 476 } 404 .post-box:hover img{ 477 478 .post-box:hover img { 405 479 opacity: 0.2; 406 480 transform: translateX(20px) scale(1.15); 407 481 } 408 .box .box-content{ 409 opacity: 0; 482 483 .box .box-content { 484 opacity: 0; 410 485 transform: scale(0); 411 486 position: absolute; … … 418 493 transition: all 0.5s ease; 419 494 } 420 .post-box:hover .box-content{ 495 496 .post-box:hover .box-content { 421 497 opacity: 1; 422 498 transform: scale(1); 423 499 } 500 424 501 p.slider-button a { 425 background-image: linear-gradient(to right, var(--secondary-theme-color) , var(--primary-theme-color));502 background-image: linear-gradient(to right, var(--secondary-theme-color), var(--primary-theme-color)); 426 503 color: #fff; 427 504 padding: 15px 20px; … … 429 506 font-weight: bold; 430 507 } 508 431 509 p.slider-button a:hover { 432 510 background: var(--primary-theme-color); 433 511 color: #fff; 434 512 } 513 435 514 .post-info span, 436 515 .post-info a { … … 440 519 display: inline-block; 441 520 } 521 442 522 .post-info a:hover, 443 523 .entry-date:hover a, 444 .entry-author:hover a 445 { 524 .entry-author:hover a { 446 525 color: var(--primary-theme-color); 447 526 } 527 448 528 .post-info i { 449 529 color: var(--primary-theme-color); 450 530 font-size: 12px; 451 531 } 452 /* Edit link */ 453 .link-edit{ 454 display: inline-block; 455 margin-left: 10px; 456 } 457 .post-info{ 458 display:inline-block; 459 } 460 .link-edit::before { 461 content: "\f044"; 462 color: var(--primary-theme-color); 463 } 464 .link-edit::before { 465 display: inline-block; 466 font-family: 'Font Awesome 6 Free'; 467 height: 15px; 468 margin-right: 8px; 469 } 470 .post-edit-link{ 471 color: #000 !important; 472 } 532 533 /* Edit link */ 534 .link-edit { 535 display: inline-block; 536 margin-left: 10px; 537 } 538 539 .post-info { 540 display: inline-block; 541 } 542 543 .link-edit::before { 544 content: "\f044"; 545 color: var(--primary-theme-color); 546 } 547 548 .link-edit::before { 549 display: inline-block; 550 font-family: 'Font Awesome 6 Free'; 551 height: 15px; 552 margin-right: 8px; 553 } 554 555 .post-edit-link { 556 color: #000 !important; 557 } 558 473 559 /* =============================================== 474 560 Pagination … … 477 563 .pagination, 478 564 .web-agency-elementor-pagination { 479 margin:25px 0; 480 } 565 margin: 25px 0; 566 } 567 481 568 .pagination .nav-links a, 482 569 .pagination .nav-links span.current, 483 570 .web-agency-elementor-pagination a span, 484 571 .web-agency-elementor-pagination span.current { 485 display:inline-block; 486 text-decoration: none; 487 padding:10px 12px; 488 font-size:14px; 489 font-weight: bold; 490 color:#333; 491 text-align:center; 492 cursor:pointer; 493 background:#f3f4f7; 494 } 572 display: inline-block; 573 text-decoration: none; 574 padding: 10px 12px; 575 font-size: 14px; 576 font-weight: bold; 577 color: #333; 578 text-align: center; 579 cursor: pointer; 580 background: #f3f4f7; 581 } 582 495 583 .pagination .nav-links a:hover, 496 584 .pagination .nav-links a:focus, … … 501 589 .web-agency-elementor-pagination a span:hover, 502 590 .web-agency-elementor-pagination a span:focus { 503 background: var(--primary-theme-color);504 color: #fff;591 background: var(--primary-theme-color); 592 color: #fff; 505 593 } 506 594 … … 508 596 ## Comments 509 597 --------------------------------------------------------------*/ 510 .comment-reply a:focus{ 511 color: #fff; 512 } 598 .comment-reply a:focus { 599 color: #fff; 600 } 601 513 602 .comment-respond input#submit:hover, 514 .comment-reply a:hover{ 515 background: var(--primary-theme-color); 516 color: #fff; 517 } 518 .comment-form-url input,nav.navigation.pagination{ 603 .comment-reply a:hover { 604 background: var(--primary-theme-color); 605 color: #fff; 606 } 607 608 .comment-form-url input, 609 nav.navigation.pagination { 519 610 width: 100%; 520 611 } 612 521 613 .comment-respond input#submit { 522 background-image: linear-gradient(to right, var(--secondary-theme-color) , var(--primary-theme-color));614 background-image: linear-gradient(to right, var(--secondary-theme-color), var(--primary-theme-color)); 523 615 border: none; 524 616 color: #fff; … … 526 618 font-weight: 600; 527 619 } 620 528 621 .comment-content a { 529 622 word-wrap: break-word; 530 623 } 624 531 625 .bypostauthor { 532 626 display: block; 533 627 } 628 534 629 .comments-title { 535 630 font-size: 1.125rem; 536 631 } 632 537 633 .comment-body .pull-left { 538 634 padding-right: 0.625rem; 539 635 } 636 540 637 .comment-list { 541 638 padding-left: 0; 542 639 border-bottom: 1px solid #00000047; 543 640 } 641 544 642 .comment-list .comment { 545 643 display: block; 546 644 } 645 547 646 .comment-list .pingback { 548 647 border-top: 1px solid rgba(0, 0, 0, 0.125); 549 648 padding: 0.563rem 0; 550 649 } 650 551 651 .comment-list .pingback a { 552 652 margin-left: 5px; 553 653 margin-right: 5px; 554 654 } 655 555 656 .comment-content.card-block { 556 657 padding: 15px; 557 658 } 659 558 660 .comment-reply a { 559 661 padding: 10px; … … 570 672 padding: 0 0 0 20px; 571 673 } 674 572 675 .sidebar-area .textwidget img, 573 .footer-area .textwidget img {676 .footer-area .textwidget img { 574 677 width: 100%; 575 678 height: auto; 576 679 } 680 577 681 .sidebar-area .sidebar-widget { 578 margin-bottom: 25px; 579 } 682 margin-bottom: 25px; 683 } 684 580 685 .sidebar-area a, 581 686 .sidebar-area p, … … 587 692 .sidebar-area th, 588 693 .sidebar-area .textwidget { 589 line-height:1.9em; 590 font-weight: normal; 591 } 592 .sidebar-area ul,#calendar_wrap,.sidebar-area .textwidget,.tagcloud { 694 line-height: 1.9em; 695 font-weight: normal; 696 } 697 698 .sidebar-area ul, 699 #calendar_wrap, 700 .sidebar-area .textwidget, 701 .tagcloud { 593 702 list-style: none; 594 703 margin: 0; 595 704 } 705 596 706 .sidebar-area ul { 597 707 padding: 15px 30px 25px; … … 599 709 border: solid 1px #e4e7ee; 600 710 } 711 601 712 .sidebar-area li a, 602 713 .sidebar-area li { … … 604 715 color: #6b6b87; 605 716 } 606 .sidebar-area li a:hover, .sidebar-area li:hover{ 717 718 .sidebar-area li a:hover, 719 .sidebar-area li:hover { 607 720 color: var(--primary-theme-color); 608 721 } 722 609 723 .sidebar-area li { 610 724 padding: 14px 10px; 611 725 border-bottom: solid 1px #e4e7ee; 612 726 } 727 613 728 .sidebar-area h4.title { 614 position: relative;729 position: relative; 615 730 font-size: 25px; 616 731 margin-left: 60px; 617 732 margin-bottom: 20px; 618 733 } 734 619 735 .sidebar-area h4.title:before { 620 position: absolute;736 position: absolute; 621 737 content: ""; 622 738 width: 50px; … … 628 744 margin: auto; 629 745 } 746 630 747 .sidebar-area h4.title:after { 631 748 position: absolute; … … 640 757 margin: auto; 641 758 } 759 642 760 .sidebar-area .tagcloud a, 643 761 .footer-area .tagcloud a { … … 650 768 border: solid 1px #e4e7ee; 651 769 } 770 652 771 .sidebar-area .wp-block-group__inner-container h2 { 653 772 color: #000000 !important; 654 773 font-size: 20px; 655 774 } 656 .footer-area .tagcloud a{ 657 border: solid 1px #fff; 658 color: #fff; 659 } 775 776 .footer-area .tagcloud a { 777 border: solid 1px #fff; 778 color: #fff; 779 } 780 660 781 .sidebar-area .tagcloud a:before, 661 .footer-area .tagcloud a:before {782 .footer-area .tagcloud a:before { 662 783 content: "#"; 663 784 } 785 664 786 .sidebar-area .tagcloud a:hover, 665 .footer-area .tagcloud a:hover{ 666 background: var(--primary-theme-color); 667 color: #fff; 668 } 787 .footer-area .tagcloud a:hover { 788 background: var(--primary-theme-color); 789 color: #fff; 790 } 791 669 792 .sidebar-area select, 670 793 .footer-area select, 671 .sidebar-area textarea, #comments textarea, 672 .sidebar-area input[type="text"], #comments input[type="text"], 794 .sidebar-area textarea, 795 #comments textarea, 796 .sidebar-area input[type="text"], 797 #comments input[type="text"], 673 798 .sidebar-area input[type="password"], 674 799 .sidebar-area input[type="datetime"], … … 686 811 .sidebar-area .uneditable-input, 687 812 #comments input[type="email"], 688 #comments input[type="url"]{ 689 -webkit-border-radius: 0; 690 -moz-border-radius: 0; 691 border-radius: 0; 692 width:100%; 693 padding: 5px 2%; 694 border: solid 1px #e4e7ee; 695 } 813 #comments input[type="url"] { 814 -webkit-border-radius: 0; 815 -moz-border-radius: 0; 816 border-radius: 0; 817 width: 100%; 818 padding: 5px 2%; 819 border: solid 1px #e4e7ee; 820 } 821 696 822 #wp-calendar th, 697 #wp-calendar 698 #today, 699 #wp-calendar 700 #today a { 701 background:#f3f4f7; 702 color:#434343 !important; 703 } 823 #wp-calendar #today, 824 #wp-calendar #today a { 825 background: #f3f4f7; 826 color: #434343 !important; 827 } 828 704 829 #wp-calendar a:hover { 705 border:none; 706 } 830 border: none; 831 } 832 707 833 #wp-calendar { 708 background: #fff; 709 width:100%; 710 } 834 background: #fff; 835 width: 100%; 836 } 837 711 838 #wp-calendar caption { 712 font-size: 14px; 713 text-transform:uppercase; 714 margin:0 0 10px 0; 715 text-align:left; 716 } 839 font-size: 14px; 840 text-transform: uppercase; 841 margin: 0 0 10px 0; 842 text-align: left; 843 } 844 717 845 #wp-calendar th, 718 846 #wp-calendar td { 719 text-align: center; 720 font-size: 14px; 721 color:#434343 !important; 722 padding:3px 6px; 723 } 847 text-align: center; 848 font-size: 14px; 849 color: #434343 !important; 850 padding: 3px 6px; 851 } 852 724 853 #wp-calendar td a { 725 display:block; 726 text-align: center; 727 font-size: 14px; 728 color:#434343 !important; 729 text-decoration:underline 730 } 854 display: block; 855 text-align: center; 856 font-size: 14px; 857 color: #434343 !important; 858 text-decoration: underline 859 } 860 731 861 #wp-calendar td#prev a, 732 #wp-calendar td#prev a{ 733 text-decoration:none; 734 text-align:left; 735 } 736 #wp-calendar th{ 737 font-weight:bold 738 } 862 #wp-calendar td#prev a { 863 text-decoration: none; 864 text-align: left; 865 } 866 867 #wp-calendar th { 868 font-weight: bold 869 } 870 739 871 tr:nth-child(2n+2) { 740 background-color: #f3f4f7; 741 } 872 background-color: #f3f4f7; 873 } 874 742 875 .searchform label { 743 display: block; 744 } 876 display: block; 877 } 878 745 879 .searchform input[type=text] { 746 880 width: calc(100% - 110px); … … 751 885 border: none; 752 886 } 887 753 888 #searchform { 754 889 border: solid 1px #e4e7ee; 755 890 border-radius: 30px; 756 891 } 892 757 893 .searchform input[type=submit] { 758 894 background: var(--primary-theme-color); … … 770 906 margin: 4px auto; 771 907 cursor: pointer; 772 -webkit-transition: color .3s ease, background-color .3s ease; 773 -moz-transition: color .3s ease, background-color .3s ease; 774 -o-transition: color .3s ease, background-color .3s ease; 775 transition: color .3s ease, background-color .3s ease; 776 } 777 .searchform input[type=submit]:hover , 908 -webkit-transition: color .3s ease, background-color .3s ease; 909 -moz-transition: color .3s ease, background-color .3s ease; 910 -o-transition: color .3s ease, background-color .3s ease; 911 transition: color .3s ease, background-color .3s ease; 912 } 913 914 .searchform input[type=submit]:hover, 778 915 .searchform input[type=submit]:focus { 779 background: var(--primary-theme-color); 780 text-decoration:none 781 } 916 background: var(--primary-theme-color); 917 text-decoration: none 918 } 919 782 920 .searchform:after { 783 921 content: ""; … … 785 923 clear: both; 786 924 } 787 .footer-widget, .footer-copyright{ 788 background: #1a1b29; 789 } 925 926 .footer-widget, 927 .footer-copyright { 928 background: #1a1b29; 929 } 930 790 931 footer a, 791 932 footer p, … … 797 938 footer .sidebar-area th, 798 939 footer .sidebar-area .title, 799 footer .sidebar-area .textwidget,.footer-area li, 940 footer .sidebar-area .textwidget, 941 .footer-area li, 800 942 .footer-area input[type=text], 801 .wp-block-group__inner-container h2 { 802 color: #fff; 803 } 943 .wp-block-group__inner-container h2 { 944 color: #fff; 945 } 946 804 947 .footer-area ul { 805 948 padding: 0; 806 949 list-style: none; 807 950 } 951 808 952 .footer-area h4.title { 809 font-size: 30px;953 font-size: 30px; 810 954 color: #fff; 811 955 margin-top: 30px; 812 956 } 957 813 958 .footer-area li { 814 padding: 8px 0; 815 } 959 padding: 8px 0; 960 } 961 816 962 img.size-auto, 817 963 img.size-full, … … 822 968 img.aligncenter, 823 969 .attachment img { 824 max-width:100%; 825 height:auto; 826 } 970 max-width: 100%; 971 height: auto; 972 } 973 827 974 .alignleft, 828 975 img.alignleft { 829 display:inline; 830 float:left; 831 margin-right:24px; 832 margin-top:4px; 833 } 976 display: inline; 977 float: left; 978 margin-right: 24px; 979 margin-top: 4px; 980 } 981 834 982 .alignright, 835 983 img.alignright { 836 display:inline; 837 float:right; 838 margin-left:24px; 839 margin-top:4px; 840 } 984 display: inline; 985 float: right; 986 margin-left: 24px; 987 margin-top: 4px; 988 } 989 841 990 div.aligncenter, 842 991 img.aligncenter { 843 display: block; 844 margin-left: auto !important; 845 margin-right: auto !important; 846 float:none; 847 } 992 display: block; 993 margin-left: auto !important; 994 margin-right: auto !important; 995 float: none; 996 } 997 848 998 img.alignleft, 849 999 img.alignright, 850 1000 img.aligncenter { 851 margin-bottom:12px; 852 } 1001 margin-bottom: 12px; 1002 } 1003 853 1004 .wp-caption { 854 line-height:18px; 855 margin-bottom:25px; 856 max-width:100% !important; 857 padding:4px; 858 text-align:center; 859 } 1005 line-height: 18px; 1006 margin-bottom: 25px; 1007 max-width: 100% !important; 1008 padding: 4px; 1009 text-align: center; 1010 } 1011 860 1012 .wp-caption img { 861 margin:5px 5px 0; 862 width:96%; 863 height:100% 864 } 1013 margin: 5px 5px 0; 1014 width: 96%; 1015 height: 100% 1016 } 1017 865 1018 .wp-caption p.wp-caption-text { 866 color:#888; 867 font-size:12px; 868 margin:5px; 869 } 870 .sticky { 871 } 872 873 .gallery-caption { 874 } 875 876 .bypostauthor { 877 } 1019 color: #888; 1020 font-size: 12px; 1021 margin: 5px; 1022 } 1023 1024 .sticky {} 1025 1026 .gallery-caption {} 1027 1028 .bypostauthor {} 1029 878 1030 /* =============================================== 879 1031 BLOCK CSS 880 1032 =============================================== */ 881 1033 882 .widget_search .wp-block-search__inside-wrapper { 883 border: solid 1px #e4e7ee; 884 border-radius: 30px; 885 } 886 .widget_search .wp-block-search__inside-wrapper .wp-block-search__input{ 887 width: calc(100% - 110px); 888 margin: 0; 889 padding: 12px; 890 float: left; 891 background-color: transparent; 892 border: none; 893 } 894 .widget_search button.wp-block-search__button.wp-element-button{ 895 background: var(--primary-theme-color); 896 border: none; 897 color: #fff; 898 font-size: 14px; 899 font-weight: 600; 900 text-align: center; 901 position: relative; 902 float: left; 903 border-radius: 30px; 904 text-shadow: none; 905 padding: 10px 0; 906 width: 105px; 907 margin: 4px auto; 908 cursor: pointer; 909 -webkit-transition: color .3s ease, background-color .3s ease; 910 -moz-transition: color .3s ease, background-color .3s ease; 911 -o-transition: color .3s ease, background-color .3s ease; 912 transition: color .3s ease, background-color .3s ease; 913 } 914 .widget_search button.wp-block-search__button:hover, 915 .widget_search button.wp-block-search__button:focus{ 916 background: var(--primary-theme-color); 917 text-decoration:none; 918 } 919 .widget_search .wp-block-search__inside-wrapper { 920 content: ""; 921 display: table; 922 clear: both; 923 } 924 .sidebar-area .wp-block-search label{ 925 display: inline; 926 } 927 .sidebar-area .widget_search label , 928 .sidebar-area .sidebar-widget.widget_block .wp-block-heading{ 929 position: relative; 930 font-size: 25px; 931 margin-left: 60px; 932 margin-bottom: 20px; 933 color: #000; 934 } 935 .sidebar-area .widget_search label:before, 936 .sidebar-area .sidebar-widget.widget_block .wp-block-heading:before { 937 position: absolute; 938 content: ""; 939 width: 50px; 940 left: -60px; 941 height: 2px; 942 background: var(--primary-theme-color); 943 top: 0; 944 bottom: 0; 945 margin: auto; 946 } 947 .sidebar-area .widget_search label:after, 948 .sidebar-area .sidebar-widget.widget_block .wp-block-heading:after { 949 position: absolute; 950 content: ""; 951 width: 10px; 952 left: -60px; 953 height: 10px; 954 border-radius: 10px; 955 background: var(--primary-theme-color); 956 top: 0; 957 bottom: 0; 958 margin: auto; 959 } 960 .sidebar-area .wp-block-tag-cloud a, 961 .footer-area .wp-block-tag-cloud a ,.tag-cloud-link{ 962 font-size: 15px !important; 963 color: #5b5b5b; 964 display: inline-block; 965 margin: 5px 0; 966 padding: 7px; 967 border-radius: 5px; 968 border: solid 1px #e4e7ee; 969 } 970 .footer-area .wp-block-tag-cloud a{ 971 border: solid 1px #fff; 972 color: #fff; 973 } 974 .sidebar-area .wp-block-tag-cloud a:before, 975 .footer-area .wp-block-tag-cloud a:before ,.tag-cloud-link:before { 976 content: "#"; 977 } 978 .sidebar-area .wp-block-tag-cloud a:hover, 979 .footer-area .wp-block-tag-cloud a:hover,.tag-cloud-link:hover{ 980 background: var(--primary-theme-color); 981 color: #fff; 982 } 983 .sidebar-area ol footer.wp-block-latest-comments__comment-meta{ 984 float: none !important; 985 } 986 .sidebar-area ol.wp-block-latest-comments{ 987 padding-left: 0px !important; 988 padding: 15px 30px 25px; 989 border-radius: 10px; 990 border: solid 1px #e4e7ee; 991 } 992 .footer-area .wp-block-heading , 993 .footer-area .widget_search label{ 994 font-size: 30px; 995 color: #fff; 996 margin-top: 30px; 997 } 1034 .widget_search .wp-block-search__inside-wrapper { 1035 border: solid 1px #e4e7ee; 1036 border-radius: 30px; 1037 } 1038 1039 .widget_search .wp-block-search__inside-wrapper .wp-block-search__input { 1040 width: calc(100% - 110px); 1041 margin: 0; 1042 padding: 12px; 1043 float: left; 1044 background-color: transparent; 1045 border: none; 1046 } 1047 1048 .widget_search button.wp-block-search__button.wp-element-button { 1049 background: var(--primary-theme-color); 1050 border: none; 1051 color: #fff; 1052 font-size: 14px; 1053 font-weight: 600; 1054 text-align: center; 1055 position: relative; 1056 float: left; 1057 border-radius: 30px; 1058 text-shadow: none; 1059 padding: 10px 0; 1060 width: 105px; 1061 margin: 4px auto; 1062 cursor: pointer; 1063 -webkit-transition: color .3s ease, background-color .3s ease; 1064 -moz-transition: color .3s ease, background-color .3s ease; 1065 -o-transition: color .3s ease, background-color .3s ease; 1066 transition: color .3s ease, background-color .3s ease; 1067 } 1068 1069 .widget_search button.wp-block-search__button:hover, 1070 .widget_search button.wp-block-search__button:focus { 1071 background: var(--primary-theme-color); 1072 text-decoration: none; 1073 } 1074 1075 .widget_search .wp-block-search__inside-wrapper { 1076 content: ""; 1077 display: table; 1078 clear: both; 1079 } 1080 1081 .sidebar-area .wp-block-search label { 1082 display: inline; 1083 } 1084 1085 .sidebar-area .widget_search label, 1086 .sidebar-area .sidebar-widget.widget_block .wp-block-heading { 1087 position: relative; 1088 font-size: 25px; 1089 margin-left: 60px; 1090 margin-bottom: 20px; 1091 color: #000; 1092 } 1093 1094 .sidebar-area .widget_search label:before, 1095 .sidebar-area .sidebar-widget.widget_block .wp-block-heading:before { 1096 position: absolute; 1097 content: ""; 1098 width: 50px; 1099 left: -60px; 1100 height: 2px; 1101 background: var(--primary-theme-color); 1102 top: 0; 1103 bottom: 0; 1104 margin: auto; 1105 } 1106 1107 .sidebar-area .widget_search label:after, 1108 .sidebar-area .sidebar-widget.widget_block .wp-block-heading:after { 1109 position: absolute; 1110 content: ""; 1111 width: 10px; 1112 left: -60px; 1113 height: 10px; 1114 border-radius: 10px; 1115 background: var(--primary-theme-color); 1116 top: 0; 1117 bottom: 0; 1118 margin: auto; 1119 } 1120 1121 .sidebar-area .wp-block-tag-cloud a, 1122 .footer-area .wp-block-tag-cloud a, 1123 .tag-cloud-link { 1124 font-size: 15px !important; 1125 color: #5b5b5b; 1126 display: inline-block; 1127 margin: 5px 0; 1128 padding: 7px; 1129 border-radius: 5px; 1130 border: solid 1px #e4e7ee; 1131 } 1132 1133 .footer-area .wp-block-tag-cloud a { 1134 border: solid 1px #fff; 1135 color: #fff; 1136 } 1137 1138 .sidebar-area .wp-block-tag-cloud a:before, 1139 .footer-area .wp-block-tag-cloud a:before, 1140 .tag-cloud-link:before { 1141 content: "#"; 1142 } 1143 1144 .sidebar-area .wp-block-tag-cloud a:hover, 1145 .footer-area .wp-block-tag-cloud a:hover, 1146 .tag-cloud-link:hover { 1147 background: var(--primary-theme-color); 1148 color: #fff; 1149 } 1150 1151 .sidebar-area ol footer.wp-block-latest-comments__comment-meta { 1152 float: none !important; 1153 } 1154 1155 .sidebar-area ol.wp-block-latest-comments { 1156 padding-left: 0px !important; 1157 padding: 15px 30px 25px; 1158 border-radius: 10px; 1159 border: solid 1px #e4e7ee; 1160 } 1161 1162 .footer-area .wp-block-heading, 1163 .footer-area .widget_search label { 1164 font-size: 30px; 1165 color: #fff; 1166 margin-top: 30px; 1167 } 998 1168 999 1169 /* WOOCOMMERCE */ 1000 .wp-block-woocommerce-cart.alignwide {1170 .wp-block-woocommerce-cart.alignwide { 1001 1171 margin-right: auto; 1002 1172 margin-left: auto; 1003 1173 } 1174 1004 1175 .wp-block-woocommerce-checkout.alignwide { 1005 1176 margin-right: auto; 1006 1177 margin-left: auto; 1007 1178 } 1008 .wp-block-woocommerce-cart .wc-block-cart-items{ 1009 border: 1px solid #dee2e6!important; 1179 1180 .wp-block-woocommerce-cart .wc-block-cart-items { 1181 border: 1px solid #dee2e6 !important; 1010 1182 box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 9%); 1011 1183 padding: 10px; 1012 1184 } 1185 1013 1186 .wp-block-woocommerce-cart-order-summary-block { 1014 border: 1px solid #dee2e6 !important;1187 border: 1px solid #dee2e6 !important; 1015 1188 box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 9%); 1016 1189 } 1017 .wp-block-woocommerce-cart-order-summary-heading-block{ 1190 1191 .wp-block-woocommerce-cart-order-summary-heading-block { 1018 1192 padding: 10px 20px !important; 1019 1193 background: #f3f4f7 !important; 1020 1194 } 1021 .wc-block-components-product-name{ 1195 1196 .wc-block-components-product-name { 1022 1197 font-size: 20px; 1023 1198 text-decoration: none !important; … … 1025 1200 color: #000 !important; 1026 1201 } 1027 .wc-block-cart-items__header-image{ 1202 1203 .wc-block-cart-items__header-image { 1028 1204 padding-left: 16px !important; 1029 1205 } 1030 .wc-block-cart-items__header-total{ 1206 1207 .wc-block-cart-items__header-total { 1031 1208 padding-right: 16px !important; 1032 1209 } 1033 .wc-block-components-totals-coupon-link , 1210 1211 .wc-block-components-totals-coupon-link, 1034 1212 .wc-block-cart__submit-container a, 1035 1213 .wc-block-checkout__actions_row button, 1036 1214 .wc-block-components-totals-coupon__form button, 1037 1215 .wc-block-components-checkout-return-to-cart-button, 1038 .wc-block-grid__product-add-to-cart a {1039 background-image: linear-gradient(to right, var(--secondary-theme-color) , var(--primary-theme-color));1216 .wc-block-grid__product-add-to-cart a { 1217 background-image: linear-gradient(to right, var(--secondary-theme-color), var(--primary-theme-color)); 1040 1218 color: #fff !important; 1041 1219 line-height: unset; … … 1046 1224 text-decoration: none !important; 1047 1225 } 1048 .wc-block-cart__submit-container a{ 1226 1227 .wc-block-cart__submit-container a { 1049 1228 margin-top: 20px; 1050 1229 } 1230 1051 1231 .wc-block-components-totals-coupon-link:hover, 1052 1232 .wc-block-cart__submit-container:hover a, 1053 1233 .wc-block-checkout__actions_row button:hover, 1054 1234 .wc-block-components-checkout-return-to-cart-button:hover, 1055 .wc-block-grid__product-add-to-cart a:hover{ 1056 background: var(--primary-theme-color); 1057 color: #fff; 1058 } 1235 .wc-block-grid__product-add-to-cart a:hover { 1236 background: var(--primary-theme-color); 1237 color: #fff; 1238 } 1239 1059 1240 .wc-block-components-totals-coupon { 1060 1241 text-align: center; 1061 1242 } 1062 .wc-block-cart-items__header-product{ 1243 1244 .wc-block-cart-items__header-product { 1063 1245 background: #f3f4f7 !important; 1064 1246 } 1065 .wc-block-cart-items__header th{ 1247 1248 .wc-block-cart-items__header th { 1066 1249 padding: 10px 20px !important; 1067 1250 font-size: 14px; 1068 1251 } 1069 .wc-block-cart__totals-title{ 1252 1253 .wc-block-cart__totals-title { 1070 1254 font-size: 14px !important; 1071 1255 font-weight: 700 !important; 1072 1256 text-align: center !important; 1073 1257 } 1258 1074 1259 tr.wc-block-cart-items__row { 1075 1260 padding: 15px 15px !important; 1076 1261 } 1262 1077 1263 .wc-block-components-totals-item, 1078 .wc-block-components-totals-item {1264 .wc-block-components-totals-item { 1079 1265 padding-left: 16px !important; 1080 1266 padding-right: 16px !important; 1081 1267 } 1082 span.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title{ 1268 1269 span.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title { 1083 1270 display: block !important; 1084 1271 } 1272 1085 1273 /* Cart */ 1086 1274 .wc-block-grid__product-title { … … 1089 1277 text-decoration: none !important; 1090 1278 } 1091 a.wc-block-grid__product-link{ 1279 1280 a.wc-block-grid__product-link { 1092 1281 text-decoration: none !important; 1093 1282 } 1094 .wc-block-grid__product-price{ 1283 1284 .wc-block-grid__product-price { 1095 1285 color: var(--primary-theme-color) !important; 1096 1286 font-size: 14px !important; 1097 1287 font-weight: 500 !important; 1098 1288 } 1099 .wc-block-grid .wc-block-grid__product-onsale, .wc-block-grid__product-image .wc-block-grid__product-onsale { 1289 1290 .wc-block-grid .wc-block-grid__product-onsale, 1291 .wc-block-grid__product-image .wc-block-grid__product-onsale { 1100 1292 top: 10px !important; 1101 1293 right: 10px !important; … … 1109 1301 color: #fff !important; 1110 1302 } 1303 1111 1304 /* CHECKOUT */ 1112 .wp-block-woocommerce-checkout-order-summary-block {1113 border: 1px solid #dee2e6 !important;1305 .wp-block-woocommerce-checkout-order-summary-block { 1306 border: 1px solid #dee2e6 !important; 1114 1307 padding: 10px; 1115 1308 box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 9%); 1116 1309 } 1117 .wc-block-components-checkout-place-order-button{ 1310 1311 .wc-block-components-checkout-place-order-button { 1118 1312 border: 0px !important; 1119 1313 } … … 1126 1320 margin-bottom: 0; 1127 1321 } 1128 nav.woocommerce-MyAccount-navigation ul li{ 1322 1323 nav.woocommerce-MyAccount-navigation ul li { 1129 1324 padding: 10px; 1130 1325 margin-bottom: 15px; 1131 background-image: linear-gradient(to right, var(--secondary-theme-color) , var(--primary-theme-color)); 1132 } 1133 nav.woocommerce-MyAccount-navigation ul li:hover{ 1134 background: var(--primary-theme-color); 1135 } 1136 nav.woocommerce-MyAccount-navigation ul li a{ 1326 background-image: linear-gradient(to right, var(--secondary-theme-color), var(--primary-theme-color)); 1327 } 1328 1329 nav.woocommerce-MyAccount-navigation ul li:hover { 1330 background: var(--primary-theme-color); 1331 } 1332 1333 nav.woocommerce-MyAccount-navigation ul li a { 1137 1334 text-decoration: none; 1138 1335 color: #fff 1139 1336 } 1337 1140 1338 /* MY ACCOUNT Address Button */ 1141 .woocommerce-Address-title a {1339 .woocommerce-Address-title a { 1142 1340 background: var(--primary-theme-color); 1143 1341 color: #fff !important; … … 1148 1346 text-decoration: none !important; 1149 1347 } 1150 header.woocommerce-Address-title.title{ 1348 1349 header.woocommerce-Address-title.title { 1151 1350 display: inline-grid; 1152 1351 margin-bottom: 20px; 1153 1352 } 1353 1154 1354 /* CHECKOUT */ 1155 1355 1156 .woocommerce form .form-row label,.woocommerce form .form-row,span.woocommerce-input-wrapper,span.password-input{ 1356 .woocommerce form .form-row label, 1357 .woocommerce form .form-row, 1358 span.woocommerce-input-wrapper, 1359 span.password-input { 1157 1360 width: 100%; 1158 1361 } … … 1160 1363 /* BUTTONS */ 1161 1364 1162 .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt,.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,.woocommerce a.added_to_cart{ 1163 background-image: linear-gradient(to right, var(--secondary-theme-color) , var(--primary-theme-color)); 1365 .woocommerce #respond input#submit.alt, 1366 .woocommerce a.button.alt, 1367 .woocommerce button.button.alt, 1368 .woocommerce input.button.alt, 1369 .woocommerce #respond input#submit, 1370 .woocommerce a.button, 1371 .woocommerce button.button, 1372 .woocommerce input.button, 1373 .woocommerce a.added_to_cart { 1374 background-image: linear-gradient(to right, var(--secondary-theme-color), var(--primary-theme-color)); 1164 1375 color: #fff; 1165 1376 line-height: unset; 1166 1377 } 1167 .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,.woocommerce a.added_to_cart:hover{ 1168 background: var(--primary-theme-color); 1169 color: #fff; 1170 } 1171 .woocommerce a.added_to_cart{ 1378 1379 .woocommerce #respond input#submit.alt:hover, 1380 .woocommerce a.button.alt:hover, 1381 .woocommerce button.button.alt:hover, 1382 .woocommerce input.button.alt:hover, 1383 .woocommerce #respond input#submit:hover, 1384 .woocommerce a.button:hover, 1385 .woocommerce button.button:hover, 1386 .woocommerce input.button:hover, 1387 .woocommerce a.added_to_cart:hover { 1388 background: var(--primary-theme-color); 1389 color: #fff; 1390 } 1391 1392 .woocommerce a.added_to_cart { 1172 1393 padding: .618em 1em; 1173 1394 font-weight: 700; … … 1177 1398 1178 1399 /* SQUARE AND OUTLINE BUTTONS */ 1179 .wp-block-button__link {1180 color: #121212 !important;1181 background-color: var(--primary-theme-color);1400 .wp-block-button__link { 1401 color: #121212 !important; 1402 background-color: var(--primary-theme-color); 1182 1403 margin-bottom: 5px; 1183 1404 } 1184 .wp-block-button.is-style-outline .wp-block-button__link{ 1405 1406 .wp-block-button.is-style-outline .wp-block-button__link { 1185 1407 border: 1px solid var(--primary-theme-color); 1186 1408 color: #121212 !important; 1187 1409 } 1188 .wp-block-button.is-style-squared .wp-block-button__link{ 1410 1411 .wp-block-button.is-style-squared .wp-block-button__link { 1189 1412 border-radius: 0px !important; 1190 1413 } 1414 1191 1415 .post-content { 1192 1416 word-wrap: break-word; … … 1195 1419 /* SHOP & SINGLE PRODUCT */ 1196 1420 1197 .woocommerce ul.products li.product .onsale, .woocommerce span.onsale { 1421 .woocommerce ul.products li.product .onsale, 1422 .woocommerce span.onsale { 1198 1423 top: 10px; 1199 1424 right: 10px; … … 1206 1431 min-height: 2em !important; 1207 1432 } 1208 .woocommerce span.onsale{ 1433 1434 .woocommerce span.onsale { 1209 1435 left: 10px; 1210 1436 right: auto; 1211 1437 } 1438 1212 1439 h2.woocommerce-loop-product__title { 1213 1440 font-size: 18px !important; 1214 1441 } 1215 .woocommerce ul.products li.product .price,.woocommerce div.product p.price, .woocommerce div.product span.price { 1442 1443 .woocommerce ul.products li.product .price, 1444 .woocommerce div.product p.price, 1445 .woocommerce div.product span.price { 1216 1446 color: var(--primary-theme-color); 1217 1447 display: block; … … 1219 1449 font-size: 18px; 1220 1450 } 1221 .woocommerce ul.products li.product .price ins,.woocommerce div.product p.price ins, .woocommerce div.product span.price ins{ 1451 1452 .woocommerce ul.products li.product .price ins, 1453 .woocommerce div.product p.price ins, 1454 .woocommerce div.product span.price ins { 1222 1455 text-decoration: none; 1223 1456 } 1224 .woocommerce ul.products li.product, .woocommerce-page ul.products li.product { 1457 1458 .woocommerce ul.products li.product, 1459 .woocommerce-page ul.products li.product { 1225 1460 text-align: center; 1226 1461 } 1462 1227 1463 .woocommerce .quantity .qty { 1228 1464 width: 13em; 1229 1465 padding: 8px; 1230 1466 } 1467 1231 1468 .woocommerce ul.products li.product .star-rating { 1232 1469 font-size: 12px; 1233 1470 margin: 0 auto 8px; 1234 1471 } 1235 .woocommerce ul.products li.product a img{ 1472 1473 .woocommerce ul.products li.product a img { 1236 1474 margin-bottom: 0; 1237 1475 } 1238 .woocommerce .woocommerce-ordering select,.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea { 1476 1477 .woocommerce .woocommerce-ordering select, 1478 .woocommerce form .form-row input.input-text, 1479 .woocommerce form .form-row textarea { 1239 1480 padding: 12px; 1240 1481 border: 1px solid #d3ced2; 1241 1482 background: transparent; 1242 1483 } 1484 1243 1485 /* shop page pagination */ 1244 1486 .woocommerce nav.woocommerce-pagination ul li span.current { … … 1249 1491 font-weight: bold; 1250 1492 } 1493 1251 1494 .woocommerce nav.woocommerce-pagination ul li a { 1252 1495 display: block; … … 1261 1504 border-radius: 10px; 1262 1505 } 1263 .woocommerce nav.woocommerce-pagination ul li a:hover{ 1506 1507 .woocommerce nav.woocommerce-pagination ul li a:hover { 1264 1508 background: var(--primary-theme-color); 1265 1509 color: #121212; 1266 1510 } 1267 1511 1268 .woocommerce nav.woocommerce-pagination ul, .woocommerce nav.woocommerce-pagination ul li{ 1512 .woocommerce nav.woocommerce-pagination ul, 1513 .woocommerce nav.woocommerce-pagination ul li { 1269 1514 border: none; 1270 1515 float: none; 1271 1516 overflow: unset; 1272 1517 } 1518 1273 1519 .woocommerce nav.woocommerce-pagination { 1274 1520 text-align: center; 1275 1521 margin-bottom: 20px; 1276 1522 } 1523 1277 1524 /* SINGLE POST */ 1278 1525 .single-post-category span { … … 1280 1527 color: #5b5b5b; 1281 1528 } 1282 .single-post-category .post-categories li ,.single-post-category ul{ 1283 display: inline-block; 1284 padding-left: 0px; 1285 } 1286 .single-post-category .post-categories li a{ 1287 margin-right: 8px; 1288 margin-bottom: 8px; 1289 background-color:var(--primary-theme-color); 1290 padding: 8px 10px; 1291 color: #000; 1292 display: inline-block; 1293 font-size: 13px; 1294 font-weight: 500; 1295 line-height: 1; 1296 } 1297 .single-post-category .post-categories li a:hover{ 1298 background: #000000; 1299 color: #fff; 1300 } 1529 1530 .single-post-category .post-categories li, 1531 .single-post-category ul { 1532 display: inline-block; 1533 padding-left: 0px; 1534 } 1535 1536 .single-post-category .post-categories li a { 1537 margin-right: 8px; 1538 margin-bottom: 8px; 1539 background-color: var(--primary-theme-color); 1540 padding: 8px 10px; 1541 color: #000; 1542 display: inline-block; 1543 font-size: 13px; 1544 font-weight: 500; 1545 line-height: 1; 1546 } 1547 1548 .single-post-category .post-categories li a:hover { 1549 background: #000000; 1550 color: #fff; 1551 } 1552 1301 1553 /*PRELOADER*/ 1302 1554 … … 1312 1564 align-items: center; 1313 1565 } 1566 1314 1567 .preloader { 1315 1568 animation: move 0.5s ease infinite alternate; 1316 1569 } 1570 1317 1571 .diamond { 1318 1572 width: 60px; … … 1324 1578 align-items: center; 1325 1579 } 1326 .diamond span{ 1580 1581 .diamond span { 1327 1582 width: 60px; 1328 1583 height: 60px; … … 1331 1586 left: 0; 1332 1587 } 1333 .diamond span:nth-child(1){ 1588 1589 .diamond span:nth-child(1) { 1334 1590 border: 10px solid #ff8a57; 1335 1591 border-left-color: #ffb23c; … … 1337 1593 transform: rotateX(90deg) rotateZ(45deg); 1338 1594 } 1339 .diamond span:nth-child(2){ 1595 1596 .diamond span:nth-child(2) { 1340 1597 border: 6px solid #ff8a57; 1341 1598 border-left-color: #ffb23c; … … 1343 1600 transform: rotateX(90deg) rotateY(90deg) rotateZ(45deg); 1344 1601 } 1345 .diamond span:last-child{ 1602 1603 .diamond span:last-child { 1346 1604 border: 6px solid #ff8a57; 1347 1605 border-left-color: #ffb23c; … … 1349 1607 transform: rotateZ(45deg); 1350 1608 } 1351 @keyframes move{ 1352 0%{ transform: translateY(0) scaleY(0.9); } 1353 100%{ transform: translateY(-70px) scaleY(1.1); } 1354 } 1355 @keyframes spin{ 1356 0%{ transform: translateY(-50%) rotateX(-15deg) rotateY(0deg); } 1357 100%{ transform: translateY(-50%) rotateX(-15deg) rotateY(180deg); } 1609 1610 @keyframes move { 1611 0% { 1612 transform: translateY(0) scaleY(0.9); 1613 } 1614 1615 100% { 1616 transform: translateY(-70px) scaleY(1.1); 1617 } 1618 } 1619 1620 @keyframes spin { 1621 0% { 1622 transform: translateY(-50%) rotateX(-15deg) rotateY(0deg); 1623 } 1624 1625 100% { 1626 transform: translateY(-50%) rotateX(-15deg) rotateY(180deg); 1627 } 1358 1628 } 1359 1629 … … 1366 1636 z-index: 999; 1367 1637 } 1638 1368 1639 .scroll-up a { 1369 background: #ff8a57; 1370 color:#ffffff; 1371 } 1372 .scroll-up a:hover{ 1373 background: #ff8a57; 1374 color:#fff; 1375 } 1640 background: #ff8a57; 1641 color: #ffffff; 1642 } 1643 1644 .scroll-up a:hover { 1645 background: #ff8a57; 1646 color: #fff; 1647 } 1648 1376 1649 .scroll-up a { 1377 1650 display: block; … … 1387 1660 box-shadow: 0 0 10px rgb(0 0 0 / 20%); 1388 1661 } 1389 .result-search #searchform{ 1662 1663 .result-search #searchform { 1390 1664 display: table; 1391 1665 } 1666 1392 1667 .not-found-content #searchform { 1393 1668 display: inline-block; 1394 1669 } 1395 .scroll-up i{ 1670 1671 .scroll-up i { 1396 1672 line-height: 40px; 1397 1673 } 1674 1398 1675 /* =============================================== 1399 1676 Progress Bar … … 1406 1683 z-index: 99999; 1407 1684 } 1685 1408 1686 #elemento-progress-bar.top { 1409 1687 top: 0; 1410 1688 } 1689 1411 1690 .admin-bar #elemento-progress-bar.top { 1412 1691 top: 32px; 1413 1692 } 1693 1414 1694 #elemento-progress-bar.bottom { 1415 1695 bottom: 0; … … 1420 1700 =============================================== */ 1421 1701 /*banner-section*/ 1422 .web-agency-elementor-banner-section{ 1423 width: auto; 1424 height: auto; 1425 } 1426 .web-agency-elementor-banner-section .web-agency-elementor-banner-text-section{ 1427 position: relative; 1428 } 1429 .web-agency-elementor-banner-section .button1,.web-agency-elementor-banner-section .button2{ 1430 display: inline-block !important; 1702 .web-agency-elementor-banner-section { 1703 width: auto; 1704 height: auto; 1705 } 1706 1707 .web-agency-elementor-banner-section .web-agency-elementor-banner-text-section { 1708 position: relative; 1709 } 1710 1711 .web-agency-elementor-banner-section .button1, 1712 .web-agency-elementor-banner-section .button2 { 1713 display: inline-block !important; 1431 1714 width: auto !important; 1432 1715 } 1433 .web-agency-elementor-banner-section .button2{ 1716 1717 .web-agency-elementor-banner-section .button2 { 1434 1718 margin-left: 12%; 1435 1719 } 1720 1436 1721 .web-agency-elementor-banner-image-section .elementor-widget-wrap.elementor-element-populated { 1437 1722 padding: 0px !important; 1438 1723 } 1724 1439 1725 .web-agency-elementor-banner-image-section { 1440 1726 position: relative; 1441 1727 } 1728 1442 1729 .social-icone-section .elementor-social-icons-wrapper.elementor-grid { 1443 1730 width: 346px; 1444 1731 height: 70px; 1445 1732 border-radius: 34px; 1446 background-color: rgba(255,255,255,0); 1447 background-image: linear-gradient( 1448 -55deg, rgba(255,255,255,2.8) 0%, rgba(255,255,255,0) 100%); 1733 background-color: rgba(255, 255, 255, 0); 1734 background-image: linear-gradient(-55deg, rgba(255, 255, 255, 2.8) 0%, rgba(255, 255, 255, 0) 100%); 1449 1735 bottom: 12px; 1450 1736 padding: 20px; … … 1452 1738 right: 15%; 1453 1739 } 1454 .new-glover-heading > div{ 1455 -webkit-background-clip: text; 1456 -webkit-text-fill-color: transparent; 1457 animation: background-move 2s infinite; 1458 } 1459 @keyframes background-move{ 1460 0% { 1461 background-position: left; 1462 } 1463 100% { 1464 background-position: right; 1465 } 1466 } 1740 1741 .new-glover-heading>div { 1742 -webkit-background-clip: text; 1743 -webkit-text-fill-color: transparent; 1744 animation: background-move 2s infinite; 1745 } 1746 1747 @keyframes background-move { 1748 0% { 1749 background-position: left; 1750 } 1751 1752 100% { 1753 background-position: right; 1754 } 1755 } 1756 1467 1757 /*----projects section-----------*/ 1468 .web-agency-elementor-projects-text-section h5{ 1469 color:#fff; 1470 } 1471 .web-agency-elementor-projects-image-section{ 1758 .web-agency-elementor-projects-text-section h5 { 1759 color: #fff; 1760 } 1761 1762 .web-agency-elementor-projects-image-section { 1472 1763 position: relative; 1473 1764 } 1474 .web-agency-elementor-projects-image-section .web-agency-elementor-projects-text-section p{ 1475 margin: 0px; 1476 } 1477 .web-agency-elementor-projects-image-section img{ 1765 1766 .web-agency-elementor-projects-image-section .web-agency-elementor-projects-text-section p { 1767 margin: 0px; 1768 } 1769 1770 .web-agency-elementor-projects-image-section img { 1478 1771 border-radius: 10px !important; 1479 1772 } 1480 .web-agency-elementor-projects-image-section .web-agency-elementor-projects-text-section{ 1773 1774 .web-agency-elementor-projects-image-section .web-agency-elementor-projects-text-section { 1481 1775 width: auto !important; 1482 background-image: linear-gradient( 1483 180deg, #ff8a57 0%, #ffb23c 100%); 1776 background-image: linear-gradient(180deg, #ff8a57 0%, #ffb23c 100%); 1484 1777 border-radius: 5px; 1485 1778 padding: 15px; 1486 margin: 0 18px !important;1779 margin: 0 18px !important; 1487 1780 position: absolute; 1488 1781 bottom: 20%; … … 1491 1784 right: 35px; 1492 1785 } 1493 .footer-copyright a,.footer-copyright p{ 1786 1787 .footer-copyright a, 1788 .footer-copyright p { 1494 1789 color: #ffffff; 1495 1790 } 1496 .footer-copyright a:hover{ 1497 color:var(--primary-theme-color); 1498 } 1499 .web-agency-elementor-projects-text-section p{ 1791 1792 .footer-copyright a:hover { 1793 color: var(--primary-theme-color); 1794 } 1795 1796 .web-agency-elementor-projects-text-section p { 1500 1797 word-wrap: break-word; 1501 1798 } 1502 .web-agency-elementor-projects-text-section p{ 1799 1800 .web-agency-elementor-projects-text-section p { 1503 1801 word-wrap: break-word; 1504 1802 } 1505 1803 1506 /* Sticky Copyright */ 1507 1508 .sticky-copyright.footer-copyright{ 1804 /* =============================================== 1805 Sticky Copyright 1806 ============================================= */ 1807 1808 .sticky-copyright.footer-copyright { 1509 1809 position: fixed; 1510 bottom: 0;1511 left: 0;1810 bottom: 0; 1811 left: 0; 1512 1812 width: 100%; 1513 1813 z-index: 999; … … 1515 1815 box-shadow: 0px 0px 8px #000000; 1516 1816 } 1517 .close-sticky { 1518 position: static; 1519 } 1817 1818 /* =============================================== 1819 Sticky Sidebar 1820 ============================================= */ 1821 1822 .sidebar-sticky { 1823 position: sticky; 1824 top: 100px; 1825 z-index: 999; 1826 } -
web-agency-elementor/0.5.1/templates/left-sidebar.php
r295622 r299557 22 22 <div class="row"> 23 23 <div class="col-lg-4 col-md-4"> 24 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 24 <div class="sidebar-area <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 25 <?php echo esc_attr( get_theme_mod('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 25 26 <?php 26 27 dynamic_sidebar('sidebar-2'); -
web-agency-elementor/0.5.1/templates/right-sidebar.php
r295622 r299557 40 40 </div> 41 41 <div class="col-lg-4 col-md-4"> 42 <div class="sidebar-area <?php echo esc_attr( get_theme_mod('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 42 <div class="sidebar-area <?php if( get_theme_mod('web_agency_elementor_enable_sticky_sidebar', false) == 1) { ?> sidebar-sticky <?php } else { ?> close-sticky <?php } ?> 43 <?php echo esc_attr( get_theme_mod('web_agency_elementor_enable_sidebar_animation', true) ? 'zoomInRight wow' : '' ); ?>"> 43 44 <?php 44 45 dynamic_sidebar('sidebar-2');
Note: See TracChangeset
for help on using the changeset viewer.