Cleanup: Remoción masiva de restos de WordPress y consolidación de archivos GKACHELE™
This commit is contained in:
44
gk-assets/themes/arvina/core/core.php
Normal file
44
gk-assets/themes/arvina/core/core.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
function arvina_child_css() {
|
||||
$arvina_parent_theme_css = 'arvina-abiz-style';
|
||||
wp_enqueue_style(
|
||||
$arvina_parent_theme_css,
|
||||
get_template_directory_uri() . '/style.css'
|
||||
);
|
||||
wp_enqueue_style(
|
||||
'arvina-style',
|
||||
get_stylesheet_uri(),
|
||||
array( $arvina_parent_theme_css )
|
||||
);
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'arvina_child_css',999);
|
||||
|
||||
function arvina_custom_header_setup()
|
||||
{
|
||||
$header_image = get_template_directory_uri() . '/assets/images/bg/breadcrumbg.jpg';
|
||||
add_theme_support('custom-header', apply_filters('abiz_custom_header_args', array(
|
||||
'default-image' => $header_image,
|
||||
'default-text-color' => 'fff',
|
||||
'width' => 2000,
|
||||
'height' => 200,
|
||||
'flex-height' => true,
|
||||
'wp-head-callback' => 'abiz_header_style',
|
||||
)));
|
||||
}
|
||||
add_action('after_setup_theme', 'arvina_custom_header_setup');
|
||||
|
||||
require get_stylesheet_directory() . '/core/customizer/custom-controls/customize-upgrade-control.php';
|
||||
|
||||
/**
|
||||
* Import Options From Parent Theme
|
||||
*
|
||||
*/
|
||||
function arvina_parent_theme_options() {
|
||||
$abiz_mods = get_option( 'theme_mods_abiz' );
|
||||
if ( ! empty( $abiz_mods ) ) {
|
||||
foreach ( $abiz_mods as $abiz_mod_k => $abiz_mod_v ) {
|
||||
set_theme_mod( $abiz_mod_k, $abiz_mod_v );
|
||||
}
|
||||
}
|
||||
}
|
||||
add_action( 'after_switch_theme', 'arvina_parent_theme_options' );
|
||||
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* Upgrade to pro options
|
||||
*/
|
||||
|
||||
function arvina_upgrade_pro_options( $wp_customize ) {
|
||||
class Arvina_WP_Button_Customize_Control extends WP_Customize_Control {
|
||||
public $type = 'abiz_upgrade_premium';
|
||||
|
||||
function render_content() {
|
||||
?>
|
||||
<div class="premium-info">
|
||||
<ul>
|
||||
<li><a class="support" href="https://themesdaddy.com/support/" target="_blank"><i class="dashicons dashicons-lightbulb"></i><?php _e( 'Need Support ?','arvina' ); ?> </a></li>
|
||||
|
||||
<li><a class="free-pro" href="https://demo.themesdaddy.com/arvina-pro/" target="_blank"><i class="dashicons dashicons-visibility"></i><?php _e( 'Premium Demo','arvina' ); ?> </a></li>
|
||||
|
||||
<li><a class="upgrade-to-pro" href="https://themesdaddy.com/themes/arvina-pro/" target="_blank"><i class="dashicons dashicons-update-alt"></i><?php _e( 'Upgrade to Pro','arvina' ); ?> </a></li>
|
||||
|
||||
<li><a class="show-love" href="https://wordpress.org/support/theme/arvina/reviews/#new-post" target="_blank"><i class="dashicons dashicons-smiley"></i><?php _e( 'Share a Good Review','arvina' ); ?> </a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
|
||||
$wp_customize->add_setting(
|
||||
'premium_info_buttons',
|
||||
array(
|
||||
'capability' => 'edit_theme_options',
|
||||
'sanitize_callback' => 'arvina_sanitize_text',
|
||||
)
|
||||
);
|
||||
|
||||
$wp_customize->add_control( new Arvina_WP_Button_Customize_Control( $wp_customize, 'premium_info_buttons', array(
|
||||
'section' => 'abiz_upgrade_premium',
|
||||
))
|
||||
);
|
||||
}
|
||||
add_action( 'customize_register', 'arvina_upgrade_pro_options', 999 );
|
||||
11
gk-assets/themes/arvina/functions.php
Normal file
11
gk-assets/themes/arvina/functions.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
/**
|
||||
* Theme functions and definitions
|
||||
*
|
||||
* @package Arvina
|
||||
*/
|
||||
|
||||
// Main file
|
||||
require_once get_stylesheet_directory() . '/core/core.php';
|
||||
|
||||
|
||||
28
gk-assets/themes/arvina/header.php
Normal file
28
gk-assets/themes/arvina/header.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/**
|
||||
* File for display Header.
|
||||
*/
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html <?php language_attributes(); ?>>
|
||||
<head>
|
||||
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
|
||||
|
||||
<link rel="profile" href="https://gmpg.org/xfn/11">
|
||||
|
||||
<?php wp_head(); ?>
|
||||
</head>
|
||||
<?php $class='btn-style-one arvina-theme'; ?>
|
||||
<body <?php body_class(esc_attr($class));?> >
|
||||
<?php
|
||||
if ( function_exists( 'wp_body_open' ) ) {
|
||||
wp_body_open();
|
||||
} else {
|
||||
do_action( 'wp_body_open' );
|
||||
}
|
||||
?>
|
||||
<a class="screen-reader-text skip-link" href="#content"><?php esc_html_e( 'Skip to content', 'arvina' ); ?></a>
|
||||
<?php get_template_part('theme-header'); ?>
|
||||
<div id="content" class="abiz-theme-data">
|
||||
|
||||
107
gk-assets/themes/arvina/readme.txt
Normal file
107
gk-assets/themes/arvina/readme.txt
Normal file
@@ -0,0 +1,107 @@
|
||||
== Arvina ==
|
||||
Contributors: themesdaddy
|
||||
Requires at least: 4.5
|
||||
Tested up to: 6.9
|
||||
Requires PHP: 5.4
|
||||
Stable tag: 1.0.12
|
||||
License: GNU General Public License v3 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl.html
|
||||
Tags: one-column, two-columns, right-sidebar, flexible-header, custom-background, custom-header, custom-menu, editor-style, featured-images, footer-widgets, post-formats, theme-options, threaded-comments, rtl-language-support, translation-ready, full-width-template, custom-logo, blog, e-commerce, portfolio
|
||||
|
||||
== Description ==
|
||||
|
||||
Lightning Fast Speed & Responsive Theme. Arvina is a responsive and fully customizable theme to create any kind of websites. The advanced admin panel will enable you to customize it without any technical knowledge. This theme is lightweight, it will enable you to create almost any type of website such a blog, portfolio, acting and shooting industry, total trendy news, newspaper, mega magazine, fashion, dark themes, petcare, animals wildlife, wooden architecture, plumbing contractor, painting estate, interior design, rooms furniture, home decoration, green floral nature, construction, corporate, multiple agency, business promotion, dark variation, industries, Beauty & spa salons, photography, gym, fitness, health, medical, startups, business agencies, law firms, travel, NGO, charity, yoga, kids education, training institute, university portal, restaurant, meta shop, quick magazines, mutual fund, finance, accounting, consulting ,travel agency website. Theme is fully compatible with popular WordPress plugins like Elementor Page Builder, Slider, Carousal, Beaver Builder, Brizy, Visual Composer, Divi, SiteOrigin, Gutenberg, Block-Enabled, WooCommerce, WPML, Yoast SEO, Shortcode, Jetpack, Contact Form 7, Mailchimp for WordPress, bbPress, Demo Importer, WPForms and more. Your WordPress website will never be let down with this theme. View the demo of Arvina Pro https://demo.themesdaddy.com/arvina-pro/
|
||||
|
||||
== Installation ==
|
||||
|
||||
1. In your admin panel, go to Appearance > Themes and click the Add New button.
|
||||
2. Click Upload and Choose File, then select the theme's .zip file. Click Install Now.
|
||||
3. Click Activate to use your new theme right away.
|
||||
|
||||
== License ==
|
||||
|
||||
Arvina WordPress Theme, Copyright (C) 2025, Themes Daddy
|
||||
Arvina is distributed under the terms of the GNU GPL
|
||||
|
||||
Abiz WordPress Theme, Copyright (C) 2025, Themes Daddy.
|
||||
Abiz WordPress Theme is distributed under the terms of the GNU GPL
|
||||
|
||||
Animate - Copyright (c) 2015 Daniel Eden
|
||||
Source: http://daneden.me/animate
|
||||
Licensed: Under the MIT license - https://github.com/daneden/animate.css/blob/master/LICENSE
|
||||
|
||||
Bootstrap v5.0.0 (http://getbootstrap.com)
|
||||
Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
|
||||
Font Awesome 6.5.1
|
||||
Source: https://github.com/FortAwesome/Font-Awesome
|
||||
License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||
|
||||
Owl Carousel v2.3.4, (C) 2013 - 2018, David Deutsch
|
||||
Source: https://github.com/OwlCarousel2/OwlCarousel2/
|
||||
License: [MIT](https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
|
||||
|
||||
WOW - Copyright (C) 2016; Thomas Grainger
|
||||
Source: https://wowjs.uk/
|
||||
License: [MIT](https://github.com/graingert/WOW/blob/master/LICENSE)
|
||||
|
||||
Webfonts Loader
|
||||
Source: https://github.com/WPTT/webfont-loader
|
||||
License: MIT LICENSE (https://opensource.org/licenses/MIT)
|
||||
|
||||
Repeater Control
|
||||
Source: https://github.com/cristian-ungureanu/customizer-repeater
|
||||
License: MIT LICENSE (https://github.com/cristian-ungureanu/customizer-repeater/blob/production/LICENSE)
|
||||
|
||||
== Screenshots ==
|
||||
All Abiz images are licensed under [CC0] (https://creativecommons.org/publicdomain/zero/1.0/)
|
||||
|
||||
Image for theme screenshot
|
||||
License: Creative Commons Zero(https://pxhere.com/en/license)
|
||||
Source: https://pxhere.com/en/photo/892122
|
||||
|
||||
Image for page header
|
||||
License: CC0 Public Domain(https://stocksnap.io/license)
|
||||
Source: https://stocksnap.io/photo/macbook-laptop-LEJ7HJ5BEA
|
||||
|
||||
== Changelog ==
|
||||
|
||||
@Version 1.0.12
|
||||
* Sidebar Widget link Outline issue Fixed
|
||||
|
||||
@Version 1.0.11
|
||||
* Footer Widget link Outline issue Fixed
|
||||
|
||||
@Version 1.0.10
|
||||
* Tested With WordPress 6.9
|
||||
|
||||
@Version 1.0.9
|
||||
* WooCommerce Cart Page Text Decoration Issue Fixed
|
||||
|
||||
@Version 1.0.8
|
||||
* About Section Video Button Text Decoration Issue Fixed
|
||||
|
||||
@Version 1.0.7
|
||||
* Block Latest Comment Hover & Focus Color Changed
|
||||
|
||||
@Version 1.0.6
|
||||
* Block Latest Comment Color Issue Fixed
|
||||
|
||||
@Version 1.0.5
|
||||
* Tested With WordPress 6.8.3
|
||||
|
||||
@Version 1.0.4
|
||||
* Block File Style Issue Fixed
|
||||
|
||||
@Version 1.0.3
|
||||
* Block Latest Post Title Font Size Changed
|
||||
|
||||
@Version 1.0.2
|
||||
* WooCommerce Cart Page Total Title Style Issue Fixed
|
||||
|
||||
@Version 1.0.1
|
||||
* Pro Details Panel Added
|
||||
* Theme URI Added
|
||||
|
||||
@Version 1.0
|
||||
* Initial release.
|
||||
BIN
gk-assets/themes/arvina/screenshot.png
Normal file
BIN
gk-assets/themes/arvina/screenshot.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 265 KiB |
372
gk-assets/themes/arvina/style.css
Normal file
372
gk-assets/themes/arvina/style.css
Normal file
@@ -0,0 +1,372 @@
|
||||
/*
|
||||
Theme Name: Arvina
|
||||
Author: Themes Daddy
|
||||
Author URI: https://themesdaddy.com/
|
||||
Theme URI: https://themesdaddy.com/themes/arvina-free/
|
||||
Description: Lightning Fast Speed & Responsive Theme. Arvina is a responsive and fully customizable theme to create any kind of websites. The advanced admin panel will enable you to customize it without any technical knowledge. This theme is lightweight, it will enable you to create almost any type of website such a blog, portfolio, acting and shooting industry, total trendy news, newspaper, mega magazine, fashion, dark themes, petcare, animals wildlife, wooden architecture, plumbing contractor, painting estate, interior design, rooms furniture, home decoration, green floral nature, construction, corporate, multiple agency, business promotion, dark variation, industries, Beauty & spa salons, photography, gym, fitness, health, medical, startups, business agencies, law firms, travel, NGO, charity, yoga, kids education, training institute, university portal, restaurant, meta shop, quick magazines, mutual fund, finance, accounting, consulting ,travel agency website. Theme is fully compatible with popular WordPress plugins like Elementor Page Builder, Slider, Carousal, Beaver Builder, Brizy, Visual Composer, Divi, SiteOrigin, Gutenberg, Block-Enabled, WooCommerce, WPML, Yoast SEO, Shortcode, Jetpack, Contact Form 7, Mailchimp for WordPress, bbPress, Demo Importer, WPForms and more. Your WordPress website will never be let down with this theme. View the demo of Arvina Pro https://demo.themesdaddy.com/arvina-pro/
|
||||
Tags: one-column, two-columns, right-sidebar, flexible-header, custom-background, custom-header, custom-menu, editor-style, featured-images, footer-widgets, post-formats, theme-options, threaded-comments, rtl-language-support, translation-ready, full-width-template, custom-logo, blog, e-commerce, portfolio
|
||||
Version: 1.0.12
|
||||
Tested up to: 6.9
|
||||
Requires PHP: 5.4
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
License: GNU General Public License v2 or later
|
||||
Text Domain: arvina
|
||||
Slug: arvina
|
||||
Template: abiz
|
||||
*/
|
||||
|
||||
|
||||
:root {
|
||||
--bs-primary: #007cfb;
|
||||
--bs-primary-light: #007cfb38;
|
||||
--bs-secondary:#0431b8;
|
||||
}
|
||||
|
||||
.arvina-theme .logo a:focus {
|
||||
outline-color: var(--bs-white);
|
||||
}
|
||||
|
||||
.arvina-theme .above-header .header-widget a:hover,
|
||||
.arvina-theme .above-header .header-widget a:focus {
|
||||
color: var(--bs-white);
|
||||
}
|
||||
|
||||
.arvina-theme .main-mobile-nav {
|
||||
background: var(--bs-secondary);
|
||||
}
|
||||
|
||||
.arvina-theme .main-content {
|
||||
backdrop-filter: blur(13px);
|
||||
border-radius: 10px;
|
||||
padding: 30px 20px;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||
background: linear-gradient(105.91deg, rgba(255, 255, 255, 0.2) 5.12%, rgba(255, 255, 255, 0.075) 77.57%);
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner {
|
||||
position: relative;
|
||||
padding: 15px 25px 30px 25px;
|
||||
background: var(--bs-white);
|
||||
box-shadow: 0px 9px 75px rgba(8, 20, 44, 0.09);
|
||||
border-radius: 30px;
|
||||
transition: var(--bs-transition);
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner .count
|
||||
{
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
left: unset;
|
||||
bottom: unset;
|
||||
opacity: .2;
|
||||
font-weight: 800;
|
||||
font-size: 50px;
|
||||
line-height: 50px;
|
||||
color: transparent;
|
||||
-webkit-text-stroke: 1px var(--bs-primary);
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner .info-box-icon {
|
||||
position: absolute;
|
||||
left: -15px;
|
||||
top: -15px;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
line-height: 75px;
|
||||
font-size: 30px;
|
||||
text-align: center;
|
||||
color: var(--bs-white);
|
||||
background: var(--bs-primary);
|
||||
border-radius: 50px;
|
||||
border: 10px solid var(--bs-white);
|
||||
margin: 0;
|
||||
transition: var(--bs-transition);
|
||||
z-index:1;
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner .content-box {
|
||||
margin-top: 80px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner .info-box-title a {
|
||||
color: var(--bs-secondary);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.info-section-3 .info-content {
|
||||
margin-top: 8px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner .side-border-lines {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 94%;
|
||||
height: 94%;
|
||||
border: 2px dashed var(--bs-primary);
|
||||
margin: auto;
|
||||
border-radius: 30px;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner:hover {
|
||||
transform: translateY(-5px);
|
||||
background: var(--bs-secondary);
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner:hover .info-box-icon {
|
||||
background: var(--bs-secondary);
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner:hover .side-border-lines {
|
||||
border-color: var(--bs-white);
|
||||
opacity: 0.4;
|
||||
transition: var(--bs-transition);
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner:hover .info-content {
|
||||
color: var(--bs-white);
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner:hover .info-box-title a{
|
||||
color: var(--bs-white);
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner .info-box-icon:after {
|
||||
top: 8%;
|
||||
left: 8%;
|
||||
transform: translatex(-5%);
|
||||
padding: 0;
|
||||
z-index: 10;
|
||||
border: 2px dashed #fff;
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
width: 80%;
|
||||
height: 80%;
|
||||
border-radius: 50%;
|
||||
content: '';
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.info-section-3 .info-box-inner:hover .info-box-icon:after {
|
||||
-webkit-transition: box-shadow 0.2s;
|
||||
-moz-transition: box-shadow 0.2s;
|
||||
transition: box-shadow 0.2s;
|
||||
webkit-animation: spinAround 9s linear infinite;
|
||||
-moz-animation: spinAround 9s linear infinite;
|
||||
animation: spinAround 9s linear infinite;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@-webkit-keyframes spinAround {
|
||||
from {
|
||||
-webkit-transform: rotate(0deg)
|
||||
}
|
||||
to {
|
||||
-webkit-transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes spinAround {
|
||||
from {
|
||||
-moz-transform: rotate(0deg)
|
||||
}
|
||||
to {
|
||||
-moz-transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
@keyframes spinAround {
|
||||
from {
|
||||
transform: rotate(0deg)
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.service-section .service-inner-box-2 .feature-bg-shape{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 264px;
|
||||
height: 273px;
|
||||
-webkit-transition: all 300ms ease;
|
||||
transition: all 300ms ease;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
inset-inline-end: 0;
|
||||
background-position: top right;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.service-section .service-inner-box-2 {
|
||||
position: relative;
|
||||
box-shadow: 0 0px 15px rgba(0, 0, 0, .1);
|
||||
background-color: var(--bs-white);
|
||||
}
|
||||
|
||||
.service-section .service-inner-box-2:hover .service-title a {
|
||||
color: var(--bs-primary);
|
||||
}
|
||||
|
||||
.service-section .service-inner-box-2:hover .service-img img{
|
||||
transform: scale(1.2);
|
||||
}
|
||||
|
||||
.service-section .service-inner-box-2 .servive-wrap {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.service-section .service-inner-box-2 .content-box {
|
||||
padding: 50px 16px 30px;
|
||||
}
|
||||
|
||||
.service-section .service-inner-box-2 .service-icon {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.service-section .service-inner-box-2 .service-title {
|
||||
position: relative;
|
||||
background: unset;
|
||||
box-shadow: none;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.service-section .service-inner-box-2 .read-link {
|
||||
display: inline;
|
||||
font-size: inherit;
|
||||
color: var(--bs-secondary);
|
||||
text-decoration: none;
|
||||
background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0 100% / 0 0.18rem no-repeat;
|
||||
}
|
||||
|
||||
|
||||
.service-section .service-inner-box-2 .read-link:hover,
|
||||
.service-section .service-inner-box-2 .read-link:focus {
|
||||
letter-spacing: 0.03rem;
|
||||
background-size: 75% 2px;
|
||||
color: var(--bs-primary);
|
||||
}
|
||||
|
||||
.service-section .service-inner-box-2 .read-link i {
|
||||
font-size: inherit;
|
||||
background: var(--bs-primary);
|
||||
color: var(--bs-white);
|
||||
border-radius: 50%;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
line-height: 20px;
|
||||
margin-left: 5px;
|
||||
transition: all .3s ease;
|
||||
rotate: -40deg;
|
||||
}
|
||||
|
||||
.service-section .service-inner-box-2 .read-link:hover i,
|
||||
.service-section .service-inner-box-2 .read-link:focus i{
|
||||
background: var(--bs-secondary);
|
||||
color: var(--bs-primary);
|
||||
rotate: 0deg;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.arvina-theme .above-header .widget_social_widget li a:hover i,
|
||||
.arvina-theme .above-header .widget_social_widget li a:focus i {
|
||||
color: var(--bs-white);
|
||||
background-color: var(--bs-secondary);
|
||||
}
|
||||
.arvina-theme .above-header {
|
||||
border-bottom: none;
|
||||
}
|
||||
.arvina-theme .above-header:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: -50px;
|
||||
width: 50%;
|
||||
height: 100%;
|
||||
background: var(--bs-primary);
|
||||
transform: skewX(40deg);
|
||||
border-radius: 20px 0 0 0;
|
||||
border-left: 5px solid var(--bs-white);
|
||||
}
|
||||
.arvina-theme .main-navigation:not(.is-sticky-menu) {
|
||||
position: relative;
|
||||
}
|
||||
.arvina-theme .main-navigation .logo:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100px;
|
||||
width: 30%;
|
||||
height: 100%;
|
||||
background: var(--bs-primary);
|
||||
border-radius: 0 0 20px 0;
|
||||
transform: skewX(40deg);
|
||||
border-right: 10px solid var(--bs-white);
|
||||
z-index: -1;
|
||||
box-shadow: 0px 9px 75px rgba(8, 20, 44, 0.09);
|
||||
}
|
||||
.arvina-theme h4.site-title::first-letter {
|
||||
color: var(--bs-white);
|
||||
}
|
||||
.arvina-theme .slider-section .main-content h1 {
|
||||
font-size: 4rem;
|
||||
}
|
||||
.slider-section + .info-section-3 {
|
||||
margin-top: -3.55rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.info-section-3 {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
.is-large.wc-block-cart .wc-block-cart__totals-title {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.wp-block-latest-posts__list .wp-block-latest-posts__post-title {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.wp-block-file.has-background {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.sidebar .wp-block-latest-comments li a {
|
||||
color: var(--bs-secondary);
|
||||
}
|
||||
|
||||
.sidebar .wp-block-latest-comments li a:hover,
|
||||
.sidebar .wp-block-latest-comments li a:focus {
|
||||
color: var(--bs-primary);
|
||||
}
|
||||
|
||||
.about-section .about-video-btn {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.woocommerce table.shop_table td a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.footer-main .widget li a:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.sidebar .widget li a:focus {
|
||||
outline: none;
|
||||
}
|
||||
69
gk-assets/themes/arvina/theme-header.php
Normal file
69
gk-assets/themes/arvina/theme-header.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<header id="main-header" class="main-header">
|
||||
<?php abiz_top_header(); ?>
|
||||
<div class="navigation-wrapper">
|
||||
<div class="main-navigation-area d-none d-lg-block">
|
||||
<div class="main-navigation <?php echo esc_attr(abiz_site_header_sticky()); ?> ">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-3 my-auto">
|
||||
<div class="logo">
|
||||
<?php get_template_part('template-parts/site','branding'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-9 my-auto">
|
||||
<nav class="navbar-area">
|
||||
<div class="main-navbar">
|
||||
<?php get_template_part('template-parts/site','main-nav'); ?>
|
||||
</div>
|
||||
<div class="main-menu-right">
|
||||
<ul class="menu-right-list">
|
||||
<?php get_template_part('template-parts/header','cart'); ?>
|
||||
<?php get_template_part('template-parts/header','search'); ?>
|
||||
<?php get_template_part('template-parts/header','account'); ?>
|
||||
<?php get_template_part('template-parts/header','button'); ?>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="main-mobile-nav <?php echo esc_attr(abiz_site_header_sticky()); ?>">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="main-mobile-menu">
|
||||
<div class="mobile-logo">
|
||||
<div class="logo">
|
||||
<?php get_template_part('template-parts/site','branding'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="menu-collapse-wrap">
|
||||
<div class="main-menu-right">
|
||||
<ul class="menu-right-list">
|
||||
<?php get_template_part('template-parts/header','search'); ?>
|
||||
<?php get_template_part('template-parts/header','account'); ?>
|
||||
<?php get_template_part('template-parts/header','button'); ?>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="hamburger-menu">
|
||||
<button type="button" class="menu-collapsed" aria-label="<?php esc_attr_e('Menu Collaped','arvina'); ?>">
|
||||
<div class="top-bun"></div>
|
||||
<div class="meat"></div>
|
||||
<div class="bottom-bun"></div>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="main-mobile-wrapper">
|
||||
<div id="mobile-menu-build" class="main-mobile-build">
|
||||
<button type="button" class="header-close-menu close-style" aria-label="<?php esc_attr_e('Header Close Menu','arvina'); ?>"></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
Reference in New Issue
Block a user