diff --git a/theme_upshift/README.rst b/theme_upshift/README.rst new file mode 100644 index 000000000..086796830 --- /dev/null +++ b/theme_upshift/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Theme Upshift +============= +* Design Web Pages with Theme Upshift + +Configuration +============= + - www.odoo.com/documentation/18.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions: `__ + +Credits +------- +Developers: (V17) FATHIMA SHALFA P Contact: odoo@cybrosys.com + (V18) AYANA R Contact: odoo@cybrosys.com + +Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com +This module is maintained by Cybrosys Technologies. +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/theme_upshift/__init__.py b/theme_upshift/__init__.py new file mode 100644 index 000000000..5237b4616 --- /dev/null +++ b/theme_upshift/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import controllers diff --git a/theme_upshift/__manifest__.py b/theme_upshift/__manifest__.py new file mode 100644 index 000000000..e94ec5378 --- /dev/null +++ b/theme_upshift/__manifest__.py @@ -0,0 +1,83 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': "Theme Upshift", + 'version': "18.0.1.0.0", + 'category': 'Theme/Corporate', + 'summary': 'Theme Upshift is a modern and versatile website theme' + ' designed for businesses looking to establish a professional presence' + ' and feature', + 'description': 'Theme Upshift is a modern and stylish website template' + 'designed for businesses seeking a dynamic and professional.' + 'It offers a clean, user-friendly layout with customizable sections for' + 'showcasing products, services, and company details.' + 'subtle animations, such as hover effects, fade-ins, and sliding transitions,' + 'enhance the user experience by creating an interactive and engaging interface.', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['website', 'mail','web_editor'], + # data files always loaded at installation + 'data': [ + 'data/website_menus.xml', + 'views/about.xml', + 'views/contact_us.xml', + 'views/footer_template.xml', + 'views/header_templates.xml', + 'views/home.xml', + 'views/portfolio_project.xml', + 'views/portfolio_another_action.xml', + 'views/snippet/about_banner.xml', + 'views/snippet/status_section.xml', + 'views/snippet/section_goal.xml', + 'views/snippet/team_section.xml', + 'views/snippet/subscribe_section.xml', + 'views/snippet/home_banner.xml', + 'views/snippet/service_section.xml', + 'views/snippet/process_section.xml', + 'views/snippet/testimonial_section.xml', + 'views/snippet/video_section.xml', + 'views/snippet/location.xml', + 'views/snippet/portfolio_section.xml', + ], + 'assets': { + 'web.assets_frontend': [ + "https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js", + "https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js", + "https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/TextPlugin.min.js", + "/theme_upshift/static/src/js/othernavbar.js", + "/theme_upshift/static/src/css/style.css", + "/theme_upshift/static/src/js/status_counter.js", + "/theme_upshift/static/src/js/map.js", + "/theme_upshift/static/src/css/testimonial_style.css", + ], + }, + "images": [ + "static/description/banner.jpg", + "static/description/theme_screenshot.jpg", + ], + "license": "LGPL-3", + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/theme_upshift/controllers/__init__.py b/theme_upshift/controllers/__init__.py new file mode 100644 index 000000000..da771df97 --- /dev/null +++ b/theme_upshift/controllers/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import upshift +from . import custom_website_form diff --git a/theme_upshift/controllers/custom_website_form.py b/theme_upshift/controllers/custom_website_form.py new file mode 100644 index 000000000..4f78622a1 --- /dev/null +++ b/theme_upshift/controllers/custom_website_form.py @@ -0,0 +1,57 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import http +from odoo.http import request +from odoo.addons.website.controllers.form import WebsiteForm + +class CustomWebsiteForm(WebsiteForm): + """ + This class extends the WebsiteForm controller in Odoo to allow custom handling + of form submissions from the website. Specifically, it modifies form submissions + for the 'mail.mail' model to concatenate the 'name' and 'second_name' fields + into a single 'name' field before processing the form. + """ + @http.route('/website/form/', type='http', + auth="public", methods=['POST'], website=True) + def website_form(self, model_name, **kwargs): + """ + If the model is 'mail.mail' and the fields 'name' and 'second_name' are + provided, it concatenates these two fields into the 'name' field. + """ + if model_name == 'mail.mail': + if 'name' in kwargs and 'second_name' in kwargs: + kwargs['name'] = f"{kwargs['name']} {kwargs['second_name']}" + kwargs.pop('second_name', None) + return super(CustomWebsiteForm, self).website_form(model_name, **kwargs) + + + @http.route('/get-company/address',type='json',auth="public",website=True,csrf=False) + def get_company_address(self): + """ + Retrieve the company address for the current user. + """ + user_id = request.env.user + address_components = [user_id.company_id.street,user_id.company_id.city, + user_id.company_id.state_id.display_name, + user_id.company_id.country_id.display_name + ] + return ' '.join(filter(None, address_components)) diff --git a/theme_upshift/controllers/upshift.py b/theme_upshift/controllers/upshift.py new file mode 100644 index 000000000..fac12f9d1 --- /dev/null +++ b/theme_upshift/controllers/upshift.py @@ -0,0 +1,101 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +import logging +from odoo import http +from odoo.http import request + +_logger = logging.getLogger(__name__) + +class MenuController(http.Controller): + """ + Controller for handling redirections to various pages based on menu clicks. + + This class defines several routes that redirect users to different pages + in the website based on the menus clicked. Each method corresponds to a specific + page in the 'theme_upshift' theme. + + """ + + @http.route('/home', website=True, type='http', auth='public',csrf=False) + def home_page(self): + """Redirect to the home page.""" + return request.render('theme_upshift.upshift_home_page') + + @http.route('/contact-us', website=True, type='http', auth='public', + csrf=False) + def contact_us(self): + """Redirect to the contact us page.""" + return request.render('theme_upshift.upshift_contact_us') + + @http.route('/thank_you_page', website=True, type='http', auth='public', + csrf=False) + def thank_you(self): + """Redirect to the Thank you page.""" + return request.render('theme_upshift.thank_you_page') + + @http.route('/about', website=True, type='http', auth='public', + csrf=False) + def about_page(self): + """Redirect to the about page.""" + return request.render('theme_upshift.about_page') + + @http.route('/project', website=True, type='http', auth='public', + csrf=False) + def portfolio_project(self): + """Redirect to the portfolio project page.""" + return request.render('theme_upshift.portfolio_project') + + @http.route('/another_action', website=True, type='http', auth='public', + csrf=False) + def portfolio_another_action(self): + """Redirect to the portfolio Another Action page.""" + return request.render('theme_upshift.portfolio_another_action') + + @http.route('/another_action2', website=True, type='http', auth='public', + csrf=False) + def portfolio_another_action2(self): + """Redirect to the portfolio Another Action page 2.""" + return request.render('theme_upshift.portfolio_another_action2') + + @http.route('/another_action3', website=True, type='http', auth='public', + csrf=False) + def portfolio_another_action3(self): + """Redirect to the portfolio Another Action page 3.""" + return request.render('theme_upshift.portfolio_another_action3') + + @http.route('/another_action4', website=True, type='http', auth='public', + csrf=False) + def portfolio_another_action4(self): + """Redirect to the portfolio Another Action page 4.""" + return request.render('theme_upshift.portfolio_another_action4') + + @http.route('/another_action5', website=True, type='http', auth='public', + csrf=False) + def portfolio_another_action5(self): + """Redirect to the portfolio Another Action page 5.""" + return request.render('theme_upshift.portfolio_another_action5') + + @http.route('/another_action6', website=True, type='http', auth='public', + csrf=False) + def portfolio_another_action6(self): + """Redirect to the portfolio Another Action page 6.""" + return request.render('theme_upshift.portfolio_another_action6') diff --git a/theme_upshift/data/website_menus.xml b/theme_upshift/data/website_menus.xml new file mode 100644 index 000000000..76c97fb1e --- /dev/null +++ b/theme_upshift/data/website_menus.xml @@ -0,0 +1,18 @@ + + + + + + About + /about + + 35 + + + Portfolio + /project + + 36 + + + diff --git a/theme_upshift/doc/RELEASE_NOTE.md b/theme_upshift/doc/RELEASE_NOTE.md new file mode 100644 index 000000000..1c8049fcd --- /dev/null +++ b/theme_upshift/doc/RELEASE_NOTE.md @@ -0,0 +1,5 @@ +## Module +#### 13.12.2024 +#### Version 18.0.1.0.0 +#### ADD +Initial commit for Theme Upshift \ No newline at end of file diff --git a/theme_upshift/static/description/banner.jpg b/theme_upshift/static/description/banner.jpg new file mode 100644 index 000000000..189d7e2ec Binary files /dev/null and b/theme_upshift/static/description/banner.jpg differ diff --git a/theme_upshift/static/description/icon.png b/theme_upshift/static/description/icon.png new file mode 100644 index 000000000..1d5ec5001 Binary files /dev/null and b/theme_upshift/static/description/icon.png differ diff --git a/theme_upshift/static/description/images/about.png b/theme_upshift/static/description/images/about.png new file mode 100644 index 000000000..a5c8a0a36 Binary files /dev/null and b/theme_upshift/static/description/images/about.png differ diff --git a/theme_upshift/static/description/images/arrows-repeat.svg b/theme_upshift/static/description/images/arrows-repeat.svg new file mode 100644 index 000000000..94fb8f7f9 --- /dev/null +++ b/theme_upshift/static/description/images/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_upshift/static/description/images/banner.jpg b/theme_upshift/static/description/images/banner.jpg new file mode 100644 index 000000000..189d7e2ec Binary files /dev/null and b/theme_upshift/static/description/images/banner.jpg differ diff --git a/theme_upshift/static/description/images/blog_mb_view.png b/theme_upshift/static/description/images/blog_mb_view.png new file mode 100644 index 000000000..213ff18c2 Binary files /dev/null and b/theme_upshift/static/description/images/blog_mb_view.png differ diff --git a/theme_upshift/static/description/images/check.svg b/theme_upshift/static/description/images/check.svg new file mode 100644 index 000000000..8bc79333d --- /dev/null +++ b/theme_upshift/static/description/images/check.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_upshift/static/description/images/contactus.png b/theme_upshift/static/description/images/contactus.png new file mode 100644 index 000000000..6f86e601e Binary files /dev/null and b/theme_upshift/static/description/images/contactus.png differ diff --git a/theme_upshift/static/description/images/contactus_mb_view.png b/theme_upshift/static/description/images/contactus_mb_view.png new file mode 100644 index 000000000..12b223a00 Binary files /dev/null and b/theme_upshift/static/description/images/contactus_mb_view.png differ diff --git a/theme_upshift/static/description/images/count_mb_view.png b/theme_upshift/static/description/images/count_mb_view.png new file mode 100644 index 000000000..3bb6c2c14 Binary files /dev/null and b/theme_upshift/static/description/images/count_mb_view.png differ diff --git a/theme_upshift/static/description/images/feature-star.svg b/theme_upshift/static/description/images/feature-star.svg new file mode 100644 index 000000000..a913270e8 --- /dev/null +++ b/theme_upshift/static/description/images/feature-star.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/theme_upshift/static/description/images/gear.svg b/theme_upshift/static/description/images/gear.svg new file mode 100644 index 000000000..ce383059d --- /dev/null +++ b/theme_upshift/static/description/images/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_upshift/static/description/images/hero.png b/theme_upshift/static/description/images/hero.png new file mode 100644 index 000000000..c8089456d Binary files /dev/null and b/theme_upshift/static/description/images/hero.png differ diff --git a/theme_upshift/static/description/images/hire-odoo.svg b/theme_upshift/static/description/images/hire-odoo.svg new file mode 100644 index 000000000..9cfec4e44 --- /dev/null +++ b/theme_upshift/static/description/images/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/theme_upshift/static/description/images/home_mb_view.png b/theme_upshift/static/description/images/home_mb_view.png new file mode 100644 index 000000000..f570d0881 Binary files /dev/null and b/theme_upshift/static/description/images/home_mb_view.png differ diff --git a/theme_upshift/static/description/images/home_page.png b/theme_upshift/static/description/images/home_page.png new file mode 100644 index 000000000..a1d6f0d88 Binary files /dev/null and b/theme_upshift/static/description/images/home_page.png differ diff --git a/theme_upshift/static/description/images/icon.png b/theme_upshift/static/description/images/icon.png new file mode 100644 index 000000000..1d5ec5001 Binary files /dev/null and b/theme_upshift/static/description/images/icon.png differ diff --git a/theme_upshift/static/description/images/icons/about-section.png b/theme_upshift/static/description/images/icons/about-section.png new file mode 100644 index 000000000..9bd6b4492 Binary files /dev/null and b/theme_upshift/static/description/images/icons/about-section.png differ diff --git a/theme_upshift/static/description/images/icons/hero-section.png b/theme_upshift/static/description/images/icons/hero-section.png new file mode 100644 index 000000000..6a26d811f Binary files /dev/null and b/theme_upshift/static/description/images/icons/hero-section.png differ diff --git a/theme_upshift/static/description/images/icons/location.png b/theme_upshift/static/description/images/icons/location.png new file mode 100644 index 000000000..9e4aa0574 Binary files /dev/null and b/theme_upshift/static/description/images/icons/location.png differ diff --git a/theme_upshift/static/description/images/icons/portfolio-section.png b/theme_upshift/static/description/images/icons/portfolio-section.png new file mode 100644 index 000000000..db0977f2f Binary files /dev/null and b/theme_upshift/static/description/images/icons/portfolio-section.png differ diff --git a/theme_upshift/static/description/images/icons/process-section.png b/theme_upshift/static/description/images/icons/process-section.png new file mode 100644 index 000000000..f65936dde Binary files /dev/null and b/theme_upshift/static/description/images/icons/process-section.png differ diff --git a/theme_upshift/static/description/images/icons/section-goal.png b/theme_upshift/static/description/images/icons/section-goal.png new file mode 100644 index 000000000..69df9a0ed Binary files /dev/null and b/theme_upshift/static/description/images/icons/section-goal.png differ diff --git a/theme_upshift/static/description/images/icons/service-section.png b/theme_upshift/static/description/images/icons/service-section.png new file mode 100644 index 000000000..198a5ed35 Binary files /dev/null and b/theme_upshift/static/description/images/icons/service-section.png differ diff --git a/theme_upshift/static/description/images/icons/status-section.png b/theme_upshift/static/description/images/icons/status-section.png new file mode 100644 index 000000000..d6fea1e2a Binary files /dev/null and b/theme_upshift/static/description/images/icons/status-section.png differ diff --git a/theme_upshift/static/description/images/icons/subscribe-section.png b/theme_upshift/static/description/images/icons/subscribe-section.png new file mode 100644 index 000000000..8b5453dbc Binary files /dev/null and b/theme_upshift/static/description/images/icons/subscribe-section.png differ diff --git a/theme_upshift/static/description/images/icons/team-section.png b/theme_upshift/static/description/images/icons/team-section.png new file mode 100644 index 000000000..58445b4cb Binary files /dev/null and b/theme_upshift/static/description/images/icons/team-section.png differ diff --git a/theme_upshift/static/description/images/icons/tesimonail-section.png b/theme_upshift/static/description/images/icons/tesimonail-section.png new file mode 100644 index 000000000..3349285b7 Binary files /dev/null and b/theme_upshift/static/description/images/icons/tesimonail-section.png differ diff --git a/theme_upshift/static/description/images/icons/video-section.png b/theme_upshift/static/description/images/icons/video-section.png new file mode 100644 index 000000000..6e8f0acd9 Binary files /dev/null and b/theme_upshift/static/description/images/icons/video-section.png differ diff --git a/theme_upshift/static/description/images/laptop_view.jpg b/theme_upshift/static/description/images/laptop_view.jpg new file mode 100644 index 000000000..89008e49d Binary files /dev/null and b/theme_upshift/static/description/images/laptop_view.jpg differ diff --git a/theme_upshift/static/description/images/life-ring-icon.svg b/theme_upshift/static/description/images/life-ring-icon.svg new file mode 100644 index 000000000..b6c797ba1 --- /dev/null +++ b/theme_upshift/static/description/images/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/theme_upshift/static/description/images/location.png b/theme_upshift/static/description/images/location.png new file mode 100644 index 000000000..52977ae6b Binary files /dev/null and b/theme_upshift/static/description/images/location.png differ diff --git a/theme_upshift/static/description/images/mobile_view.jpg b/theme_upshift/static/description/images/mobile_view.jpg new file mode 100644 index 000000000..31a6a04c3 Binary files /dev/null and b/theme_upshift/static/description/images/mobile_view.jpg differ diff --git a/theme_upshift/static/description/images/odoo-consultancy.svg b/theme_upshift/static/description/images/odoo-consultancy.svg new file mode 100644 index 000000000..c2c27e608 --- /dev/null +++ b/theme_upshift/static/description/images/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/theme_upshift/static/description/images/odoo-licencing.svg b/theme_upshift/static/description/images/odoo-licencing.svg new file mode 100644 index 000000000..8a520b40f --- /dev/null +++ b/theme_upshift/static/description/images/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme_upshift/static/description/images/patter.svg b/theme_upshift/static/description/images/patter.svg new file mode 100644 index 000000000..9b7b0d7cd --- /dev/null +++ b/theme_upshift/static/description/images/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/theme_upshift/static/description/images/portfolio.png b/theme_upshift/static/description/images/portfolio.png new file mode 100644 index 000000000..bedf43c61 Binary files /dev/null and b/theme_upshift/static/description/images/portfolio.png differ diff --git a/theme_upshift/static/description/images/process_mb_view.png b/theme_upshift/static/description/images/process_mb_view.png new file mode 100644 index 000000000..5f24b7f04 Binary files /dev/null and b/theme_upshift/static/description/images/process_mb_view.png differ diff --git a/theme_upshift/static/description/images/puzzle-piece-icon.svg b/theme_upshift/static/description/images/puzzle-piece-icon.svg new file mode 100644 index 000000000..ab5e56fa7 --- /dev/null +++ b/theme_upshift/static/description/images/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_upshift/static/description/images/service.png b/theme_upshift/static/description/images/service.png new file mode 100644 index 000000000..94424e334 Binary files /dev/null and b/theme_upshift/static/description/images/service.png differ diff --git a/theme_upshift/static/description/images/shop_mb_view.png b/theme_upshift/static/description/images/shop_mb_view.png new file mode 100644 index 000000000..064fdc8c6 Binary files /dev/null and b/theme_upshift/static/description/images/shop_mb_view.png differ diff --git a/theme_upshift/static/description/images/theme-screenshot.jpg b/theme_upshift/static/description/images/theme-screenshot.jpg new file mode 100644 index 000000000..4ba7f8ef5 Binary files /dev/null and b/theme_upshift/static/description/images/theme-screenshot.jpg differ diff --git a/theme_upshift/static/description/images/translate.svg b/theme_upshift/static/description/images/translate.svg new file mode 100644 index 000000000..eea729542 --- /dev/null +++ b/theme_upshift/static/description/images/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_upshift/static/description/images/video.png b/theme_upshift/static/description/images/video.png new file mode 100644 index 000000000..1e423cdf7 Binary files /dev/null and b/theme_upshift/static/description/images/video.png differ diff --git a/theme_upshift/static/description/images/wrench-icon.svg b/theme_upshift/static/description/images/wrench-icon.svg new file mode 100644 index 000000000..4e0ce1d01 --- /dev/null +++ b/theme_upshift/static/description/images/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/theme_upshift/static/description/index.html b/theme_upshift/static/description/index.html new file mode 100644 index 000000000..fa242b73d --- /dev/null +++ b/theme_upshift/static/description/index.html @@ -0,0 +1,710 @@ + + + + + + + app index + + + + + + + + + + +
+ + + +
+
+
+
+ +
+
+
+
+ +
+ Supports: +
+ Community +
+
+ Enterprise +
+
+
+
+
+ Availability: +
+ Odoo Online +
+
+ Odoo.sh +
+
+ On Premise +
+
+
+
+
+
+ + + + +
+
+ +
+
+ + + + + + +
+
+
+
+
+

Our Features

+
+
+
+
+
+
+
+ +

Custom Designed Snippets for better user experience

+

Optimized Code Snippets for Enhanced User Experience.

+
+ +
+
+
+
+
+ +

Fully Customized AboutUs page

+

Key information about the company and includes sections dedicated to showcasing team members, + giving visitors insight into the people behind the brand.

+
+ +
+
+
+
+ +

Showcases projects or items in an elegant and visually appealing layout.

+ + +
+
+
+
+
+ +

A Clean layout and Font Style

+

Modern, Clean Interface with Premium Typography.

+
+
+
+
+
+
+ +

Unique animation effects and Shortcodes

+

Unique Animation effects and Shortcodes that enhance the presentation of your + brand

+
+ +
+
+
+
+
+ +

Fully Responsive Theme with a Premium Design

+

Premium Responsive Design for All Devices

+ +
+ +
+
+
+
+
+ + +
+
+
+ +
+
+ +
+
+
+

Theme Features

+
+
+
+
+ HIGHLIGHT +

Mobile View

+

User-friendly and modern looking theme makes + your page more Stylish And Beautiful.

+
+
+ Grid item +
+ +
+
+ +
+
+
+ HIGHLIGHT +

Desktop View

+

Customizing and using Theme Upshift is incredibly simple. + With its intuitive drag-and-drop interface, you can effortlessly create + visually captivating webpages + in no time. Whether you’re a beginner or a seasoned web designer, the + seamless design tools make + building your site an enjoyable experience. Say goodbye to complex + coding and technical + setups—Theme Upshift streamlines the process, allowing you to focus on + your vision. + Elevate your online presence effortlessly with this user-friendly, + flexible theme, designed to make customization as smooth and hassle-free + as possible./p> +

+
+ Grid item +
+ +
+
+
+ + + + +
+
+
+
+ HIGHLIGHT +

Home Page

+

It is easy to customize and use. + Just drag and drop the building blocks to make attractive + webpages.Customizable building blocks in home page design helps you to + edit them as per needs.

+
+
+ Grid item +
+ +
+
+ +
+
+
+ HIGHLIGHT +

Portfolio View

+

The portfolio section of your site showcases projects or items + in an elegant and visually appealing layout. It displays three items per + row, + ensuring a clean and organized presentation that draws attention to each + item.

+
+
+ Grid item +
+ +
+
+
+ + + + +
+
+
+
+ HIGHLIGHT +

About Us

+

Theme Upshift About Page is fully customized to provide a + detailed overview of your business. It highlights key information about + the company + and includes sections dedicated to showcasing team members, + giving visitors insight into the people behind the brand.

+
+
+ Grid item +
+ +
+
+ +
+
+
+ HIGHLIGHT +

Contact Page

+

In the customized Contact us page the company details will show, + and it will help to your customer to reach you in simple way.

+
+
+ Grid item +
+ +
+
+
+ + +
+
+
+
+ +
+ +
+ + + + + + +
+
+
+
+

+ Build a Modern
+ Adaptive Design for Modern Corporate. +

+ +
+

An elegant and contemporary corporate website theme that enhances your online presence. + With intuitive drag & drop functionality, you can effortlessly construct your ideal layout. + Theme Upshift offers the complete solution you need for your Business. + + .

+
    +
  • Fully Responsive Framework
  • +
  • Universal Screen Size Compatibility
  • +
+
+
+
+
+
+
+ +
+ +
+
+
+
+ + + + + + +
+ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/description/theme_screenshot.jpg b/theme_upshift/static/description/theme_screenshot.jpg new file mode 100644 index 000000000..4ba7f8ef5 Binary files /dev/null and b/theme_upshift/static/description/theme_screenshot.jpg differ diff --git a/theme_upshift/static/src/css/style.css b/theme_upshift/static/src/css/style.css new file mode 100644 index 000000000..068cb21b3 --- /dev/null +++ b/theme_upshift/static/src/css/style.css @@ -0,0 +1,2005 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ +/* Document + ========================================================================== */ +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ +/** + * Remove the margin in all browsers. + */ +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ +/** + * Remove the gray background on active links in IE 10. + */ +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +code, +kbd, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ +/** + * Remove the border on images inside links in IE 10. + */ +img { + border-style: none; +} + +/* Forms + ========================================================================== */ +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ +button, +select { /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ +button, +[type=button], +[type=reset], +[type=submit] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ +button::-moz-focus-inner, +[type=button]::-moz-focus-inner, +[type=reset]::-moz-focus-inner, +[type=submit]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ +button:-moz-focusring, +[type=button]:-moz-focusring, +[type=reset]:-moz-focusring, +[type=submit]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ +[type=checkbox], +[type=radio] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ +[type=number]::-webkit-inner-spin-button, +[type=number]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ +[type=search] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ +[type=search]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ +/** + * Add the correct display in IE 10+. + */ +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ +[hidden] { + display: none; +} + +:root { + --up-primary: #D5BC93; + --brand-red: #BE3144; + --brand-dark: #242424; + --up-bg-section:#161616; + --brand-heading: #0C0C0C; + --brand-text: #767676; + --brand-blue-900: #1C3F90; + --brand-blue-100: #EEF1F8; + --brand-green-900: #011E24; + --brand-green-800: #323D46; + --card-bg: #F5F5F5; + --brand-grey:#DFDFDF; + --white-color: #ffff; + --black-color:#000; + --grey-color-900: #34383B; +} + +.home_about { + padding-top: 80px; + padding-bottom: 80px; + margin-top: 40px; +} +@media (max-width: 768px) { + .home_about { + padding-top: 40px; + } +} +.home_about .wrapper .video_wrapper { + max-width: 650px; +} +.home_about .wrapper .video_wrapper .video-js { + width: 100%; + height: 370px; + border-radius: 5px; +} +.home_about .wrapper .about_right { + padding-left: 30px; +} +@media (max-width: 768px) { + .home_about .wrapper .about_right { + padding-top: 40px; + padding-left: 0; + } +} +.home_about .wrapper .about_right .wave { + margin-bottom: 20px; + width: 50px; +} +.home_about .wrapper .about_right h3 { + font-size: 36px; + font-weight: 600; + padding-bottom: 15px; +} +.home_about .wrapper .about_right p { + color: var(--brand-text); + line-height: 1.6; +} +.home_about .wrapper .about_right .results { + display: flex; + align-items: center; + padding-top: 15px; +} + +@media (max-width:768px){ +.home_about .wrapper .about_right .results { + margin-bottom:20px +} +} + + +.home_about .wrapper .about_right .results :nth-child(1) { + padding-right: 50px; +} +.home_about .wrapper .about_right .results .result_numbers h4 { + color: var(--up-primary); + font-size: 36px; +} +.home_about .wrapper .about_right .results .result_numbers p { + color: var(--color-black); +} + +.services-section { + padding-top: 60px; + margin-bottom: 60px; +} +@media (max-width: 992px) { + .services-section { + padding-top: 0px; + } +} +.services-section .wrapper .services-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); + justify-content: center; + gap: 2rem; +} +@media (max-width: 992px) { + .services-section .wrapper .services-grid { + grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); + } +} +.services-section .wrapper .services-grid .service-card { + background-color: var(--card-bg); + padding: 30px 40px; + border-radius: 5px; + box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; +} +.services-section .wrapper .services-grid .service-card .icon-bg-1 { + background-color: #87CEEB; /* Soft Blue */ +} +.services-section .wrapper .services-grid .service-card .icon-bg-2 { + background-color: #FF7F50; /* Coral */ +} +.services-section .wrapper .services-grid .service-card .icon-bg-3 { + background-color: #98FF98; /* Mint Green */ +} +.services-section .wrapper .services-grid .service-card .icon-bg-4 { + background-color: #FFD700; /* Golden Yellow */ +} +.services-section .wrapper .services-grid .service-card .icon-bg-5 { + background-color: #9370DB; /* Light Purple */ +} +.services-section .wrapper .services-grid .service-card .icon-bg-6 { + background-color: #FA8072; /* Salmon Pink */ +} +.services-section .wrapper .services-grid .service-card .icon-bg-7 { + background-color: #D3D3D3; /* Light Gray */ +} +.services-section .wrapper .services-grid .service-card .icon-bg-8 { + background-color: #FFA07A; /* Soft Orange */ +} +.services-section .wrapper .services-grid .service-card .service-icon { + height: 50px; + width: 50px; + border-radius: 50%; + margin-bottom: 30px; +} +.services-section .wrapper .services-grid .service-card .service-icon img { + width: 60px; +} +.services-section .wrapper .services-grid .service-card h3 { + font-size: 24px; + font-weight: 500; + padding-bottom: 10px; + color: var(--black-color); +} +.services-section .wrapper .services-grid .service-card p { + font-size: 16px; + color: var(--black-color); + line-height: 1.4; +} +.services-section .wrapper .services-grid .service-card:hover { + background-color: var(--brand-dark); + cursor: pointer; +} +.services-section .wrapper .services-grid .service-card:hover h3 { + color: var(--white-color); +} +.services-section .wrapper .services-grid .service-card:hover p { + color: var(--white-color); +} +.services-section .wrapper .services-grid .service-card:hover .icon-bg-1, +.services-section .wrapper .services-grid .service-card:hover .icon-bg-2, + .services-section .wrapper .services-grid .service-card:hover .icon-bg-3, + .services-section .wrapper .services-grid .service-card:hover .icon-bg-4, + .services-section .wrapper .services-grid .service-card:hover .icon-bg-5, + .services-section .wrapper .services-grid .service-card:hover .icon-bg-6 { + background-color: white; /* Soft Blue */ + height: 70px; + width: 70px; +} +.services-section .wrapper .services-grid .service-card:hover .service-icon { + height: 70px; + width: 70px; + display: flex; + justify-content: center; + align-items: center; +} +.services-section .wrapper .services-grid .service-card:hover .service-icon img { + width: 60px; + margin: auto; +} + +.process-section { + padding-top: 60px; + padding-bottom: 100px; + margin-bottom: 60px; + background-color: var(--up-primary); +} +@media (max-width: 992px) { + .process-section { + padding-top: 20px; + padding-bottom: 40px; + margin-bottom: 20px; + } +} +.process-section .wrapper .process-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); + justify-content: center; + gap: 2rem; + /* Equivalent to gap in flexbox */ +} +@media (max-width: 992px) { + .process-section .wrapper .process-grid { + grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); + } +} +.process-section .wrapper .process-grid .service-card { + background-color: white; + padding: 30px 40px; + border-radius: 5px; + box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; +} +.process-section .wrapper .process-grid .service-card .icon-bg-1 { + background-color: #87CEEB; + /* Soft Blue */ +} +.process-section .wrapper .process-grid .service-card .icon-bg-2 { + background-color: #FF7F50; + /* Coral */ +} +.process-section .wrapper .process-grid .service-card .icon-bg-3 { + background-color: #98FF98; + /* Mint Green */ +} +.process-section .wrapper .process-grid .service-card .icon-bg-4 { + background-color: #FFD700; + /* Golden Yellow */ +} +.process-section .wrapper .process-grid .service-card .icon-bg-5 { + background-color: #9370DB; + /* Light Purple */ +} +.process-section .wrapper .process-grid .service-card .icon-bg-6 { + background-color: #FA8072; + /* Salmon Pink */ +} +.process-section .wrapper .process-grid .service-card .icon-bg-7 { + background-color: #D3D3D3; + /* Light Gray */ +} +.process-section .wrapper .process-grid .service-card .icon-bg-8 { + background-color: #FFA07A; + /* Soft Orange */ +} +.process-section .wrapper .process-grid .service-card .service-icon { + height: 50px; + width: 50px; + border-radius: 50%; + margin-bottom: 30px; +} +.process-section .wrapper .process-grid .service-card .service-icon img { + width: 60px; +} +.process-section .wrapper .process-grid .service-card h3 { + font-size: 20px; + font-weight: 500; + padding-bottom: 10px; + color: var(--black-color); +} +.process-section .wrapper .process-grid .service-card p { + font-size: 16px; + color: var(--black-color); + line-height: 1.4; +} +.process-section .wrapper .process-grid .service-card:hover { + background-color: var(--brand-dark); + cursor: pointer; +} +.process-section .wrapper .process-grid .service-card:hover h3 { + color: var(--white-color); +} +.process-section .wrapper .process-grid .service-card:hover p { + color: var(--white-color); +} +.process-section .wrapper .process-grid .service-card:hover .icon-bg-1, +.process-section .wrapper .process-grid .service-card:hover .icon-bg-2, +.process-section .wrapper .process-grid .service-card:hover .icon-bg-3, +.process-section .wrapper .process-grid .service-card:hover .icon-bg-4, +.process-section .wrapper .process-grid .service-card:hover .icon-bg-5, +.process-section .wrapper .process-grid .service-card:hover .icon-bg-6 { + background-color: white; + /* Soft Blue */ +} +.process-section .wrapper .btn_wrapper { + width: 100%; + text-align: center; + padding-top: 50px; +} + +.testimonials_section { + padding: 80px 0px; +} +@media (max-width: 992px) { + .testimonials_section { + padding-bottom: 40px; + } +} +.testimonials_section .slider_wrapper { + background-color: var(--up-bg-section); + width: 100%; + border-radius: 5px; + padding: 40px 50px; + text-align: center; + padding-bottom: 100px; +} +.testimonials_section .slider_wrapper .slider_img { + max-width: 100px; + margin: auto; + margin-bottom: 20px; +} +.testimonials_section .slider_wrapper .slider_img img { + width: 100%; + border-radius: 50%; +} +.testimonials_section .slider_wrapper .testimonial_info h6 { + color: var(--white-color); + font-size: 22px; + font-weight: 500; + padding-bottom: 15px; + line-height: 1.5; +} +.testimonials_section .slider_wrapper .testimonial_info p { + color: var(--white-color); + font-size: 22px; + margin-bottom: 0; +} +.testimonials_section .slider_wrapper .testimonial_info span { + color: var(--card-bg); + font-size: 20px; + font-weight: lighter; +} + +.owl-theme .owl-nav { + margin-top: -75px; + z-index: 9999; + position: relative; +} + +.owl-carousel .owl-nav button.owl-prev, +.owl-carousel .owl-nav button.owl-next { + border: 1px solid; + border-color: var(--up-primary); + color: var(--up-primary); /* Arrow color */ + padding: 10px; + border-radius: 50%; /* Makes buttons circular */ + transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */ + height: 30px; + width: 30px; +} + +/* Change color on hover */ +.owl-carousel .owl-nav button.owl-prev:hover, +.owl-carousel .owl-nav button.owl-next:hover { + background-color: var(--up-primary); /* Background color on hover */ + color: var(--white-color); /* Arrow color on hover */ +} + +.locations_section { + padding-top: 80px !important; + padding-bottom: 80px; +} +.locations_section #map1, .locations_section #map2 { + height: 350px; + display: block; + border-radius: 8px; +} +.locations_section .wrapper { + padding-top: 40px; +} +.locations_section .wrapper .location{ + color:black; +} +.locations_section .leaflet-control-attribution { + display: none !important; +} +.locations_section .location-card { + width: 75%; + margin: auto; +} +@media (max-width: 992px) { + .locations_section .location-card { + width: 100%; + } +} +.locations_section .location-card h4 { + font-size: 24px; + font-weight: 500; + padding-top: 20px; + color: var(--brand-heading); +} + + +@media (max-width: 768px) { +.locations_section .location-card h4 { +padding-top:50px +} +} + + +.locations_section .location-card p { + font-size: 16px; + line-height: 1.5; + padding-top: 15px; +} +.locations_section .location-card .contact-info { + margin-top: 40px; + border: 1px solid; + border-color: transparent; + border-top-color: var(--brand-grey) !important; + border-bottom-color: var(--brand-grey); + padding: 30px 0px; +} +.locations_section .location-card .contact-info li { + display: flex; + align-items: center; + gap: 10px; + margin-bottom: 15px; +} +.locations_section .location-card .contact-info .icon_wrapp { + height: 30px; + width: 30px; + background-color: var(--up-primary); + border-radius: 50%; + display: flex; + justify-content: center; + align-items: center; +} +.locations_section .location-card .contact-info .icon_wrapp svg { + width: 20px; +} + +.status { + padding: 100px 0px; +} +.status .stats_wrapp { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 50px; +} +@media (max-width: 992px) { + .status .stats_wrapp { + gap: 15px; + } +} +.status .stat { + text-align: center; + width: 100%; +} +.status .type { + font-weight: 500; + position: relative; + padding-bottom: 25px; + color: var(--black-color); +} +.status .type:after { + position: absolute; + content: ""; + width: 70px; + height: 2px; + background-color: var(--up-primary); + bottom: 10%; + left: 50%; + transform: translate(-50%, -50%); +} +.status p { + color: var(--brand-text); +} +.status .number { + font-size: 2.6rem; + font-weight: 500; + margin-bottom: 10px; + color: var(--black-color); + +} + +.goals { + background-color: var(--up-bg-section); + padding: 100px 0px; +} +.goals .wrapper .goals_text h4 { + color: var(--up-primary); + margin-bottom: 20px; + font-size: 30px; +} +.goals .wrapper .goals_text .content { + padding-top: 20px; +} +.goals .wrapper .goals_text .content h6 { + color: var(--up-primary); + padding-bottom: 15px; +} +.goals .wrapper .goals_text .content p { + color: var(--white-color); +} +.goals .wrapper .goals_img { + max-width: 700px; + margin: auto; +} +@media (max-width: 992px) { + .goals .wrapper .goals_img { + margin-top: 40px; + } +} +.goals .wrapper .goals_img img { + width: 100%; +} + +.our_team { + padding: 100px 0px; +} +@media (max-width: 768px) { + .our_team { + padding-bottom: 50px; + } +} +.our_team .wrapper .team_wrapper .img_wrapper { + max-width: 450px; + position: relative; + margin-bottom: 20px; +} +.our_team .wrapper .team_wrapper .img_wrapper img { + width: 100%; + border-radius: 8px; +} +.our_team .wrapper .team_wrapper .img_wrapper ul { + display: flex; + justify-content: end; + width: 100%; + position: absolute; + top: 15px; + right: 15px; + padding-left: 0; +} +.our_team .wrapper .team_wrapper .img_wrapper ul li { + margin-right: 10px; +} +.our_team .wrapper .team_wrapper .img_wrapper ul .icon { + fill: #D5BC93; + /* Initial color */ + transition: fill 0.3s ease; + /* Smooth transition */ +} +.our_team .wrapper .team_wrapper .img_wrapper ul .icon:hover { + fill: white; + /* New color on hover */ +} +.our_team .wrapper .team_wrapper .img_wrapper ul li a { + display: block; + border-radius: 50%; + padding: 8px; + border: 1px solid; + border-color: var(--up-primary); + height: 40px; + width: 40px; + display: flex; +} +.our_team .wrapper .team_wrapper .img_wrapper ul li a:hover { + background-color: var(--up-primary); +} + +.subscribe { + padding-bottom: 100px; +} +@media (max-width: 768px) { + .subscribe { + padding-bottom: 50px; + } +} +.subscribe .sub_content { + background-position: center; + background-size: cover; + text-align: center; + color: var(--white-color); + padding: 40px 20px; + border-radius: 15px; +} +.subscribe .sub_content h2 { + margin-bottom: 25px; +} + +.contact_form { + margin-top: 100px; + padding: 100px 0; + padding-bottom: 50px; +} +.contact_form .contact_left { + + + background-position: center; + height: 850px; + background-size: cover; +} +.contact_form .contact_left .wrapper { + background-color: rgba(0, 0, 0, 0.235); + color: var(--white-color); + padding: 100px 50px; + height: 100%; + display: flex; + flex-direction: column; + justify-content: center; +} +.contact_form .contact_left .wrapper h2 { + font-size: 48px; + padding-bottom: 15px; +} +.contact_form .contact-form { + background-color: var(--card-bg); + padding: 50px 30px; + border-radius: 8px; +} +.contact_form .form-control { + border: none; + border-bottom: 1px solid rgba(204, 204, 204, 0.6); + border-radius: 0; + box-shadow: none; + background-color: transparent; + margin-bottom: 25px; +} +.contact_form .form-control:focus { + border-bottom-color: #c43710; + box-shadow: none; +} + +.portfolio { + padding: 100px 0; +} +@media (max-width: 768px) { + .portfolio { + padding-bottom: 50px; + } +} +.portfolio .wrapper .portfolio_grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); + justify-content: center; + gap: 2rem; /* Equivalent to gap in flexbox */ +} +.portfolio .wrapper .portfolio_grid .portfolio_wrapper .p_img_wrapper { + position: relative; + max-width: 750px; + margin-bottom: 15px; +} +.portfolio .wrapper .portfolio_grid .portfolio_wrapper .p_img_wrapper img { + width: 100%; + border-radius: 5px; +} +.portfolio .wrapper .portfolio_grid .portfolio_wrapper .p_img_wrapper .badge { + position: absolute; + top: 15px; + right: 20px; + background-color: rgba(0, 0, 0, 0.169); + font-weight: 400; + text-transform: uppercase; + font-size: 12px; + padding: 7px 8px; + border-radius: 4px; +} +.portfolio .wrapper .portfolio_grid .portfolio_wrapper .p_content { + padding-top: 15px; +} +.portfolio .wrapper .portfolio_grid .portfolio_wrapper .p_content span { + font-size: 14px; + margin-bottom: 15px; + color: var(--brand-text); +} +.portfolio .wrapper .portfolio_grid .portfolio_wrapper .p_content .main_content { + border: 1px solid transparent; + border-bottom-color: var(--brand-grey) !important; + margin-bottom: 15px; +} +.portfolio .wrapper .portfolio_grid .portfolio_wrapper .p_content .main_content h4 { + font-size: 22px; + font-weight: 600; + color: var(--brand-heading); + margin-bottom: 15px; +} +.portfolio .wrapper .portfolio_grid .portfolio_wrapper .p_content .main_content p { + font-size: 16px; + margin-bottom: 15px; + color: var(--brand-text); +} +.portfolio .wrapper .portfolio_grid .portfolio_wrapper .p_content .auth { + font-size: 16px; + margin-bottom: 15px; + color: var(--brand-text); +} +.portfolio .wrapper .portfolio_single .portfolio_wrapper .p_img_wrapper { + position: relative; + max-width: auto; + margin-bottom: 15px; +} +.portfolio .wrapper .portfolio_single .portfolio_wrapper .p_img_wrapper img { + width: 100%; + border-radius: 5px; +} +.portfolio .wrapper .portfolio_single .portfolio_wrapper .p_img_wrapper .badge { + position: absolute; + top: 15px; + right: 20px; + background-color: rgba(0, 0, 0, 0.169); + font-weight: 400; + text-transform: uppercase; + font-size: 12px; + padding: 7px 8px; + border-radius: 4px; +} +.portfolio .wrapper .portfolio_single .portfolio_wrapper .p_content { + padding-top: 15px; +} +.portfolio .wrapper .portfolio_single .portfolio_wrapper .p_content span { + font-size: 14px; + margin-bottom: 15px; + color: var(--brand-text); +} +.portfolio .wrapper .portfolio_single .portfolio_wrapper .p_content .main_content { + border: 1px solid transparent; + border-bottom-color: var(--brand-grey) !important; + margin-bottom: 15px; +} +.portfolio .wrapper .portfolio_single .portfolio_wrapper .p_content .main_content h4 { + font-size: 22px; + font-weight: 600; + color: var(--brand-heading); + margin-bottom: 15px; +} +.portfolio .wrapper .portfolio_single .portfolio_wrapper .p_content .main_content p { + font-size: 16px; + margin-bottom: 15px; + color: var(--brand-text); +} +.portfolio .wrapper .portfolio_single .portfolio_wrapper .p_content .auth { + font-size: 16px; + margin-bottom: 15px; + color: var(--brand-text); +} +.portfolio .wrapper .portfolio_single .project_info { + padding-top: 40px; +} +.portfolio .wrapper .portfolio_single .project_info .p_wrapp { + margin-bottom: 30px; +} +.portfolio .wrapper .portfolio_single .project_info .p_wrapp .project_heading { + font-size: 20px; + padding-bottom: 15px; +} +.portfolio .wrapper .portfolio_single .project_info .p_wrapp p { + font-size: 16px; + color: var(--brand-text); + line-height: 2; +} +.portfolio .wrapper .portfolio_single .project_info .p_wrapp ul { + padding-left: 0; +} +.portfolio .wrapper .portfolio_single .project_info .p_wrapp ul li { + font-size: 16px; + color: var(--brand-text); + margin-bottom: 10px; +} + +.btn { + border: none !important; + outline: 0 !important; + -webkit-transition: 0.5s; + transition: 0.5s; +} +.btn-primary { + border-radius: 25px; + font-size: 14px; + font-weight: 500; + text-decoration: none; + padding: 7px 0px 7px 14px; + position: relative; + border: 1px solid var(--p-brand-green) !important; + background-color: #d9d9d9; + color: var(--brand-dark) !important; + transition: all 0.3s; +} +.btn-primary span { + background-color: var(--up-primary); + padding: 8px 13px; + border-radius: 25px; + margin-left: 3px; +} +.btn-primary:hover { + background-color: var(--white-color); +} +.btn-primary:hover span { + background-color: var(--white-color); +} +.btn-secondary { + border-radius: 25px; + font-size: 14px; + font-weight: 400; + text-decoration: none; + padding: 7px 0px 7px 14px; + position: relative; + border: 1px solid var(--p-brand-green) !important; + background-color: var(--brand-dark); + color: var(--white-color) !important; + transition: all 0.3s; +} +.btn-secondary span { + background-color: var(--up-primary); + padding: 8px 13px; + border-radius: 25px; + margin-left: 3px; +} +.btn-secondary:hover { + background-color: var(--brand-dark); +} +.btn-primary-black { + border-radius: 25px; + font-size: 14px; + font-weight: 400; + text-decoration: none; + padding: 7px 0px 7px 14px; + position: relative; + border: 1px solid var(--p-brand-green) !important; + background-color: var(--brand-dark); + color: var(--white-color) !important; + transition: all 0.3s; +} +.btn-primary-black span { + background-color: var(--white-color); + padding: 8px 13px; + border-radius: 25px; + margin-left: 3px; +} +.btn-primary-black:hover { + background-color: var(--brand-dark); +} +.btn-search { + height: 40px; +} +.btn-search img { + height: 20px; +} + +.navigation { + background-color: transparent; + position: fixed; + top: 0; + left: 0; + width: 100%; + z-index: 999; +} +#HeaderUser{ + opacity: 1 !important; +} +.navigation .wrapper .navbar { + padding-top: 15px; + padding-bottom: 20px; +} +.navigation .wrapper .navbar .navbar-brand { + display: flex; + align-items: center; +} +.navigation .wrapper .navbar .navbar-brand img { + width: 40px; + margin-right: 15px; +} +.navigation .wrapper .navbar .navbar-brand span { + color: var(--white-color); + font-size: 36px; + font-weight: 700; +} +.navigation .wrapper .navbar .navbar-brand .brandD { + color: var(--black-color); +} +@media (max-width: 768px) { + .navigation .wrapper .navbar .navbar-brand img { + width: 36px; + margin-right: 15px; + } + .navigation .wrapper .navbar .navbar-brand span { + color: var(--white-color); + font-size: 32px; + font-weight: 700; + } +} +.navigation .wrapper .navbar .navbar-collapse { + justify-content: end; + justify-content: center; +} +@media (max-width: 992px) { + .navigation .wrapper .navbar .navbar-collapse { + padding-top: 20px; + } +} +@media (max-width: 992px) { + .navigation .wrapper .navbar .navbar-collapse { + padding-top: 20px; + background-color: var(--brand-dark) !important; + } + .navigation .wrapper .navbar .collapse2 { + background-color: #ffffff !important; + } +} +.navigation .wrapper .navbar .navbar-nav .nav-item:hover { + background-color: var(--brand-blue-100); + border-radius: 5px !important; +} +.navigation .wrapper .navbar .navbar-nav .nav-item .nav-link { + color: var(--white-color); + font-size: 16px; + padding: 0px 15px; +} +.navigation .wrapper .navbar .navbar-nav .nav-link { + color: var(--white-color); + opacity:1 !important + +} +.o_no_autohide_item:hover { + background-color: var(--brand-blue-100); + border-radius: 5px !important; +} +.o_no_autohide_item a{ + font-size: 20px; + padding: 0px 15px; + &:hover { + background-color: var(--brand-blue-100); + color: var(--brand-blue-900); + } +} + +@media (max-width: 1200px) { + .navigation .wrapper .navbar .navbar-nav .nav-item .nav-link { + padding: 0px 8px; + } +} +@media (max-width: 992px) { + .navigation .wrapper .navbar .navbar-nav .nav-item .nav-link { + padding: 10px 0px; + padding-left: 15px; + } +} +.navigation .wrapper .navbar .navbar-nav .nav-item .nav-link:hover { + color: var(--brand-blue-900); + font-weight: 500; +} +.navigation .wrapper .navbar .navbar-nav .nav-link:hover { + color: var(--brand-blue-900); + font-weight: 500; +} +.navigation .wrapper .navbar .navbar-nav .nav-item .nav-link2 { + color: var(--black-color); +} +.navigation .wrapper .navbar .navbar-nav .nav-link2 { + color: var(--black-color); +} +.navigation .wrapper .navbar .dropdown-menu { + background-repeat: no-repeat; + min-width: 220px; + background-color: rgb(255, 255, 255); + color: rgb(0, 0, 0); + box-shadow: rgb(239, 239, 239) 0px 1px 10px; + background-position: right bottom; + border-image: initial; + border-style: solid; + border-color: rgb(244, 244, 244); + margin: 0px; + border-radius: 4px; + padding: 10px; + overflow: visible; + border-width: 1px !important; + top: 45px; +} +.navigation .wrapper .navbar .dropdown-menu .dropdown-item { + color: var(--brand-dark); + font-size: 16px; + padding: 15px 15px; + padding-bottom: 5px; +} +.navigation .wrapper .navbar .dropdown-menu .dropdown-item:hover { + color: var(--up-); +} + +.navigation.scrolled { + box-shadow: -7px 2px 17px rgba(0, 0, 0, 0.1); + background-color: var(--brand-dark) !important; +} + +.navigation.scrolled2 { + box-shadow: -7px 2px 17px rgba(0, 0, 0, 0.1); + background-color: var(--white-color) !important; +} + + +.navbar-toggler { + position: relative; + width: 45px; + border: none; + padding: 0px; + background-color: transparent; + cursor: pointer; +} + +.navbar-toggler-icon { + display: block; + position: relative; + width: 100%; + height: 20px; + background-color: #ffffff; + transition: transform 0.3s ease, opacity 0.3s ease; +} + + +.hero .wrapper .hero_content .hero_left h1 { + color: var(--white-color); + font-size: 56px; + font-weight: 700; + text-transform: uppercase; + line-height: 1.4; +} + + + + +.hero { + background: -webkit-linear-gradient(to left, #242424, #1c1c1c, #141414); + background: linear-gradient(to left, #242424, #1c1c1c, #141414); + height: auto; + padding-top: 100px; + height: 100vh; +} +.hero ul { + display: block; + width: 100%; + height: inherit; +} +.hero ul { + list-style-type: none; +} +.hero li:nth-child(1) { + position: absolute; + left: 10%; + height: 30px; + width: 30px; + background: rgba(255, 255, 255, 0.2); +} +.hero li:nth-child(2) { + position: absolute; + left: 30%; + height: 45px; + width: 45px; + background: rgba(255, 255, 255, 0.2); +} +.hero li:nth-child(3) { + position: absolute; + left: 50%; + height: 70px; + width: 70px; + background: rgba(255, 255, 255, 0.2); +} +.hero li:nth-child(4) { + position: absolute; + left: 80%; + height: 20px; + width: 20px; + background: rgba(255, 255, 255, 0.2); +} +.hero li { + animation: animate 15s linear 1s infinite; +} +@keyframes animate { + from { + transform: translateY(1500%) rotate(180deg); + } + to { + transform: translateY(-150%) rotate(360deg); + } +} +.hero .wrapper { + height: 100%; + position: relative; + display:flex; + align-items:center; +} +.hero .wrapper .hero_content { + display: flex; + overflow: hidden; +} +.hero .wrapper .hero_content .hero_left { + padding-top: 0px; + margin-right: 80px; + width: 60%; + padding-bottom: 100px; + position: relative; + z-index: 1; +} +@media (max-width: 992px) { + .hero .wrapper .hero_content .hero_left { + width: 80%; + padding-top: 20px; + + } +} +@media (max-width: 768px) { + .hero .wrapper .hero_content .hero_left { + width: 100%; + padding-top: 20px; + } +} + +.hero .wrapper .hero_content .hero_left .text { + color: var(--white-color); + text-transform: uppercase; + line-height: 1.5; + letter-spacing: 2px; + display: inline-block; +} + +.hero .wrapper .hero_content .hero_left .text span { + display: inline-block; + font-size: 50px; + font-weight: 700; + opacity: 0; /* Initially hidden */ +} + +@media (max-width: 768px) { + .hero .wrapper .hero_content .hero_left .text span { + font-size: 36px; + letter-spacing:-2px; + } +} + +@media (max-width: 576x) { + .hero .wrapper .hero_content .hero_left .text span { + font-size: 26px; + } +} +.hero .wrapper .hero_content .hero_left p { + color: var(--white-color); + font-size: 20px; + line-height: 1.8; + padding-bottom: 20px; + margin-top: 15px; +} +.hero .wrapper .hero_content .banner_right { + overflow: hidden; + margin: 30px; +} +@media (max-width: 992px) { + .hero .wrapper .hero_content .banner_right { + display: none; + } +} +.hero .wrapper .hero_content .banner_right .move-image { + position: absolute; + width: 800px; + bottom: 18px; + right: 0; + transition: transform 0.1s ease-out; /* For a smooth effect */ +} + +.hero_sub { + border-radius: 8px; + width: 90%; + margin: auto; + margin-top: 70px; + padding-top: 0px; + padding: 50px 0px; + position: relative; + background-color: var(--brand-dark); + height: auto; +} +.hero_sub .wrapper { + padding-left: 50px; +} +@media (max-width: 768px) { + .hero_sub .wrapper { + padding-left: 0px !important; + } +} +.hero_sub .wrapper .hero_sub_left { + padding-top: 100px; + padding-right: 80px; + width: 80%; + padding-bottom: 100px; + position: relative; + z-index: 1; +} +@media (max-width: 1200px) { + .hero_sub .wrapper .hero_sub_left { + width: 100%; + } +} +@media (max-width: 992px) { + .hero_sub .wrapper .hero_sub_left { + width: 100%; + padding-top: 20px; + } +} +@media (max-width: 768px) { + .hero_sub .wrapper .hero_sub_left { + padding-right: 0; + } +} +.hero_sub .wrapper .hero_sub_left h1 { + color: var(--white-color); + font-size: 56px; + font-weight: 700; + text-transform: uppercase; + line-height: 1.4; +} +@media (max-width: 768px) { + .hero_sub .wrapper .hero_sub_left h1 { + font-size: 36px; + } +} +.hero_sub .wrapper .hero_sub_left h1 span { + color: var(--up-primary); + font-size: 56px; + font-weight: 700; +} +@media (max-width: 768px) { + .hero_sub .wrapper .hero_sub_left h1 span { + font-size: 36px; + } +} +.hero_sub .wrapper .hero_sub_left p { + color: var(--white-color); + font-size: 16px; + line-height: 1.6; + padding-bottom: 20px; +} +@media (max-width: 992px) { + .hero_sub .wrapper .banner_right { + display: none; + } +} +.hero_sub .wrapper .banner_right img { + position: absolute; + width: 800px; + bottom: 15%; + right: 0; + border-top-left-radius: 15px; + border-bottom-left-radius: 15px; +} + +.hero_sub_plain { + border-radius: 8px; + width: 90%; + margin: auto; + margin-top: 80px; + padding-top: 0px; + padding: 50px 0px; +} +@media (max-width: 768px) { + .hero_sub_plain { + width: 100%; + border-radius: 0; + } + .hero_sub_plain .wrapper { + padding-left: 0; + } + .hero_sub_plain .wrapper h1 { + font-size: 48px; + } +} + + +.footer { + background-color:white; + margin-top: 5video_autoplay0px; + padding: 40px 0px; + border: 1px solid; + border-color: white; + border-top-color: white; + text-align: center; + position: relative; +} +.footer .info { + margin: auto; + padding: 5px 15px; + border-radius: 25px; + margin: auto; + background-color: #FFF1DA; + padding: 5px 15px; + border-radius: 25px; + margin-top: -60px; + width: fit-content; + margin-bottom: 50px; + box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; + width: fit-content; +} + + +@media (max-width: 768px) { +.footer .info { + margin-left: 15px; + margin-right: 15px; + } +} + + + +.footer .info span { + font-weight: 400; + font-style: italic; + color: #B88635; + font-size: 14px; +} +.footer .credit { + color:black; + margin-top: 20px; +} +@media (max-width: 768px) { + .footer .credit { + text-align: start; + } +} + +.footer_brand2 { + text-align: center; +} +.footer_brand2 .footer_logo { + display: flex; + align-items: center; +} +.footer_brand2 .footer_logo img { + width: 40px; + margin-right: 15px; + height: fit-content; + align-items: center; +} +.footer_brand2 .footer_logo span { + color: var(--up-bg-section); + font-size: 36px; + font-weight: 700; +} + +.footer_brand { + text-align: center; +} +.footer_brand .footer_logo { + display: flex; + justify-content: center; + align-items: center; +} +.footer_brand .footer_logo img { + width: 40px; + margin-right: 15px; + height: fit-content; + align-items: center; +} +.footer_brand .footer_logo span { + color: var(--up-bg-section); + font-size: 36px; + font-weight: 700; +} + +.footer-links { + list-style: none; + display: flex; + gap: 1.5rem; + justify-content: center; + margin-bottom: 1.5rem; + padding-left: 0; +} +@media (max-width: 768px) { + .footer-links { + flex-direction: column; + align-items: baseline; + } +} +.footer-links li a { + color: var(--black-color); +} +.footer-links li a:hover { + color: var(--brand-red); +} + +.footer-links a { + text-decoration: none; + color: #fff; + font-weight: 500; +} + +.footer-social { + text-align: center; + padding-top: 30px; + margin-bottom: 20px; + display: flex; + justify-content: center; +} +@media (max-width: 768px) { + .footer-social { + justify-content: start; + padding-top: 15px; + } + .footer-social :first-child { + margin-left: 0 !important; + } +} +.footer-social a { + margin: 0 0.5rem; +} +.footer-social a img { + width: 24px; + height: 24px; +} + +*:focus { + outline: 0 !important; +} + +*:hover { + -webkit-transition: 0.2s; + transition: 0.2s; +} + +*:focus { + outline: 0 !important; + box-shadow: none !important; +} + +* button:focus { + border: none; + outline: none; + box-shadow: none; +} + + +*:focus, *:active { + outline: none !important; +} + +html.sr .load-hidden { + visibility: hidden; +} + +*::selection { + color: rgb(243, 235, 238); + background-color: black; +} + +* a, +a:visited { + color: #990000; + text-decoration: none; +} + +body { + position: relative; + font-family: font-default !important; + color: var(--text-color); +} + +.affix { + top: 0; + width: 100%; + z-index: 9999 !important; +} + +html { + scroll-behavior: smooth !important; +} + +body { + scroll-behavior: smooth !important; +} + +.bg_img { + position: absolute; + z-index: -1; +} + +.img1 { + top: 20%; + left: 0; + width: 250px; +} +@media (max-width: 768px) { + .img1 { + display: none; + } +} + +.img2 { + top: 15%; + width: 250px; + right: 0; +} +@media (max-width: 768px) { + .img2 { + display: none; + } +} + +.section_heading { + text-align: center; + width: 30%; + margin: auto; + margin-bottom: 40px; +} +@media (max-width: 1200px) { + .section_heading { + width: 60%; + } +} +@media (max-width: 768px) { + .section_heading { + width: 100%; + } +} +.section_heading span { + color: var(--up-primary); + font-size: 22px; + font-weight: 500; + margin-bottom: 20px; + display: block; +} +.section_heading h2 { + font-size: 36px; + font-weight: 600; + color: var(--brand-dark); +} +.o_cc5, .o_footer { + background-color: white !important; + color: #FFFFFF; + --o-cc-bg: #111827; +} +.o_footer .o_footer_copyright { + background-color: white !important; +} +.locations_section .location-card h4 { + font-size: 25px !important; + font-weight: 510 !important; + padding-top: 20px !important; + color: var(--brand-heading); +} +.footer { + margin-top: 50px; + padding: 40px 0px; + border: 1px solid; + border-color: transparent; + border-top-color: var(--brand-grey); + text-align: center; + position: relative; +} +.o_cc5 a:not(.btn), .o_footer a:not(.btn), .o_cc5 .btn-link, .o_footer .btn-link, .o_colored_level .o_cc5 a:not(.btn), .o_colored_level .o_cc5 .btn-link { + color: #131213; +} + +.testimonials_section .slider_wrapper { + background-color: var(--up-bg-section); + width: 100%; + border-radius: 5px; + padding: 40px 50px; + text-align: center; + padding-bottom: 100px; + +} +.video_autoplay{ + width: 100%; + height: 370px; + background: black; + border-radius: 5px; +} +/*.col-lg-4 {*/ +/* margin-top: 90px;*/ +/*}*/ +.col-lg-7.col-xl-6.me-lg-auto { + margin-top: 90px; +} +.hero.hero_sub_plain.project_head { + height: 200px; +} +.footer-links ul { + display: flex; + flex-direction: row; + gap: 20px; +} + +.footer-links ul { + + flex-direction: column; + text-align: start !important; + +} +.row.s_col_no_resize.s_col_no_bgcolor.form-group.firstname { + margin-right: 15px !important; +} +#offcanvasDarkNavbar{ + height: 100vh; + width: 60%; + background-color: #131211; +} +.navbar-expand-lg .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + justify-content: center; +} + +@media (max-width:992px){ +.navbar-expand-lg .offcanvas .offcanvas-body { + height: 100% !important; + flex-direction: column; +} +.navigation .wrapper .navbar .navbar-nav .nav-item .nav-link2 { + color: white; +} +.navigation .wrapper .navbar .navbar-nav .nav-item .nav-link2:hover{ + color:black !important; +} +.portfolio_wrapper{ + margin:20px; +} +} +.offcanvas-header{ + padding-right: 30px; + padding-top: 30px; +} +.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{ + color:black; +} +.navbar-nav .nav-link.show{ + color: #75736e !important; +} + +.footer-links ul{ + flex-direction: row; +} +@media (max-width:576px){ +.portfolio_wrapper{ + margin:20px; +} +} +.oe_login_form{ + .btn-secondary { + padding: 0.475rem 1rem !important + } +} + +.o_portal main, .o_wsale_products_page, .o_wsale_product_page, .oe_website_login_container, .website_blog, .o_wevent_index, .o_website_hr_recruitment_jobs_list, .o_wevent_event, .oe_website_sale { + margin-top: 100px; +} + +#add_to_cart_wrap .btn-primary, .o_portal_security_body .btn-secondary, .o_technical_modal .btn-secondary, .o_technical_modal .btn-primary, .o_portal_wrap .btn-primary, .modal-footer .btn-primary, .o_wevent_event .btn-primary{ + padding: 10px; +} + + + +/*button*/ +.button-container { + display: flex; + justify-content: center; + align-items: center; +} + +.custom-button { + display: flex; + align-items: center; + justify-content: space-between; + text-decoration: none; + padding: 10px 20px; + border-radius: 50px; + background: linear-gradient(to right, #f5f5f5, #d7a87a); /* Smooth gradient */ + color: #333; + font-family: 'Arial', sans-serif; + font-weight: 500; + font-size: 16px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + border: none; + transition: all 0.3s ease-in-out; + position: relative; + overflow: hidden; +} + +.custom-button:hover { + background: linear-gradient(to right, #d7a87a, #f5f5f5); /* Reverse gradient */ + box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); +} + +.custom-button span { + margin-right: 10px; +} + +.arrow-icon { + width: 20px; + height: 20px; + stroke: #333; + transition: transform 0.3s ease; +} + +.custom-button:hover .arrow-icon { + transform: translateX(5px); /* Slight arrow movement on hover */ +} + diff --git a/theme_upshift/static/src/css/testimonial_style.css b/theme_upshift/static/src/css/testimonial_style.css new file mode 100644 index 000000000..f4d796c35 --- /dev/null +++ b/theme_upshift/static/src/css/testimonial_style.css @@ -0,0 +1,39 @@ +.testimonial-carousel { + background-color: #f8f9fa; + padding: 60px 0; + } +.testimonial-content { + max-width: 800px; + margin: 0 auto; + } +.testimonial-text { + font-size: 1.25rem; + font-style: italic; + color: #333; + } +.testimonial-author { + font-weight: bold; + color: #007bff; + } +.testimonial-position { + color: #6c757d; + } +.carousel-control-prev-icon, +.carousel-control-next-icon { + border-radius: 80%; + padding: 10px; + } +.testimonial-text.mb-4 { + color: var(--white-color); + font-size: 22px; + font-weight: 500; + padding-bottom: 15px; + line-height: 1.5; +} +.testimonial-author { + font-weight: bold; + color: white; +} +#testimonialCarousel .carousel-item { + background-color: #161616; +} \ No newline at end of file diff --git a/theme_upshift/static/src/img/Logo/Logo.png b/theme_upshift/static/src/img/Logo/Logo.png new file mode 100644 index 000000000..c1979c842 Binary files /dev/null and b/theme_upshift/static/src/img/Logo/Logo.png differ diff --git a/theme_upshift/static/src/img/Logo/logo-1.png b/theme_upshift/static/src/img/Logo/logo-1.png new file mode 100644 index 000000000..00a4ad97e Binary files /dev/null and b/theme_upshift/static/src/img/Logo/logo-1.png differ diff --git a/theme_upshift/static/src/img/about/goals1.png b/theme_upshift/static/src/img/about/goals1.png new file mode 100644 index 000000000..632b69b94 Binary files /dev/null and b/theme_upshift/static/src/img/about/goals1.png differ diff --git a/theme_upshift/static/src/img/about/team1.png b/theme_upshift/static/src/img/about/team1.png new file mode 100644 index 000000000..ac0170f5b Binary files /dev/null and b/theme_upshift/static/src/img/about/team1.png differ diff --git a/theme_upshift/static/src/img/about/team2.png b/theme_upshift/static/src/img/about/team2.png new file mode 100644 index 000000000..37e038f58 Binary files /dev/null and b/theme_upshift/static/src/img/about/team2.png differ diff --git a/theme_upshift/static/src/img/about/team3.png b/theme_upshift/static/src/img/about/team3.png new file mode 100644 index 000000000..33c3d11c9 Binary files /dev/null and b/theme_upshift/static/src/img/about/team3.png differ diff --git a/theme_upshift/static/src/img/about/workspace.jpg b/theme_upshift/static/src/img/about/workspace.jpg new file mode 100644 index 000000000..3382e6265 Binary files /dev/null and b/theme_upshift/static/src/img/about/workspace.jpg differ diff --git a/theme_upshift/static/src/img/banner/hero-1.png b/theme_upshift/static/src/img/banner/hero-1.png new file mode 100644 index 000000000..eb66fb38b Binary files /dev/null and b/theme_upshift/static/src/img/banner/hero-1.png differ diff --git a/theme_upshift/static/src/img/banner/hero-2.png b/theme_upshift/static/src/img/banner/hero-2.png new file mode 100644 index 000000000..e35636fc2 Binary files /dev/null and b/theme_upshift/static/src/img/banner/hero-2.png differ diff --git a/theme_upshift/static/src/img/banner/sub.png b/theme_upshift/static/src/img/banner/sub.png new file mode 100644 index 000000000..35ded48a1 Binary files /dev/null and b/theme_upshift/static/src/img/banner/sub.png differ diff --git a/theme_upshift/static/src/img/contact/contact-bg.jpg b/theme_upshift/static/src/img/contact/contact-bg.jpg new file mode 100644 index 000000000..3be9c408b Binary files /dev/null and b/theme_upshift/static/src/img/contact/contact-bg.jpg differ diff --git a/theme_upshift/static/src/img/icons/arrow.svg b/theme_upshift/static/src/img/icons/arrow.svg new file mode 100644 index 000000000..862cd8e66 --- /dev/null +++ b/theme_upshift/static/src/img/icons/arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme_upshift/static/src/img/icons/black.svg b/theme_upshift/static/src/img/icons/black.svg new file mode 100644 index 000000000..ce1e2811a --- /dev/null +++ b/theme_upshift/static/src/img/icons/black.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/facebook.svg b/theme_upshift/static/src/img/icons/facebook.svg new file mode 100644 index 000000000..307b3a988 --- /dev/null +++ b/theme_upshift/static/src/img/icons/facebook.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/footer/facebook-circle-fill.svg b/theme_upshift/static/src/img/icons/footer/facebook-circle-fill.svg new file mode 100644 index 000000000..c5d595f3a --- /dev/null +++ b/theme_upshift/static/src/img/icons/footer/facebook-circle-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme_upshift/static/src/img/icons/footer/instagram-fill.svg b/theme_upshift/static/src/img/icons/footer/instagram-fill.svg new file mode 100644 index 000000000..9c4bc4661 --- /dev/null +++ b/theme_upshift/static/src/img/icons/footer/instagram-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme_upshift/static/src/img/icons/footer/time-line.svg b/theme_upshift/static/src/img/icons/footer/time-line.svg new file mode 100644 index 000000000..d8a08ff2d --- /dev/null +++ b/theme_upshift/static/src/img/icons/footer/time-line.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme_upshift/static/src/img/icons/footer/twitter-fill.svg b/theme_upshift/static/src/img/icons/footer/twitter-fill.svg new file mode 100644 index 000000000..da034b7ae --- /dev/null +++ b/theme_upshift/static/src/img/icons/footer/twitter-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme_upshift/static/src/img/icons/footer/youtube-fill.svg b/theme_upshift/static/src/img/icons/footer/youtube-fill.svg new file mode 100644 index 000000000..58ff01252 --- /dev/null +++ b/theme_upshift/static/src/img/icons/footer/youtube-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme_upshift/static/src/img/icons/line/add-browser.svg b/theme_upshift/static/src/img/icons/line/add-browser.svg new file mode 100644 index 000000000..e56fe6a33 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-browser.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add-circle.svg b/theme_upshift/static/src/img/icons/line/add-circle.svg new file mode 100644 index 000000000..904171ea8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add-desktop.svg b/theme_upshift/static/src/img/icons/line/add-desktop.svg new file mode 100644 index 000000000..c14e3d52d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-desktop.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add-email.svg b/theme_upshift/static/src/img/icons/line/add-email.svg new file mode 100644 index 000000000..3f599e35a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-email.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add-file.svg b/theme_upshift/static/src/img/icons/line/add-file.svg new file mode 100644 index 000000000..6fc0d426f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-file.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add-folder.svg b/theme_upshift/static/src/img/icons/line/add-folder.svg new file mode 100644 index 000000000..495d13db3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-folder.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add-layer-1.svg b/theme_upshift/static/src/img/icons/line/add-layer-1.svg new file mode 100644 index 000000000..1dc147fb0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-layer-1.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add-layer.svg b/theme_upshift/static/src/img/icons/line/add-layer.svg new file mode 100644 index 000000000..702c61dad --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-layer.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add-note.svg b/theme_upshift/static/src/img/icons/line/add-note.svg new file mode 100644 index 000000000..4f6b73fdf --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-note.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add-payment-card.svg b/theme_upshift/static/src/img/icons/line/add-payment-card.svg new file mode 100644 index 000000000..8796257f8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-payment-card.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add-photo-camera.svg b/theme_upshift/static/src/img/icons/line/add-photo-camera.svg new file mode 100644 index 000000000..2e3cf5275 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-photo-camera.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add-photo.svg b/theme_upshift/static/src/img/icons/line/add-photo.svg new file mode 100644 index 000000000..ef814d60d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add-photo.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/add.svg b/theme_upshift/static/src/img/icons/line/add.svg new file mode 100644 index 000000000..b95d5ccca --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/add.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/alarm.svg b/theme_upshift/static/src/img/icons/line/alarm.svg new file mode 100644 index 000000000..659d05076 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/alarm.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/album.svg b/theme_upshift/static/src/img/icons/line/album.svg new file mode 100644 index 000000000..5ec7d6cdf --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/album.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-center.svg b/theme_upshift/static/src/img/icons/line/align-center.svg new file mode 100644 index 000000000..148e4de74 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-center.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-from-left.svg b/theme_upshift/static/src/img/icons/line/align-from-left.svg new file mode 100644 index 000000000..b2f853262 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-from-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-from-right.svg b/theme_upshift/static/src/img/icons/line/align-from-right.svg new file mode 100644 index 000000000..585d85923 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-from-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-horizontal-center.svg b/theme_upshift/static/src/img/icons/line/align-horizontal-center.svg new file mode 100644 index 000000000..806ad2de6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-horizontal-center.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-horizontal-left.svg b/theme_upshift/static/src/img/icons/line/align-horizontal-left.svg new file mode 100644 index 000000000..d2f0283e3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-horizontal-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-horizontal-right.svg b/theme_upshift/static/src/img/icons/line/align-horizontal-right.svg new file mode 100644 index 000000000..878fff8e6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-horizontal-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-justify.svg b/theme_upshift/static/src/img/icons/line/align-justify.svg new file mode 100644 index 000000000..daf938537 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-justify.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-left.svg b/theme_upshift/static/src/img/icons/line/align-left.svg new file mode 100644 index 000000000..d60bffe9d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-right.svg b/theme_upshift/static/src/img/icons/line/align-right.svg new file mode 100644 index 000000000..7abce6e60 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-to-bottom.svg b/theme_upshift/static/src/img/icons/line/align-to-bottom.svg new file mode 100644 index 000000000..f877e5cf4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-to-bottom.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-to-center.svg b/theme_upshift/static/src/img/icons/line/align-to-center.svg new file mode 100644 index 000000000..da7eb35cb --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-to-center.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-to-left.svg b/theme_upshift/static/src/img/icons/line/align-to-left.svg new file mode 100644 index 000000000..0f139b18a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-to-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-to-right.svg b/theme_upshift/static/src/img/icons/line/align-to-right.svg new file mode 100644 index 000000000..74cf193c0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-to-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-to-top.svg b/theme_upshift/static/src/img/icons/line/align-to-top.svg new file mode 100644 index 000000000..b46773f82 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-to-top.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-vertical-center.svg b/theme_upshift/static/src/img/icons/line/align-vertical-center.svg new file mode 100644 index 000000000..11e13fe61 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-vertical-center.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-vertical-down.svg b/theme_upshift/static/src/img/icons/line/align-vertical-down.svg new file mode 100644 index 000000000..708a02e43 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-vertical-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/align-vertical-top.svg b/theme_upshift/static/src/img/icons/line/align-vertical-top.svg new file mode 100644 index 000000000..bada9cd98 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/align-vertical-top.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/ambulance.svg b/theme_upshift/static/src/img/icons/line/ambulance.svg new file mode 100644 index 000000000..a53ad8958 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/ambulance.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/apps.svg b/theme_upshift/static/src/img/icons/line/apps.svg new file mode 100644 index 000000000..d58f35f76 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/apps.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/archive-1.svg b/theme_upshift/static/src/img/icons/line/archive-1.svg new file mode 100644 index 000000000..4b6648e71 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/archive-1.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/archive.svg b/theme_upshift/static/src/img/icons/line/archive.svg new file mode 100644 index 000000000..e34c9e8b4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/archive.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-compress-1.svg b/theme_upshift/static/src/img/icons/line/arrow-compress-1.svg new file mode 100644 index 000000000..49a6a2cf5 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-compress-1.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-compress.svg b/theme_upshift/static/src/img/icons/line/arrow-compress.svg new file mode 100644 index 000000000..e78084aad --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-compress.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-diagonal.svg b/theme_upshift/static/src/img/icons/line/arrow-diagonal.svg new file mode 100644 index 000000000..d8f6ea394 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-diagonal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-divide.svg b/theme_upshift/static/src/img/icons/line/arrow-divide.svg new file mode 100644 index 000000000..031849736 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-divide.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-down-left.svg b/theme_upshift/static/src/img/icons/line/arrow-down-left.svg new file mode 100644 index 000000000..ba0070f8e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-down-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-down-right.svg b/theme_upshift/static/src/img/icons/line/arrow-down-right.svg new file mode 100644 index 000000000..4163de0f0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-down-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-down.svg b/theme_upshift/static/src/img/icons/line/arrow-down.svg new file mode 100644 index 000000000..e5e9c4731 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-expand-1.svg b/theme_upshift/static/src/img/icons/line/arrow-expand-1.svg new file mode 100644 index 000000000..82060e808 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-expand-1.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-expand.svg b/theme_upshift/static/src/img/icons/line/arrow-expand.svg new file mode 100644 index 000000000..ef1029301 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-expand.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-horizontal.svg b/theme_upshift/static/src/img/icons/line/arrow-horizontal.svg new file mode 100644 index 000000000..48042d79f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-horizontal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-left-down.svg b/theme_upshift/static/src/img/icons/line/arrow-left-down.svg new file mode 100644 index 000000000..cb4e0c72c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-left-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-left-up.svg b/theme_upshift/static/src/img/icons/line/arrow-left-up.svg new file mode 100644 index 000000000..b6182a2f3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-left-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-left.svg b/theme_upshift/static/src/img/icons/line/arrow-left.svg new file mode 100644 index 000000000..6bc981ba1 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-merge.svg b/theme_upshift/static/src/img/icons/line/arrow-merge.svg new file mode 100644 index 000000000..4e1a2c056 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-merge.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-move.svg b/theme_upshift/static/src/img/icons/line/arrow-move.svg new file mode 100644 index 000000000..9b44bc5cc --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-move.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-resize-horizontal.svg b/theme_upshift/static/src/img/icons/line/arrow-resize-horizontal.svg new file mode 100644 index 000000000..ddf6badda --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-resize-horizontal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-resize-vertical.svg b/theme_upshift/static/src/img/icons/line/arrow-resize-vertical.svg new file mode 100644 index 000000000..d6a2e7e74 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-resize-vertical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-right-down.svg b/theme_upshift/static/src/img/icons/line/arrow-right-down.svg new file mode 100644 index 000000000..84a84fc16 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-right-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-right-up.svg b/theme_upshift/static/src/img/icons/line/arrow-right-up.svg new file mode 100644 index 000000000..a562c4a9a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-right-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-right.svg b/theme_upshift/static/src/img/icons/line/arrow-right.svg new file mode 100644 index 000000000..be8269a9f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-up-left.svg b/theme_upshift/static/src/img/icons/line/arrow-up-left.svg new file mode 100644 index 000000000..b1a235fe1 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-up-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-up-right.svg b/theme_upshift/static/src/img/icons/line/arrow-up-right.svg new file mode 100644 index 000000000..ad568cd7e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-up-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-up.svg b/theme_upshift/static/src/img/icons/line/arrow-up.svg new file mode 100644 index 000000000..6a8426d79 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrow-vertical.svg b/theme_upshift/static/src/img/icons/line/arrow-vertical.svg new file mode 100644 index 000000000..accacafef --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrow-vertical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrows-horizontal-expand.svg b/theme_upshift/static/src/img/icons/line/arrows-horizontal-expand.svg new file mode 100644 index 000000000..e8a12a035 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrows-horizontal-expand.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/arrows-vertical-expand.svg b/theme_upshift/static/src/img/icons/line/arrows-vertical-expand.svg new file mode 100644 index 000000000..b7930462a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/arrows-vertical-expand.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/backspace.svg b/theme_upshift/static/src/img/icons/line/backspace.svg new file mode 100644 index 000000000..b0d30b1af --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/backspace.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/backward.svg b/theme_upshift/static/src/img/icons/line/backward.svg new file mode 100644 index 000000000..2f8331555 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/backward.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bar-chart-1.svg b/theme_upshift/static/src/img/icons/line/bar-chart-1.svg new file mode 100644 index 000000000..16ca5b27c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bar-chart-1.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bar-chart-2.svg b/theme_upshift/static/src/img/icons/line/bar-chart-2.svg new file mode 100644 index 000000000..d7a8e485b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bar-chart-2.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bar-chart-3.svg b/theme_upshift/static/src/img/icons/line/bar-chart-3.svg new file mode 100644 index 000000000..7958f3bcc --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bar-chart-3.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bar-chart-4.svg b/theme_upshift/static/src/img/icons/line/bar-chart-4.svg new file mode 100644 index 000000000..5cc3fae76 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bar-chart-4.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bar-chart-5.svg b/theme_upshift/static/src/img/icons/line/bar-chart-5.svg new file mode 100644 index 000000000..3b80bf913 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bar-chart-5.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bar-chart.svg b/theme_upshift/static/src/img/icons/line/bar-chart.svg new file mode 100644 index 000000000..6bf80a2a5 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bar-chart.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/battery.svg b/theme_upshift/static/src/img/icons/line/battery.svg new file mode 100644 index 000000000..018c819f9 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/battery.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bell-off.svg b/theme_upshift/static/src/img/icons/line/bell-off.svg new file mode 100644 index 000000000..29181925b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bell-off.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bell.svg b/theme_upshift/static/src/img/icons/line/bell.svg new file mode 100644 index 000000000..1f4a2ddbc --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bell.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bend-arrow-down.svg b/theme_upshift/static/src/img/icons/line/bend-arrow-down.svg new file mode 100644 index 000000000..67e72ced7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bend-arrow-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bend-arrow-left.svg b/theme_upshift/static/src/img/icons/line/bend-arrow-left.svg new file mode 100644 index 000000000..077f9d9d4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bend-arrow-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bend-arrow-right.svg b/theme_upshift/static/src/img/icons/line/bend-arrow-right.svg new file mode 100644 index 000000000..4624469f6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bend-arrow-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bend-arrow-up.svg b/theme_upshift/static/src/img/icons/line/bend-arrow-up.svg new file mode 100644 index 000000000..2a0f93b48 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bend-arrow-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bitcoin.svg b/theme_upshift/static/src/img/icons/line/bitcoin.svg new file mode 100644 index 000000000..6a9c86ba7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bitcoin.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/bookmark.svg b/theme_upshift/static/src/img/icons/line/bookmark.svg new file mode 100644 index 000000000..67d88dcc0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/bookmark.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/border-bottom.svg b/theme_upshift/static/src/img/icons/line/border-bottom.svg new file mode 100644 index 000000000..9a6672695 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/border-bottom.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/border-horizontal.svg b/theme_upshift/static/src/img/icons/line/border-horizontal.svg new file mode 100644 index 000000000..37a438215 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/border-horizontal.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/border-inner.svg b/theme_upshift/static/src/img/icons/line/border-inner.svg new file mode 100644 index 000000000..935661127 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/border-inner.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/border-left.svg b/theme_upshift/static/src/img/icons/line/border-left.svg new file mode 100644 index 000000000..8a9fa5ae8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/border-left.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/border-right.svg b/theme_upshift/static/src/img/icons/line/border-right.svg new file mode 100644 index 000000000..e4b52bc8f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/border-right.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/border-top-left.svg b/theme_upshift/static/src/img/icons/line/border-top-left.svg new file mode 100644 index 000000000..74110c3ee --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/border-top-left.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/border-top.svg b/theme_upshift/static/src/img/icons/line/border-top.svg new file mode 100644 index 000000000..50787609c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/border-top.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/botcoin-coin.svg b/theme_upshift/static/src/img/icons/line/botcoin-coin.svg new file mode 100644 index 000000000..77c5ff346 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/botcoin-coin.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/box.svg b/theme_upshift/static/src/img/icons/line/box.svg new file mode 100644 index 000000000..1474a973d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/box.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/broken-heart.svg b/theme_upshift/static/src/img/icons/line/broken-heart.svg new file mode 100644 index 000000000..6c3f456fa --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/broken-heart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/browser-code.svg b/theme_upshift/static/src/img/icons/line/browser-code.svg new file mode 100644 index 000000000..81750a9e3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/browser-code.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/browser-settings.svg b/theme_upshift/static/src/img/icons/line/browser-settings.svg new file mode 100644 index 000000000..9432dfd03 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/browser-settings.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/browser.svg b/theme_upshift/static/src/img/icons/line/browser.svg new file mode 100644 index 000000000..4376385c0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/browser.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/brush-1.svg b/theme_upshift/static/src/img/icons/line/brush-1.svg new file mode 100644 index 000000000..c8ffb60d8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/brush-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/brush.svg b/theme_upshift/static/src/img/icons/line/brush.svg new file mode 100644 index 000000000..b2597160e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/brush.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-add.svg b/theme_upshift/static/src/img/icons/line/calendar-add.svg new file mode 100644 index 000000000..148e5a6cb --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-add.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-block.svg b/theme_upshift/static/src/img/icons/line/calendar-block.svg new file mode 100644 index 000000000..99b93ef8c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-block.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-check.svg b/theme_upshift/static/src/img/icons/line/calendar-check.svg new file mode 100644 index 000000000..852d159e5 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-check.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-day.svg b/theme_upshift/static/src/img/icons/line/calendar-day.svg new file mode 100644 index 000000000..bb0c2dd6b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-day.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-delete.svg b/theme_upshift/static/src/img/icons/line/calendar-delete.svg new file mode 100644 index 000000000..9bda12bcc --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-delete.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-download.svg b/theme_upshift/static/src/img/icons/line/calendar-download.svg new file mode 100644 index 000000000..17be34543 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-download.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-lock.svg b/theme_upshift/static/src/img/icons/line/calendar-lock.svg new file mode 100644 index 000000000..f12108258 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-lock.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-note.svg b/theme_upshift/static/src/img/icons/line/calendar-note.svg new file mode 100644 index 000000000..9e0dcd780 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-note.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-off.svg b/theme_upshift/static/src/img/icons/line/calendar-off.svg new file mode 100644 index 000000000..ba0b98740 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-setting.svg b/theme_upshift/static/src/img/icons/line/calendar-setting.svg new file mode 100644 index 000000000..0b2393e01 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-setting.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-starred.svg b/theme_upshift/static/src/img/icons/line/calendar-starred.svg new file mode 100644 index 000000000..9d4ffd177 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-starred.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-today.svg b/theme_upshift/static/src/img/icons/line/calendar-today.svg new file mode 100644 index 000000000..d73678975 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-today.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar-upload.svg b/theme_upshift/static/src/img/icons/line/calendar-upload.svg new file mode 100644 index 000000000..882787970 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar-upload.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/calendar.svg b/theme_upshift/static/src/img/icons/line/calendar.svg new file mode 100644 index 000000000..c9e2e9fcc --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/calendar.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/charging-battery.svg b/theme_upshift/static/src/img/icons/line/charging-battery.svg new file mode 100644 index 000000000..a3596ee84 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/charging-battery.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/check-box.svg b/theme_upshift/static/src/img/icons/line/check-box.svg new file mode 100644 index 000000000..2b68c81d0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/check-box.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/check-circle.svg b/theme_upshift/static/src/img/icons/line/check-circle.svg new file mode 100644 index 000000000..93834b786 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/check-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/check-clipboard.svg b/theme_upshift/static/src/img/icons/line/check-clipboard.svg new file mode 100644 index 000000000..c6bca8223 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/check-clipboard.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/check-email.svg b/theme_upshift/static/src/img/icons/line/check-email.svg new file mode 100644 index 000000000..11af91b69 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/check-email.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/check-file.svg b/theme_upshift/static/src/img/icons/line/check-file.svg new file mode 100644 index 000000000..f06a7d828 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/check-file.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/check-folder.svg b/theme_upshift/static/src/img/icons/line/check-folder.svg new file mode 100644 index 000000000..6b01db1de --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/check-folder.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/check-photo.svg b/theme_upshift/static/src/img/icons/line/check-photo.svg new file mode 100644 index 000000000..a79c73fce --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/check-photo.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/check.svg b/theme_upshift/static/src/img/icons/line/check.svg new file mode 100644 index 000000000..9c158e377 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/check.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/chevron-down.svg b/theme_upshift/static/src/img/icons/line/chevron-down.svg new file mode 100644 index 000000000..833c9e16d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/chevron-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/chevron-left.svg b/theme_upshift/static/src/img/icons/line/chevron-left.svg new file mode 100644 index 000000000..ff3b25994 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/chevron-left.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/chevron-right.svg b/theme_upshift/static/src/img/icons/line/chevron-right.svg new file mode 100644 index 000000000..c3a46b339 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/chevron-right.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/chevron-up.svg b/theme_upshift/static/src/img/icons/line/chevron-up.svg new file mode 100644 index 000000000..7cd0d4d4a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/chevron-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/circle-arrow-down-1.svg b/theme_upshift/static/src/img/icons/line/circle-arrow-down-1.svg new file mode 100644 index 000000000..0fdba69b4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/circle-arrow-down-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/circle-arrow-down.svg b/theme_upshift/static/src/img/icons/line/circle-arrow-down.svg new file mode 100644 index 000000000..3f8588624 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/circle-arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/circle-arrow-left-1.svg b/theme_upshift/static/src/img/icons/line/circle-arrow-left-1.svg new file mode 100644 index 000000000..036023390 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/circle-arrow-left-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/circle-arrow-left.svg b/theme_upshift/static/src/img/icons/line/circle-arrow-left.svg new file mode 100644 index 000000000..557f1e62e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/circle-arrow-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/circle-arrow-right-1.svg b/theme_upshift/static/src/img/icons/line/circle-arrow-right-1.svg new file mode 100644 index 000000000..47a573bbe --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/circle-arrow-right-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/circle-arrow-right.svg b/theme_upshift/static/src/img/icons/line/circle-arrow-right.svg new file mode 100644 index 000000000..33d8578fa --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/circle-arrow-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/circle-arrow-up-1.svg b/theme_upshift/static/src/img/icons/line/circle-arrow-up-1.svg new file mode 100644 index 000000000..425a451e6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/circle-arrow-up-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/circle-arrow-up.svg b/theme_upshift/static/src/img/icons/line/circle-arrow-up.svg new file mode 100644 index 000000000..10bf75fa1 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/circle-arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/circle-play.svg b/theme_upshift/static/src/img/icons/line/circle-play.svg new file mode 100644 index 000000000..845fadd06 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/circle-play.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/circlr-pause.svg b/theme_upshift/static/src/img/icons/line/circlr-pause.svg new file mode 100644 index 000000000..088963137 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/circlr-pause.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/clear-circle.svg b/theme_upshift/static/src/img/icons/line/clear-circle.svg new file mode 100644 index 000000000..19f1cac14 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/clear-circle.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/clear.svg b/theme_upshift/static/src/img/icons/line/clear.svg new file mode 100644 index 000000000..7551db9ed --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/clear.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/clipboard-1.svg b/theme_upshift/static/src/img/icons/line/clipboard-1.svg new file mode 100644 index 000000000..96be9b4bf --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/clipboard-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/clipboard-off.svg b/theme_upshift/static/src/img/icons/line/clipboard-off.svg new file mode 100644 index 000000000..5b15ebdec --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/clipboard-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/clipboard.svg b/theme_upshift/static/src/img/icons/line/clipboard.svg new file mode 100644 index 000000000..ca49edebf --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/clipboard.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/clock.svg b/theme_upshift/static/src/img/icons/line/clock.svg new file mode 100644 index 000000000..dd06c434c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/clock.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/cloud-off.svg b/theme_upshift/static/src/img/icons/line/cloud-off.svg new file mode 100644 index 000000000..c278317f5 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/cloud-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/cloud-settings.svg b/theme_upshift/static/src/img/icons/line/cloud-settings.svg new file mode 100644 index 000000000..464e87b60 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/cloud-settings.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/cloud.svg b/theme_upshift/static/src/img/icons/line/cloud.svg new file mode 100644 index 000000000..8cee17454 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/cloud.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/code-clipboard.svg b/theme_upshift/static/src/img/icons/line/code-clipboard.svg new file mode 100644 index 000000000..12dc8dce0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/code-clipboard.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/code-desktop.svg b/theme_upshift/static/src/img/icons/line/code-desktop.svg new file mode 100644 index 000000000..2ed90a787 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/code-desktop.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/code-file.svg b/theme_upshift/static/src/img/icons/line/code-file.svg new file mode 100644 index 000000000..f95f58752 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/code-file.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/code-laptop.svg b/theme_upshift/static/src/img/icons/line/code-laptop.svg new file mode 100644 index 000000000..54560e0f3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/code-laptop.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/code-off.svg b/theme_upshift/static/src/img/icons/line/code-off.svg new file mode 100644 index 000000000..f29dfd9fd --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/code-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/code.svg b/theme_upshift/static/src/img/icons/line/code.svg new file mode 100644 index 000000000..bcfd1cdee --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/code.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/compass.svg b/theme_upshift/static/src/img/icons/line/compass.svg new file mode 100644 index 000000000..ba0dbf790 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/compass.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/content.svg b/theme_upshift/static/src/img/icons/line/content.svg new file mode 100644 index 000000000..d4246a4c6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/content.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/corona.svg b/theme_upshift/static/src/img/icons/line/corona.svg new file mode 100644 index 000000000..85a3722b0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/corona.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/crop.svg b/theme_upshift/static/src/img/icons/line/crop.svg new file mode 100644 index 000000000..7a412cff2 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/crop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/crossover-arrows-down.svg b/theme_upshift/static/src/img/icons/line/crossover-arrows-down.svg new file mode 100644 index 000000000..0da9f51cc --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/crossover-arrows-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/crossover-arrows-left.svg b/theme_upshift/static/src/img/icons/line/crossover-arrows-left.svg new file mode 100644 index 000000000..88a546ab5 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/crossover-arrows-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/crossover-arrows-right.svg b/theme_upshift/static/src/img/icons/line/crossover-arrows-right.svg new file mode 100644 index 000000000..93d7fbcb6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/crossover-arrows-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/crossover-arrows-up.svg b/theme_upshift/static/src/img/icons/line/crossover-arrows-up.svg new file mode 100644 index 000000000..50fcff3e5 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/crossover-arrows-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/cube.svg b/theme_upshift/static/src/img/icons/line/cube.svg new file mode 100644 index 000000000..1dfed2c72 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/cube.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/dashboard-1.svg b/theme_upshift/static/src/img/icons/line/dashboard-1.svg new file mode 100644 index 000000000..d45539710 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/dashboard-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/dashboard-2.svg b/theme_upshift/static/src/img/icons/line/dashboard-2.svg new file mode 100644 index 000000000..c6cd15937 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/dashboard-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/dashboard-3.svg b/theme_upshift/static/src/img/icons/line/dashboard-3.svg new file mode 100644 index 000000000..8d33539be --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/dashboard-3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/date-range.svg b/theme_upshift/static/src/img/icons/line/date-range.svg new file mode 100644 index 000000000..d25b99896 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/date-range.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/delete-1.svg b/theme_upshift/static/src/img/icons/line/delete-1.svg new file mode 100644 index 000000000..3ce90da51 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/delete-1.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/delete-2.svg b/theme_upshift/static/src/img/icons/line/delete-2.svg new file mode 100644 index 000000000..de4670489 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/delete-2.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/delete-3.svg b/theme_upshift/static/src/img/icons/line/delete-3.svg new file mode 100644 index 000000000..d812b0a71 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/delete-3.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/delete-clipboard.svg b/theme_upshift/static/src/img/icons/line/delete-clipboard.svg new file mode 100644 index 000000000..d98547c20 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/delete-clipboard.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/delete-email.svg b/theme_upshift/static/src/img/icons/line/delete-email.svg new file mode 100644 index 000000000..d7dc8501a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/delete-email.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/delete-file.svg b/theme_upshift/static/src/img/icons/line/delete-file.svg new file mode 100644 index 000000000..5b91b8027 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/delete-file.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/delete-folder.svg b/theme_upshift/static/src/img/icons/line/delete-folder.svg new file mode 100644 index 000000000..729ec9497 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/delete-folder.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/delete-note.svg b/theme_upshift/static/src/img/icons/line/delete-note.svg new file mode 100644 index 000000000..ebbc712dd --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/delete-note.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/delete-photo.svg b/theme_upshift/static/src/img/icons/line/delete-photo.svg new file mode 100644 index 000000000..6eac63dd7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/delete-photo.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/delete.svg b/theme_upshift/static/src/img/icons/line/delete.svg new file mode 100644 index 000000000..26a305fec --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/delete.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/depression.svg b/theme_upshift/static/src/img/icons/line/depression.svg new file mode 100644 index 000000000..34edeab3d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/depression.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/desktop-settings.svg b/theme_upshift/static/src/img/icons/line/desktop-settings.svg new file mode 100644 index 000000000..42a66e0e8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/desktop-settings.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/desktop.svg b/theme_upshift/static/src/img/icons/line/desktop.svg new file mode 100644 index 000000000..f0b42eb49 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/desktop.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/dial-pad.svg b/theme_upshift/static/src/img/icons/line/dial-pad.svg new file mode 100644 index 000000000..d767826a4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/dial-pad.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/dollar-coin.svg b/theme_upshift/static/src/img/icons/line/dollar-coin.svg new file mode 100644 index 000000000..80ca78b31 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/dollar-coin.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/dollar.svg b/theme_upshift/static/src/img/icons/line/dollar.svg new file mode 100644 index 000000000..e07d01c5d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/dollar.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/donut-chart.svg b/theme_upshift/static/src/img/icons/line/donut-chart.svg new file mode 100644 index 000000000..b3424787f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/donut-chart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/double-arrow-down.svg b/theme_upshift/static/src/img/icons/line/double-arrow-down.svg new file mode 100644 index 000000000..121333495 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/double-arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/double-arrow-left.svg b/theme_upshift/static/src/img/icons/line/double-arrow-left.svg new file mode 100644 index 000000000..4d602298b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/double-arrow-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/double-arrow-right.svg b/theme_upshift/static/src/img/icons/line/double-arrow-right.svg new file mode 100644 index 000000000..0b2fcc00a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/double-arrow-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/double-arrow-up.svg b/theme_upshift/static/src/img/icons/line/double-arrow-up.svg new file mode 100644 index 000000000..1519d288f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/double-arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-1.svg b/theme_upshift/static/src/img/icons/line/download-1.svg new file mode 100644 index 000000000..5f540d2cf --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-2.svg b/theme_upshift/static/src/img/icons/line/download-2.svg new file mode 100644 index 000000000..96f903b9b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-browser.svg b/theme_upshift/static/src/img/icons/line/download-browser.svg new file mode 100644 index 000000000..932fa9671 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-browser.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-clipboard.svg b/theme_upshift/static/src/img/icons/line/download-clipboard.svg new file mode 100644 index 000000000..5fc07aba0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-clipboard.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-cloud-1.svg b/theme_upshift/static/src/img/icons/line/download-cloud-1.svg new file mode 100644 index 000000000..78f8df9bd --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-cloud-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-cloud.svg b/theme_upshift/static/src/img/icons/line/download-cloud.svg new file mode 100644 index 000000000..013fc21e7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-cloud.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-desktop.svg b/theme_upshift/static/src/img/icons/line/download-desktop.svg new file mode 100644 index 000000000..ecafe1977 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-desktop.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-email.svg b/theme_upshift/static/src/img/icons/line/download-email.svg new file mode 100644 index 000000000..c0e9bfdfe --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-email.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-file-1.svg b/theme_upshift/static/src/img/icons/line/download-file-1.svg new file mode 100644 index 000000000..4dfad9c77 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-file-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-file.svg b/theme_upshift/static/src/img/icons/line/download-file.svg new file mode 100644 index 000000000..2ec3eed6c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-file.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-folder.svg b/theme_upshift/static/src/img/icons/line/download-folder.svg new file mode 100644 index 000000000..3fd3c281a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-folder.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-laptop.svg b/theme_upshift/static/src/img/icons/line/download-laptop.svg new file mode 100644 index 000000000..b0f28ae4a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-laptop.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/download-photo.svg b/theme_upshift/static/src/img/icons/line/download-photo.svg new file mode 100644 index 000000000..6ad8b212c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/download-photo.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/earth.svg b/theme_upshift/static/src/img/icons/line/earth.svg new file mode 100644 index 000000000..d4857e1d7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/earth.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/edit-1.svg b/theme_upshift/static/src/img/icons/line/edit-1.svg new file mode 100644 index 000000000..a0dcff6c6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/edit-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/edit-2.svg b/theme_upshift/static/src/img/icons/line/edit-2.svg new file mode 100644 index 000000000..e37393168 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/edit-2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/edit-clipboard.svg b/theme_upshift/static/src/img/icons/line/edit-clipboard.svg new file mode 100644 index 000000000..9f707f757 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/edit-clipboard.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/edit-content.svg b/theme_upshift/static/src/img/icons/line/edit-content.svg new file mode 100644 index 000000000..ed28442d3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/edit-content.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/edit.svg b/theme_upshift/static/src/img/icons/line/edit.svg new file mode 100644 index 000000000..82918c013 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/edit.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/ellipse.svg b/theme_upshift/static/src/img/icons/line/ellipse.svg new file mode 100644 index 000000000..be2b0cdb6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/ellipse.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/email-open.svg b/theme_upshift/static/src/img/icons/line/email-open.svg new file mode 100644 index 000000000..c705ba898 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/email-open.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/email.svg b/theme_upshift/static/src/img/icons/line/email.svg new file mode 100644 index 000000000..263c8a978 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/email.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/end-phone.svg b/theme_upshift/static/src/img/icons/line/end-phone.svg new file mode 100644 index 000000000..807de4270 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/end-phone.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/exchange-diagonal.svg b/theme_upshift/static/src/img/icons/line/exchange-diagonal.svg new file mode 100644 index 000000000..d7f14ae93 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/exchange-diagonal.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/exchange.svg b/theme_upshift/static/src/img/icons/line/exchange.svg new file mode 100644 index 000000000..58039d8a3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/exchange.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/exclamation-clipboard.svg b/theme_upshift/static/src/img/icons/line/exclamation-clipboard.svg new file mode 100644 index 000000000..c4824951c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/exclamation-clipboard.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/exclamation-folder.svg b/theme_upshift/static/src/img/icons/line/exclamation-folder.svg new file mode 100644 index 000000000..46acb8140 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/exclamation-folder.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/expand-photo.svg b/theme_upshift/static/src/img/icons/line/expand-photo.svg new file mode 100644 index 000000000..fa6a977f9 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/expand-photo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/eye-off.svg b/theme_upshift/static/src/img/icons/line/eye-off.svg new file mode 100644 index 000000000..9dae40f2e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/eye-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/eye.svg b/theme_upshift/static/src/img/icons/line/eye.svg new file mode 100644 index 000000000..209b06715 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/eye.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/fast-backward.svg b/theme_upshift/static/src/img/icons/line/fast-backward.svg new file mode 100644 index 000000000..d619572df --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/fast-backward.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/fast-forward.svg b/theme_upshift/static/src/img/icons/line/fast-forward.svg new file mode 100644 index 000000000..d8ac7acfa --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/fast-forward.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/favourite-desktop.svg b/theme_upshift/static/src/img/icons/line/favourite-desktop.svg new file mode 100644 index 000000000..46c7c33cb --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/favourite-desktop.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/favourite-email.svg b/theme_upshift/static/src/img/icons/line/favourite-email.svg new file mode 100644 index 000000000..4b9a9aed4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/favourite-email.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/favourite-file.svg b/theme_upshift/static/src/img/icons/line/favourite-file.svg new file mode 100644 index 000000000..6c03f924f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/favourite-file.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/favourite-folder.svg b/theme_upshift/static/src/img/icons/line/favourite-folder.svg new file mode 100644 index 000000000..a1bcd5c6b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/favourite-folder.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/favourite-laptop.svg b/theme_upshift/static/src/img/icons/line/favourite-laptop.svg new file mode 100644 index 000000000..f32d08b87 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/favourite-laptop.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/favourite-payment-card.svg b/theme_upshift/static/src/img/icons/line/favourite-payment-card.svg new file mode 100644 index 000000000..5c7162903 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/favourite-payment-card.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/favourite-photo.svg b/theme_upshift/static/src/img/icons/line/favourite-photo.svg new file mode 100644 index 000000000..4d9f4cb79 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/favourite-photo.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/file.svg b/theme_upshift/static/src/img/icons/line/file.svg new file mode 100644 index 000000000..628312ed4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/file.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/filter-1.svg b/theme_upshift/static/src/img/icons/line/filter-1.svg new file mode 100644 index 000000000..b22b10201 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/filter-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/filter.svg b/theme_upshift/static/src/img/icons/line/filter.svg new file mode 100644 index 000000000..5df766ff4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/filter.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/flag.svg b/theme_upshift/static/src/img/icons/line/flag.svg new file mode 100644 index 000000000..893604260 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/flag.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/flight-landing.svg b/theme_upshift/static/src/img/icons/line/flight-landing.svg new file mode 100644 index 000000000..99270dd66 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/flight-landing.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/flight-takeoff.svg b/theme_upshift/static/src/img/icons/line/flight-takeoff.svg new file mode 100644 index 000000000..40f4c360e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/flight-takeoff.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/flip-horizontal-1.svg b/theme_upshift/static/src/img/icons/line/flip-horizontal-1.svg new file mode 100644 index 000000000..b0ecd1b5d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/flip-horizontal-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/flip-horizontal-2.svg b/theme_upshift/static/src/img/icons/line/flip-horizontal-2.svg new file mode 100644 index 000000000..d2eab0a9a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/flip-horizontal-2.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/flip-horizontal.svg b/theme_upshift/static/src/img/icons/line/flip-horizontal.svg new file mode 100644 index 000000000..e3baf75d8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/flip-horizontal.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/flip-vertical-1.svg b/theme_upshift/static/src/img/icons/line/flip-vertical-1.svg new file mode 100644 index 000000000..067bbab4a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/flip-vertical-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/flip-vertical-2.svg b/theme_upshift/static/src/img/icons/line/flip-vertical-2.svg new file mode 100644 index 000000000..2ec4546a3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/flip-vertical-2.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/flip-vertical.svg b/theme_upshift/static/src/img/icons/line/flip-vertical.svg new file mode 100644 index 000000000..898cf8939 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/flip-vertical.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/folder-off.svg b/theme_upshift/static/src/img/icons/line/folder-off.svg new file mode 100644 index 000000000..97092c06e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/folder-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/folder.svg b/theme_upshift/static/src/img/icons/line/folder.svg new file mode 100644 index 000000000..c718bbc10 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/folder.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/forwaded-call.svg b/theme_upshift/static/src/img/icons/line/forwaded-call.svg new file mode 100644 index 000000000..ec2f58582 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/forwaded-call.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/forward-email.svg b/theme_upshift/static/src/img/icons/line/forward-email.svg new file mode 100644 index 000000000..5d68f3cba --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/forward-email.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/forward.svg b/theme_upshift/static/src/img/icons/line/forward.svg new file mode 100644 index 000000000..d3f1bac98 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/forward.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/gift.svg b/theme_upshift/static/src/img/icons/line/gift.svg new file mode 100644 index 000000000..a02496268 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/gift.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/globe.svg b/theme_upshift/static/src/img/icons/line/globe.svg new file mode 100644 index 000000000..9b1cb5a40 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/globe.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/graph-file.svg b/theme_upshift/static/src/img/icons/line/graph-file.svg new file mode 100644 index 000000000..4240c0fe3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/graph-file.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/graph.svg b/theme_upshift/static/src/img/icons/line/graph.svg new file mode 100644 index 000000000..52aebbe95 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/graph.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/grid-off.svg b/theme_upshift/static/src/img/icons/line/grid-off.svg new file mode 100644 index 000000000..3790c6e7d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/grid-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/grid.svg b/theme_upshift/static/src/img/icons/line/grid.svg new file mode 100644 index 000000000..be662d5c1 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/grid.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/grin.svg b/theme_upshift/static/src/img/icons/line/grin.svg new file mode 100644 index 000000000..0ee3b341b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/grin.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/headset-mic-1.svg b/theme_upshift/static/src/img/icons/line/headset-mic-1.svg new file mode 100644 index 000000000..19fc0dc89 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/headset-mic-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/headset-mic-2-off.svg b/theme_upshift/static/src/img/icons/line/headset-mic-2-off.svg new file mode 100644 index 000000000..502927b2b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/headset-mic-2-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/headset-mic-2.svg b/theme_upshift/static/src/img/icons/line/headset-mic-2.svg new file mode 100644 index 000000000..e347adb1c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/headset-mic-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/headset-off.svg b/theme_upshift/static/src/img/icons/line/headset-off.svg new file mode 100644 index 000000000..8bff877da --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/headset-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/headset.svg b/theme_upshift/static/src/img/icons/line/headset.svg new file mode 100644 index 000000000..284d7703b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/headset.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/heart-rate-1.svg b/theme_upshift/static/src/img/icons/line/heart-rate-1.svg new file mode 100644 index 000000000..e9b3dbad0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/heart-rate-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/heart-rate.svg b/theme_upshift/static/src/img/icons/line/heart-rate.svg new file mode 100644 index 000000000..4a5f2e92c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/heart-rate.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/heart.svg b/theme_upshift/static/src/img/icons/line/heart.svg new file mode 100644 index 000000000..e9bbd001d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/heart.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/help-2.svg b/theme_upshift/static/src/img/icons/line/help-2.svg new file mode 100644 index 000000000..3b8260f84 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/help-2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/help-question.svg b/theme_upshift/static/src/img/icons/line/help-question.svg new file mode 100644 index 000000000..cedda0bfa --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/help-question.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/help.svg b/theme_upshift/static/src/img/icons/line/help.svg new file mode 100644 index 000000000..0692499b9 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/help.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/hexagon.svg b/theme_upshift/static/src/img/icons/line/hexagon.svg new file mode 100644 index 000000000..e562a3eac --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/hexagon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/history.svg b/theme_upshift/static/src/img/icons/line/history.svg new file mode 100644 index 000000000..42f2ef7b0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/history.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/home-1.svg b/theme_upshift/static/src/img/icons/line/home-1.svg new file mode 100644 index 000000000..17c2229ac --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/home-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/home-2.svg b/theme_upshift/static/src/img/icons/line/home-2.svg new file mode 100644 index 000000000..96e8d1cd2 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/home-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/horizontal-distribute.svg b/theme_upshift/static/src/img/icons/line/horizontal-distribute.svg new file mode 100644 index 000000000..b854be911 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/horizontal-distribute.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/hourglass-off.svg b/theme_upshift/static/src/img/icons/line/hourglass-off.svg new file mode 100644 index 000000000..c06d9a441 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/hourglass-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/hourglass.svg b/theme_upshift/static/src/img/icons/line/hourglass.svg new file mode 100644 index 000000000..9ee6a3673 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/hourglass.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/html.svg b/theme_upshift/static/src/img/icons/line/html.svg new file mode 100644 index 000000000..9d0936be8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/html.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/inbox.svg b/theme_upshift/static/src/img/icons/line/inbox.svg new file mode 100644 index 000000000..0b080cb9e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/inbox.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/incoming-call.svg b/theme_upshift/static/src/img/icons/line/incoming-call.svg new file mode 100644 index 000000000..6761cc402 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/incoming-call.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/info.svg b/theme_upshift/static/src/img/icons/line/info.svg new file mode 100644 index 000000000..f47de5a6f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/info.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/internet.svg b/theme_upshift/static/src/img/icons/line/internet.svg new file mode 100644 index 000000000..5bcd19af4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/internet.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/key-1.svg b/theme_upshift/static/src/img/icons/line/key-1.svg new file mode 100644 index 000000000..b926593ce --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/key-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/key-2.svg b/theme_upshift/static/src/img/icons/line/key-2.svg new file mode 100644 index 000000000..172d25736 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/key-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/laptop-settings.svg b/theme_upshift/static/src/img/icons/line/laptop-settings.svg new file mode 100644 index 000000000..392fa985f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/laptop-settings.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/laptop.svg b/theme_upshift/static/src/img/icons/line/laptop.svg new file mode 100644 index 000000000..f09164345 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/laptop.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/launch-1.svg b/theme_upshift/static/src/img/icons/line/launch-1.svg new file mode 100644 index 000000000..3499b6148 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/launch-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/launch-2.svg b/theme_upshift/static/src/img/icons/line/launch-2.svg new file mode 100644 index 000000000..6ebc2fbda --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/launch-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layer-1.svg b/theme_upshift/static/src/img/icons/line/layer-1.svg new file mode 100644 index 000000000..4ee2403dd --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layer-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layer-check.svg b/theme_upshift/static/src/img/icons/line/layer-check.svg new file mode 100644 index 000000000..8e0e187eb --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layer-check.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layer-off-1.svg b/theme_upshift/static/src/img/icons/line/layer-off-1.svg new file mode 100644 index 000000000..b4d4edf16 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layer-off-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layer-off.svg b/theme_upshift/static/src/img/icons/line/layer-off.svg new file mode 100644 index 000000000..bc31639a6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layer-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layer.svg b/theme_upshift/static/src/img/icons/line/layer.svg new file mode 100644 index 000000000..37fd25997 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layer.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-1.svg b/theme_upshift/static/src/img/icons/line/layout-1.svg new file mode 100644 index 000000000..352d45860 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-10.svg b/theme_upshift/static/src/img/icons/line/layout-10.svg new file mode 100644 index 000000000..edddcce92 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-10.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-11.svg b/theme_upshift/static/src/img/icons/line/layout-11.svg new file mode 100644 index 000000000..294381d75 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-11.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-12.svg b/theme_upshift/static/src/img/icons/line/layout-12.svg new file mode 100644 index 000000000..71b53a7db --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-12.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-2.svg b/theme_upshift/static/src/img/icons/line/layout-2.svg new file mode 100644 index 000000000..627dd0f3a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-3.svg b/theme_upshift/static/src/img/icons/line/layout-3.svg new file mode 100644 index 000000000..635a32d1e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-4.svg b/theme_upshift/static/src/img/icons/line/layout-4.svg new file mode 100644 index 000000000..c82fe0788 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-4.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-5.svg b/theme_upshift/static/src/img/icons/line/layout-5.svg new file mode 100644 index 000000000..88c12070d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-5.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-6.svg b/theme_upshift/static/src/img/icons/line/layout-6.svg new file mode 100644 index 000000000..6169b90c0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-6.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-7.svg b/theme_upshift/static/src/img/icons/line/layout-7.svg new file mode 100644 index 000000000..8b735d1f9 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-7.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-8.svg b/theme_upshift/static/src/img/icons/line/layout-8.svg new file mode 100644 index 000000000..d836e2ab9 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-8.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/layout-9.svg b/theme_upshift/static/src/img/icons/line/layout-9.svg new file mode 100644 index 000000000..d4909b31a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/layout-9.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/line-arrow-down.svg b/theme_upshift/static/src/img/icons/line/line-arrow-down.svg new file mode 100644 index 000000000..3617fc9cc --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/line-arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/line-arrow-left.svg b/theme_upshift/static/src/img/icons/line/line-arrow-left.svg new file mode 100644 index 000000000..07616c0ae --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/line-arrow-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/line-arrow-right.svg b/theme_upshift/static/src/img/icons/line/line-arrow-right.svg new file mode 100644 index 000000000..117a27576 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/line-arrow-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/line-arrow-up.svg b/theme_upshift/static/src/img/icons/line/line-arrow-up.svg new file mode 100644 index 000000000..f9cb23fd2 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/line-arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/link-1.svg b/theme_upshift/static/src/img/icons/line/link-1.svg new file mode 100644 index 000000000..91beacaf1 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/link-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/link-2.svg b/theme_upshift/static/src/img/icons/line/link-2.svg new file mode 100644 index 000000000..ab6e44de0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/link-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/link-3.svg b/theme_upshift/static/src/img/icons/line/link-3.svg new file mode 100644 index 000000000..08e11ed5f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/link-3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/link-broke.svg b/theme_upshift/static/src/img/icons/line/link-broke.svg new file mode 100644 index 000000000..ce36e6d67 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/link-broke.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/link-off-1.svg b/theme_upshift/static/src/img/icons/line/link-off-1.svg new file mode 100644 index 000000000..012555b40 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/link-off-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/link-off-2.svg b/theme_upshift/static/src/img/icons/line/link-off-2.svg new file mode 100644 index 000000000..58c7d0ca7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/link-off-2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/list-clipboard.svg b/theme_upshift/static/src/img/icons/line/list-clipboard.svg new file mode 100644 index 000000000..f4da6052d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/list-clipboard.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/location-point.svg b/theme_upshift/static/src/img/icons/line/location-point.svg new file mode 100644 index 000000000..4773fdd74 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/location-point.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-1.svg b/theme_upshift/static/src/img/icons/line/lock-1.svg new file mode 100644 index 000000000..ce70cef9f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-2.svg b/theme_upshift/static/src/img/icons/line/lock-2.svg new file mode 100644 index 000000000..b585e53d9 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-browser.svg b/theme_upshift/static/src/img/icons/line/lock-browser.svg new file mode 100644 index 000000000..678b0a363 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-browser.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-cloud.svg b/theme_upshift/static/src/img/icons/line/lock-cloud.svg new file mode 100644 index 000000000..62e7bedad --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-cloud.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-desktop.svg b/theme_upshift/static/src/img/icons/line/lock-desktop.svg new file mode 100644 index 000000000..6ff350559 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-desktop.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-email.svg b/theme_upshift/static/src/img/icons/line/lock-email.svg new file mode 100644 index 000000000..4be6abb28 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-email.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-file.svg b/theme_upshift/static/src/img/icons/line/lock-file.svg new file mode 100644 index 000000000..470de1c92 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-file.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-folder.svg b/theme_upshift/static/src/img/icons/line/lock-folder.svg new file mode 100644 index 000000000..16c0f05c7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-folder.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-laptop.svg b/theme_upshift/static/src/img/icons/line/lock-laptop.svg new file mode 100644 index 000000000..d892a7d53 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-laptop.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-pattern.svg b/theme_upshift/static/src/img/icons/line/lock-pattern.svg new file mode 100644 index 000000000..c279a51b7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-pattern.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-payment-card.svg b/theme_upshift/static/src/img/icons/line/lock-payment-card.svg new file mode 100644 index 000000000..7f442237f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-payment-card.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/lock-photo.svg b/theme_upshift/static/src/img/icons/line/lock-photo.svg new file mode 100644 index 000000000..0e5556874 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/lock-photo.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/login.svg b/theme_upshift/static/src/img/icons/line/login.svg new file mode 100644 index 000000000..604824f21 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/login.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/logout.svg b/theme_upshift/static/src/img/icons/line/logout.svg new file mode 100644 index 000000000..9a28a012b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/logout.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/luggage.svg b/theme_upshift/static/src/img/icons/line/luggage.svg new file mode 100644 index 000000000..7f7813924 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/luggage.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/map.svg b/theme_upshift/static/src/img/icons/line/map.svg new file mode 100644 index 000000000..453d53176 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/map.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/mask.svg b/theme_upshift/static/src/img/icons/line/mask.svg new file mode 100644 index 000000000..9d65a1f36 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/mask.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/medicine.svg b/theme_upshift/static/src/img/icons/line/medicine.svg new file mode 100644 index 000000000..22203992e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/medicine.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/meh.svg b/theme_upshift/static/src/img/icons/line/meh.svg new file mode 100644 index 000000000..87b0a01c4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/meh.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/merge.svg b/theme_upshift/static/src/img/icons/line/merge.svg new file mode 100644 index 000000000..1b06932bc --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/merge.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/mic-off.svg b/theme_upshift/static/src/img/icons/line/mic-off.svg new file mode 100644 index 000000000..c6521e098 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/mic-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/mic.svg b/theme_upshift/static/src/img/icons/line/mic.svg new file mode 100644 index 000000000..8ba53dbf6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/mic.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/missed-call.svg b/theme_upshift/static/src/img/icons/line/missed-call.svg new file mode 100644 index 000000000..d8888fa2e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/missed-call.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/mobile-off.svg b/theme_upshift/static/src/img/icons/line/mobile-off.svg new file mode 100644 index 000000000..434360c79 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/mobile-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/mobile.svg b/theme_upshift/static/src/img/icons/line/mobile.svg new file mode 100644 index 000000000..8ec410be8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/mobile.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/money-dollar.svg b/theme_upshift/static/src/img/icons/line/money-dollar.svg new file mode 100644 index 000000000..7f13212bb --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/money-dollar.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/money.svg b/theme_upshift/static/src/img/icons/line/money.svg new file mode 100644 index 000000000..480f366d5 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/money.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/move-down.svg b/theme_upshift/static/src/img/icons/line/move-down.svg new file mode 100644 index 000000000..85e373d7f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/move-down.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/move-to-inbox.svg b/theme_upshift/static/src/img/icons/line/move-to-inbox.svg new file mode 100644 index 000000000..3c873c7fa --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/move-to-inbox.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/move-up.svg b/theme_upshift/static/src/img/icons/line/move-up.svg new file mode 100644 index 000000000..648c0fa8b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/move-up.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/my-location.svg b/theme_upshift/static/src/img/icons/line/my-location.svg new file mode 100644 index 000000000..b721b8b4e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/my-location.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/navigation.svg b/theme_upshift/static/src/img/icons/line/navigation.svg new file mode 100644 index 000000000..f47c13052 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/navigation.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/no-border.svg b/theme_upshift/static/src/img/icons/line/no-border.svg new file mode 100644 index 000000000..ac95e698d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/no-border.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/note-1.svg b/theme_upshift/static/src/img/icons/line/note-1.svg new file mode 100644 index 000000000..66e5e31bc --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/note-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/note.svg b/theme_upshift/static/src/img/icons/line/note.svg new file mode 100644 index 000000000..bf2505280 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/note.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/package.svg b/theme_upshift/static/src/img/icons/line/package.svg new file mode 100644 index 000000000..de01d9448 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/package.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/password-2.svg b/theme_upshift/static/src/img/icons/line/password-2.svg new file mode 100644 index 000000000..ddb6602ab --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/password-2.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/password-key.svg b/theme_upshift/static/src/img/icons/line/password-key.svg new file mode 100644 index 000000000..8de0fed0d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/password-key.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/password.svg b/theme_upshift/static/src/img/icons/line/password.svg new file mode 100644 index 000000000..220b38e2e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/password.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/pause.svg b/theme_upshift/static/src/img/icons/line/pause.svg new file mode 100644 index 000000000..db9d4c776 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/pause.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/payment-card.svg b/theme_upshift/static/src/img/icons/line/payment-card.svg new file mode 100644 index 000000000..d4db40c8f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/payment-card.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/pentagon.svg b/theme_upshift/static/src/img/icons/line/pentagon.svg new file mode 100644 index 000000000..fb39ba574 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/pentagon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/phone-call.svg b/theme_upshift/static/src/img/icons/line/phone-call.svg new file mode 100644 index 000000000..fd3e85584 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/phone-call.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/phone-off.svg b/theme_upshift/static/src/img/icons/line/phone-off.svg new file mode 100644 index 000000000..c730caf03 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/phone-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/phone.svg b/theme_upshift/static/src/img/icons/line/phone.svg new file mode 100644 index 000000000..c8a9ccdc4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/phone.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/photo-camera-off.svg b/theme_upshift/static/src/img/icons/line/photo-camera-off.svg new file mode 100644 index 000000000..f07a0daa8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/photo-camera-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/photo-camera.svg b/theme_upshift/static/src/img/icons/line/photo-camera.svg new file mode 100644 index 000000000..3fe160db3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/photo-camera.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/photo-off.svg b/theme_upshift/static/src/img/icons/line/photo-off.svg new file mode 100644 index 000000000..24a318a73 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/photo-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/photo.svg b/theme_upshift/static/src/img/icons/line/photo.svg new file mode 100644 index 000000000..dac6762ec --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/photo.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/picker-off.svg b/theme_upshift/static/src/img/icons/line/picker-off.svg new file mode 100644 index 000000000..42fbb00ca --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/picker-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/picker.svg b/theme_upshift/static/src/img/icons/line/picker.svg new file mode 100644 index 000000000..0d6a21b4f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/picker.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/pie-chart-1.svg b/theme_upshift/static/src/img/icons/line/pie-chart-1.svg new file mode 100644 index 000000000..08961c5cd --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/pie-chart-1.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/pie-chart.svg b/theme_upshift/static/src/img/icons/line/pie-chart.svg new file mode 100644 index 000000000..b33f81823 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/pie-chart.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/play.svg b/theme_upshift/static/src/img/icons/line/play.svg new file mode 100644 index 000000000..9a8aba244 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/play.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/printer-off.svg b/theme_upshift/static/src/img/icons/line/printer-off.svg new file mode 100644 index 000000000..a0ff76e45 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/printer-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/printer.svg b/theme_upshift/static/src/img/icons/line/printer.svg new file mode 100644 index 000000000..6746523a8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/printer.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/push-pin.svg b/theme_upshift/static/src/img/icons/line/push-pin.svg new file mode 100644 index 000000000..ef7bcc4a3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/push-pin.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/recieved-email.svg b/theme_upshift/static/src/img/icons/line/recieved-email.svg new file mode 100644 index 000000000..0610734d2 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/recieved-email.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/remove-browser.svg b/theme_upshift/static/src/img/icons/line/remove-browser.svg new file mode 100644 index 000000000..85da01b91 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/remove-browser.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/remove-circle.svg b/theme_upshift/static/src/img/icons/line/remove-circle.svg new file mode 100644 index 000000000..3ea771625 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/remove-circle.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/remove-desktop-1.svg b/theme_upshift/static/src/img/icons/line/remove-desktop-1.svg new file mode 100644 index 000000000..42d4087ea --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/remove-desktop-1.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/remove-desktop.svg b/theme_upshift/static/src/img/icons/line/remove-desktop.svg new file mode 100644 index 000000000..5b6958af5 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/remove-desktop.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/remove-email.svg b/theme_upshift/static/src/img/icons/line/remove-email.svg new file mode 100644 index 000000000..7bc02047e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/remove-email.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/remove-file.svg b/theme_upshift/static/src/img/icons/line/remove-file.svg new file mode 100644 index 000000000..f1542a833 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/remove-file.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/remove-folder.svg b/theme_upshift/static/src/img/icons/line/remove-folder.svg new file mode 100644 index 000000000..55e005a5a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/remove-folder.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/remove-laptop.svg b/theme_upshift/static/src/img/icons/line/remove-laptop.svg new file mode 100644 index 000000000..3a81b0054 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/remove-laptop.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/remove-payment-card.svg b/theme_upshift/static/src/img/icons/line/remove-payment-card.svg new file mode 100644 index 000000000..fa5e4aaf3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/remove-payment-card.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/remove-photo.svg b/theme_upshift/static/src/img/icons/line/remove-photo.svg new file mode 100644 index 000000000..d243e7744 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/remove-photo.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/remove.svg b/theme_upshift/static/src/img/icons/line/remove.svg new file mode 100644 index 000000000..9c1a7a612 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/remove.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/rupee-coin.svg b/theme_upshift/static/src/img/icons/line/rupee-coin.svg new file mode 100644 index 000000000..477fa864a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/rupee-coin.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/rupee.svg b/theme_upshift/static/src/img/icons/line/rupee.svg new file mode 100644 index 000000000..6b218042d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/rupee.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/sad.svg b/theme_upshift/static/src/img/icons/line/sad.svg new file mode 100644 index 000000000..47dcb1f56 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/sad.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/sanitizer.svg b/theme_upshift/static/src/img/icons/line/sanitizer.svg new file mode 100644 index 000000000..d4229e614 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/sanitizer.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/satellite.svg b/theme_upshift/static/src/img/icons/line/satellite.svg new file mode 100644 index 000000000..8754a55ca --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/satellite.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/save.svg b/theme_upshift/static/src/img/icons/line/save.svg new file mode 100644 index 000000000..a1986e8fc --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/save.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/scissors.svg b/theme_upshift/static/src/img/icons/line/scissors.svg new file mode 100644 index 000000000..52e5f5c39 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/scissors.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/search.svg b/theme_upshift/static/src/img/icons/line/search.svg new file mode 100644 index 000000000..d58ff14d8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/search.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/send-1.svg b/theme_upshift/static/src/img/icons/line/send-1.svg new file mode 100644 index 000000000..6e75e875a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/send-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/send-2.svg b/theme_upshift/static/src/img/icons/line/send-2.svg new file mode 100644 index 000000000..f86ce2df7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/send-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/settings-2.svg b/theme_upshift/static/src/img/icons/line/settings-2.svg new file mode 100644 index 000000000..c33dd339b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/settings-2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/settings.svg b/theme_upshift/static/src/img/icons/line/settings.svg new file mode 100644 index 000000000..617195c84 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/settings.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/share-1.svg b/theme_upshift/static/src/img/icons/line/share-1.svg new file mode 100644 index 000000000..6876d6429 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/share-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/share-2.svg b/theme_upshift/static/src/img/icons/line/share-2.svg new file mode 100644 index 000000000..27537701a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/share-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/share-3.svg b/theme_upshift/static/src/img/icons/line/share-3.svg new file mode 100644 index 000000000..2b1a0eceb --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/share-3.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/shield-bad.svg b/theme_upshift/static/src/img/icons/line/shield-bad.svg new file mode 100644 index 000000000..6adeb3c7d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/shield-bad.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/shield-good.svg b/theme_upshift/static/src/img/icons/line/shield-good.svg new file mode 100644 index 000000000..eec37659e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/shield-good.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/shield-info.svg b/theme_upshift/static/src/img/icons/line/shield-info.svg new file mode 100644 index 000000000..2f4537152 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/shield-info.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/shield-lock.svg b/theme_upshift/static/src/img/icons/line/shield-lock.svg new file mode 100644 index 000000000..e55710364 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/shield-lock.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/shield-off.svg b/theme_upshift/static/src/img/icons/line/shield-off.svg new file mode 100644 index 000000000..b084717e2 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/shield-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/shopping-bag-1.svg b/theme_upshift/static/src/img/icons/line/shopping-bag-1.svg new file mode 100644 index 000000000..6b92ecc3b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/shopping-bag-1.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/shopping-bag-2.svg b/theme_upshift/static/src/img/icons/line/shopping-bag-2.svg new file mode 100644 index 000000000..1a2900f8c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/shopping-bag-2.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/shopping-bag.svg b/theme_upshift/static/src/img/icons/line/shopping-bag.svg new file mode 100644 index 000000000..bbaebbcd8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/shopping-bag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/shopping-bags.svg b/theme_upshift/static/src/img/icons/line/shopping-bags.svg new file mode 100644 index 000000000..4af2a1309 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/shopping-bags.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/shopping-cart.svg b/theme_upshift/static/src/img/icons/line/shopping-cart.svg new file mode 100644 index 000000000..4c1c3f0c4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/shopping-cart.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/shuffle-arrow.svg b/theme_upshift/static/src/img/icons/line/shuffle-arrow.svg new file mode 100644 index 000000000..77e824da6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/shuffle-arrow.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/signal.svg b/theme_upshift/static/src/img/icons/line/signal.svg new file mode 100644 index 000000000..a6f5ab2fb --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/signal.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/skip-to-next.svg b/theme_upshift/static/src/img/icons/line/skip-to-next.svg new file mode 100644 index 000000000..4b0492bb8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/skip-to-next.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/skip-to-previous.svg b/theme_upshift/static/src/img/icons/line/skip-to-previous.svg new file mode 100644 index 000000000..6a8ebc545 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/skip-to-previous.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/sliders-1.svg b/theme_upshift/static/src/img/icons/line/sliders-1.svg new file mode 100644 index 000000000..db10a8bc7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/sliders-1.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/sliders.svg b/theme_upshift/static/src/img/icons/line/sliders.svg new file mode 100644 index 000000000..ae3c72261 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/sliders.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/smile.svg b/theme_upshift/static/src/img/icons/line/smile.svg new file mode 100644 index 000000000..4d37eeeac --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/smile.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/sort.svg b/theme_upshift/static/src/img/icons/line/sort.svg new file mode 100644 index 000000000..95e5f2fdc --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/sort.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/speed-email.svg b/theme_upshift/static/src/img/icons/line/speed-email.svg new file mode 100644 index 000000000..42eb529ab --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/speed-email.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/square-arrow-down.svg b/theme_upshift/static/src/img/icons/line/square-arrow-down.svg new file mode 100644 index 000000000..816d44fa0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/square-arrow-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/square-arrow-left.svg b/theme_upshift/static/src/img/icons/line/square-arrow-left.svg new file mode 100644 index 000000000..d3772b5f2 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/square-arrow-left.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/square-arrow-right.svg b/theme_upshift/static/src/img/icons/line/square-arrow-right.svg new file mode 100644 index 000000000..edd42731e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/square-arrow-right.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/square-arrow-up.svg b/theme_upshift/static/src/img/icons/line/square-arrow-up.svg new file mode 100644 index 000000000..7941d0a5f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/square-arrow-up.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/square.svg b/theme_upshift/static/src/img/icons/line/square.svg new file mode 100644 index 000000000..96912f1b8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/square.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/star.svg b/theme_upshift/static/src/img/icons/line/star.svg new file mode 100644 index 000000000..4c940637b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/star.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/stethoscope.svg b/theme_upshift/static/src/img/icons/line/stethoscope.svg new file mode 100644 index 000000000..e2581cd54 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/stethoscope.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/suitcase-1.svg b/theme_upshift/static/src/img/icons/line/suitcase-1.svg new file mode 100644 index 000000000..799b4c222 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/suitcase-1.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/suitcase-2.svg b/theme_upshift/static/src/img/icons/line/suitcase-2.svg new file mode 100644 index 000000000..9355b3dc3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/suitcase-2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/suitcase-off.svg b/theme_upshift/static/src/img/icons/line/suitcase-off.svg new file mode 100644 index 000000000..25ad542b1 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/suitcase-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/suitcase.svg b/theme_upshift/static/src/img/icons/line/suitcase.svg new file mode 100644 index 000000000..aea6da158 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/suitcase.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/support.svg b/theme_upshift/static/src/img/icons/line/support.svg new file mode 100644 index 000000000..eb2ec217d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/support.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/syringe.svg b/theme_upshift/static/src/img/icons/line/syringe.svg new file mode 100644 index 000000000..aae01a8f4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/syringe.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/tag.svg b/theme_upshift/static/src/img/icons/line/tag.svg new file mode 100644 index 000000000..781a2f1f7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/tag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/three-column.svg b/theme_upshift/static/src/img/icons/line/three-column.svg new file mode 100644 index 000000000..f1cc3333d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/three-column.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/three-row.svg b/theme_upshift/static/src/img/icons/line/three-row.svg new file mode 100644 index 000000000..a07df7183 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/three-row.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/thumbs-down.svg b/theme_upshift/static/src/img/icons/line/thumbs-down.svg new file mode 100644 index 000000000..0f825fa97 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/thumbs-down.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/thumbs-up.svg b/theme_upshift/static/src/img/icons/line/thumbs-up.svg new file mode 100644 index 000000000..cd5ee888c --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/thumbs-up.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/timer-off.svg b/theme_upshift/static/src/img/icons/line/timer-off.svg new file mode 100644 index 000000000..494a3f62e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/timer-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/timer.svg b/theme_upshift/static/src/img/icons/line/timer.svg new file mode 100644 index 000000000..670399a40 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/timer.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/travel-bag.svg b/theme_upshift/static/src/img/icons/line/travel-bag.svg new file mode 100644 index 000000000..6d2313f90 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/travel-bag.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/trending-down.svg b/theme_upshift/static/src/img/icons/line/trending-down.svg new file mode 100644 index 000000000..405fe6e7b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/trending-down.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/trending-up.svg b/theme_upshift/static/src/img/icons/line/trending-up.svg new file mode 100644 index 000000000..852c6d10f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/trending-up.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/triangle.svg b/theme_upshift/static/src/img/icons/line/triangle.svg new file mode 100644 index 000000000..9023a1c0a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/triangle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/two-column.svg b/theme_upshift/static/src/img/icons/line/two-column.svg new file mode 100644 index 000000000..816fe3638 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/two-column.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/two-row.svg b/theme_upshift/static/src/img/icons/line/two-row.svg new file mode 100644 index 000000000..195d0a897 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/two-row.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/unarchive.svg b/theme_upshift/static/src/img/icons/line/unarchive.svg new file mode 100644 index 000000000..e453df59a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/unarchive.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/unlock-1.svg b/theme_upshift/static/src/img/icons/line/unlock-1.svg new file mode 100644 index 000000000..e1fa7bfad --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/unlock-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/unlock-2.svg b/theme_upshift/static/src/img/icons/line/unlock-2.svg new file mode 100644 index 000000000..ab2907c9e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/unlock-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/update.svg b/theme_upshift/static/src/img/icons/line/update.svg new file mode 100644 index 000000000..2eb6c82fb --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/update.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/upload-1.svg b/theme_upshift/static/src/img/icons/line/upload-1.svg new file mode 100644 index 000000000..5a3e4548a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/upload-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/upload-2.svg b/theme_upshift/static/src/img/icons/line/upload-2.svg new file mode 100644 index 000000000..f3d942d69 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/upload-2.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/upload-browser.svg b/theme_upshift/static/src/img/icons/line/upload-browser.svg new file mode 100644 index 000000000..04ed20fde --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/upload-browser.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/upload-cloud-1.svg b/theme_upshift/static/src/img/icons/line/upload-cloud-1.svg new file mode 100644 index 000000000..d383d0e89 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/upload-cloud-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/upload-cloud.svg b/theme_upshift/static/src/img/icons/line/upload-cloud.svg new file mode 100644 index 000000000..b494d4d7b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/upload-cloud.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/upload-desktop.svg b/theme_upshift/static/src/img/icons/line/upload-desktop.svg new file mode 100644 index 000000000..bd57ccfb5 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/upload-desktop.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/upload-file-2.svg b/theme_upshift/static/src/img/icons/line/upload-file-2.svg new file mode 100644 index 000000000..03719beca --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/upload-file-2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/upload-file.svg b/theme_upshift/static/src/img/icons/line/upload-file.svg new file mode 100644 index 000000000..45b31fe52 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/upload-file.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/upload-folder.svg b/theme_upshift/static/src/img/icons/line/upload-folder.svg new file mode 100644 index 000000000..2bf01621b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/upload-folder.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/upload-laptop.svg b/theme_upshift/static/src/img/icons/line/upload-laptop.svg new file mode 100644 index 000000000..cc445b1bb --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/upload-laptop.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/upload-photo.svg b/theme_upshift/static/src/img/icons/line/upload-photo.svg new file mode 100644 index 000000000..613ce88b9 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/upload-photo.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/user-add.svg b/theme_upshift/static/src/img/icons/line/user-add.svg new file mode 100644 index 000000000..a4fba85da --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/user-add.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/user-check.svg b/theme_upshift/static/src/img/icons/line/user-check.svg new file mode 100644 index 000000000..a1181c775 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/user-check.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/user-circle.svg b/theme_upshift/static/src/img/icons/line/user-circle.svg new file mode 100644 index 000000000..954294c5d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/user-circle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/user-delete.svg b/theme_upshift/static/src/img/icons/line/user-delete.svg new file mode 100644 index 000000000..68d0bc753 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/user-delete.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/user-group.svg b/theme_upshift/static/src/img/icons/line/user-group.svg new file mode 100644 index 000000000..44b0814a0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/user-group.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/user.svg b/theme_upshift/static/src/img/icons/line/user.svg new file mode 100644 index 000000000..a12d64aa3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/user.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/vertical-distribute.svg b/theme_upshift/static/src/img/icons/line/vertical-distribute.svg new file mode 100644 index 000000000..f9e22e20a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/vertical-distribute.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/video-off.svg b/theme_upshift/static/src/img/icons/line/video-off.svg new file mode 100644 index 000000000..f2c47a625 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/video-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/video-playlist.svg b/theme_upshift/static/src/img/icons/line/video-playlist.svg new file mode 100644 index 000000000..4c25f5e5e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/video-playlist.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/video.svg b/theme_upshift/static/src/img/icons/line/video.svg new file mode 100644 index 000000000..2f71ce6a4 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/video.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/volume-down-1.svg b/theme_upshift/static/src/img/icons/line/volume-down-1.svg new file mode 100644 index 000000000..091da3b76 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/volume-down-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/volume-down.svg b/theme_upshift/static/src/img/icons/line/volume-down.svg new file mode 100644 index 000000000..6490f6b1d --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/volume-down.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/volume-low.svg b/theme_upshift/static/src/img/icons/line/volume-low.svg new file mode 100644 index 000000000..d86dcdff7 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/volume-low.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/volume-mute.svg b/theme_upshift/static/src/img/icons/line/volume-mute.svg new file mode 100644 index 000000000..29ca5b50b --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/volume-mute.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/volume-off.svg b/theme_upshift/static/src/img/icons/line/volume-off.svg new file mode 100644 index 000000000..f501b183e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/volume-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/volume-up-1.svg b/theme_upshift/static/src/img/icons/line/volume-up-1.svg new file mode 100644 index 000000000..ac4d9ed78 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/volume-up-1.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/volume-up.svg b/theme_upshift/static/src/img/icons/line/volume-up.svg new file mode 100644 index 000000000..7b00368d9 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/volume-up.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/wallet.svg b/theme_upshift/static/src/img/icons/line/wallet.svg new file mode 100644 index 000000000..0e796f37a --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/wallet.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/warning-1.svg b/theme_upshift/static/src/img/icons/line/warning-1.svg new file mode 100644 index 000000000..bb3afe6c5 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/warning-1.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/warning.svg b/theme_upshift/static/src/img/icons/line/warning.svg new file mode 100644 index 000000000..0c48d236f --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/warning.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/watch.svg b/theme_upshift/static/src/img/icons/line/watch.svg new file mode 100644 index 000000000..51960d51e --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/watch.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/wifi-off.svg b/theme_upshift/static/src/img/icons/line/wifi-off.svg new file mode 100644 index 000000000..695751547 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/wifi-off.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/wifi.svg b/theme_upshift/static/src/img/icons/line/wifi.svg new file mode 100644 index 000000000..6985e8de8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/wifi.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/window.svg b/theme_upshift/static/src/img/icons/line/window.svg new file mode 100644 index 000000000..3449b97f1 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/window.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/zoom-in-1.svg b/theme_upshift/static/src/img/icons/line/zoom-in-1.svg new file mode 100644 index 000000000..c6891bebd --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/zoom-in-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/zoom-in.svg b/theme_upshift/static/src/img/icons/line/zoom-in.svg new file mode 100644 index 000000000..04896a297 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/zoom-in.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/zoom-out-1.svg b/theme_upshift/static/src/img/icons/line/zoom-out-1.svg new file mode 100644 index 000000000..81446d7f8 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/zoom-out-1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/line/zoom-out.svg b/theme_upshift/static/src/img/icons/line/zoom-out.svg new file mode 100644 index 000000000..0c5c2a493 --- /dev/null +++ b/theme_upshift/static/src/img/icons/line/zoom-out.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/logo-instagram.svg b/theme_upshift/static/src/img/icons/logo-instagram.svg new file mode 100644 index 000000000..99001bccd --- /dev/null +++ b/theme_upshift/static/src/img/icons/logo-instagram.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/menu.png b/theme_upshift/static/src/img/icons/menu.png new file mode 100644 index 000000000..a9c4294b5 Binary files /dev/null and b/theme_upshift/static/src/img/icons/menu.png differ diff --git a/theme_upshift/static/src/img/icons/printer.svg b/theme_upshift/static/src/img/icons/printer.svg new file mode 100644 index 000000000..2d388ef4e --- /dev/null +++ b/theme_upshift/static/src/img/icons/printer.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/right.svg b/theme_upshift/static/src/img/icons/right.svg new file mode 100644 index 000000000..7a3a207f0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/search.svg b/theme_upshift/static/src/img/icons/search.svg new file mode 100644 index 000000000..b87cb9675 --- /dev/null +++ b/theme_upshift/static/src/img/icons/search.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/telephone.svg b/theme_upshift/static/src/img/icons/telephone.svg new file mode 100644 index 000000000..a00dd5de0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/telephone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/line/back.svg b/theme_upshift/static/src/img/icons/undefined/line/back.svg new file mode 100644 index 000000000..255b2cde0 --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/line/back.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/line/bounding-box.svg b/theme_upshift/static/src/img/icons/undefined/line/bounding-box.svg new file mode 100644 index 000000000..2837dd083 --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/line/bounding-box.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/line/eraser.svg b/theme_upshift/static/src/img/icons/undefined/line/eraser.svg new file mode 100644 index 000000000..5410d3ac6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/line/eraser.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/line/exclude.svg b/theme_upshift/static/src/img/icons/undefined/line/exclude.svg new file mode 100644 index 000000000..9de591552 --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/line/exclude.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/line/layers.svg b/theme_upshift/static/src/img/icons/undefined/line/layers.svg new file mode 100644 index 000000000..099eb2a2f --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/line/layers.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/line/palette.svg b/theme_upshift/static/src/img/icons/undefined/line/palette.svg new file mode 100644 index 000000000..27021bbc9 --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/line/palette.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/sharp/layers.svg b/theme_upshift/static/src/img/icons/undefined/sharp/layers.svg new file mode 100644 index 000000000..cc3821872 --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/sharp/layers.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/solid/easel.svg b/theme_upshift/static/src/img/icons/undefined/solid/easel.svg new file mode 100644 index 000000000..f2e8efdb3 --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/solid/easel.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/solid/easel2.svg b/theme_upshift/static/src/img/icons/undefined/solid/easel2.svg new file mode 100644 index 000000000..c45b1096f --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/solid/easel2.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/solid/eyedropper.svg b/theme_upshift/static/src/img/icons/undefined/solid/eyedropper.svg new file mode 100644 index 000000000..b5d05b7f1 --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/solid/eyedropper.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/solid/layers.svg b/theme_upshift/static/src/img/icons/undefined/solid/layers.svg new file mode 100644 index 000000000..6540e31c6 --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/solid/layers.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/undefined/solid/mask.svg b/theme_upshift/static/src/img/icons/undefined/solid/mask.svg new file mode 100644 index 000000000..cc34b1fba --- /dev/null +++ b/theme_upshift/static/src/img/icons/undefined/solid/mask.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/wave.svg b/theme_upshift/static/src/img/icons/wave.svg new file mode 100644 index 000000000..9fa39b3e2 --- /dev/null +++ b/theme_upshift/static/src/img/icons/wave.svg @@ -0,0 +1,3 @@ + + + diff --git a/theme_upshift/static/src/img/icons/white.svg b/theme_upshift/static/src/img/icons/white.svg new file mode 100644 index 000000000..f749bdf88 --- /dev/null +++ b/theme_upshift/static/src/img/icons/white.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/static/src/img/icons/youtube.png b/theme_upshift/static/src/img/icons/youtube.png new file mode 100644 index 000000000..c24ac565d Binary files /dev/null and b/theme_upshift/static/src/img/icons/youtube.png differ diff --git a/theme_upshift/static/src/img/portfolio/home.png b/theme_upshift/static/src/img/portfolio/home.png new file mode 100644 index 000000000..eadec4a69 Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/home.png differ diff --git a/theme_upshift/static/src/img/portfolio/p-1.jpg b/theme_upshift/static/src/img/portfolio/p-1.jpg new file mode 100644 index 000000000..b8dba6672 Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/p-1.jpg differ diff --git a/theme_upshift/static/src/img/portfolio/p-1.png b/theme_upshift/static/src/img/portfolio/p-1.png new file mode 100644 index 000000000..060eeea2b Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/p-1.png differ diff --git a/theme_upshift/static/src/img/portfolio/p-2.jpg b/theme_upshift/static/src/img/portfolio/p-2.jpg new file mode 100644 index 000000000..839b8ba68 Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/p-2.jpg differ diff --git a/theme_upshift/static/src/img/portfolio/p-2.png b/theme_upshift/static/src/img/portfolio/p-2.png new file mode 100644 index 000000000..d4eabc13f Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/p-2.png differ diff --git a/theme_upshift/static/src/img/portfolio/p-3.jpg b/theme_upshift/static/src/img/portfolio/p-3.jpg new file mode 100644 index 000000000..10afd1ac0 Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/p-3.jpg differ diff --git a/theme_upshift/static/src/img/portfolio/p-3.png b/theme_upshift/static/src/img/portfolio/p-3.png new file mode 100644 index 000000000..a3395a685 Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/p-3.png differ diff --git a/theme_upshift/static/src/img/portfolio/p-4.png b/theme_upshift/static/src/img/portfolio/p-4.png new file mode 100644 index 000000000..d64b9fd22 Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/p-4.png differ diff --git a/theme_upshift/static/src/img/portfolio/p-5.jpg b/theme_upshift/static/src/img/portfolio/p-5.jpg new file mode 100644 index 000000000..38f6c54ed Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/p-5.jpg differ diff --git a/theme_upshift/static/src/img/portfolio/p-5.png b/theme_upshift/static/src/img/portfolio/p-5.png new file mode 100644 index 000000000..a045c3bd5 Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/p-5.png differ diff --git a/theme_upshift/static/src/img/portfolio/p-6.jpg b/theme_upshift/static/src/img/portfolio/p-6.jpg new file mode 100644 index 000000000..e231cef31 Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/p-6.jpg differ diff --git a/theme_upshift/static/src/img/portfolio/p-6.png b/theme_upshift/static/src/img/portfolio/p-6.png new file mode 100644 index 000000000..75f92ad01 Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/p-6.png differ diff --git a/theme_upshift/static/src/img/portfolio/port-4.jpg b/theme_upshift/static/src/img/portfolio/port-4.jpg new file mode 100644 index 000000000..e2dd18552 Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/port-4.jpg differ diff --git a/theme_upshift/static/src/img/portfolio/project.png b/theme_upshift/static/src/img/portfolio/project.png new file mode 100644 index 000000000..b6043164d Binary files /dev/null and b/theme_upshift/static/src/img/portfolio/project.png differ diff --git a/theme_upshift/static/src/img/shapes/1.png b/theme_upshift/static/src/img/shapes/1.png new file mode 100644 index 000000000..c1a622ec4 Binary files /dev/null and b/theme_upshift/static/src/img/shapes/1.png differ diff --git a/theme_upshift/static/src/img/shapes/2.png b/theme_upshift/static/src/img/shapes/2.png new file mode 100644 index 000000000..798ec180c Binary files /dev/null and b/theme_upshift/static/src/img/shapes/2.png differ diff --git a/theme_upshift/static/src/img/shapes/3.png b/theme_upshift/static/src/img/shapes/3.png new file mode 100644 index 000000000..ee8cb3d8e Binary files /dev/null and b/theme_upshift/static/src/img/shapes/3.png differ diff --git a/theme_upshift/static/src/img/testimonial/test1.png b/theme_upshift/static/src/img/testimonial/test1.png new file mode 100644 index 000000000..50e9aa8f2 Binary files /dev/null and b/theme_upshift/static/src/img/testimonial/test1.png differ diff --git a/theme_upshift/static/src/img/video/dummy.mp4 b/theme_upshift/static/src/img/video/dummy.mp4 new file mode 100644 index 000000000..cd318d994 Binary files /dev/null and b/theme_upshift/static/src/img/video/dummy.mp4 differ diff --git a/theme_upshift/static/src/js/map.js b/theme_upshift/static/src/js/map.js new file mode 100644 index 000000000..449d11d5b --- /dev/null +++ b/theme_upshift/static/src/js/map.js @@ -0,0 +1,54 @@ +/** @odoo-module **/ + +import publicWidget from '@web/legacy/js/public/public_widget'; +import { generateGMapLink } from '@website/js/utils'; +import { rpc } from "@web/core/network/rpc"; + +publicWidget.registry.Map_1 = publicWidget.Widget.extend({ + selector: '.s_map.s_map_1', + + // Fallback address if no company address is found + FALLBACK_ADDRESS: '250 Executive Park Blvd, Suite 3400 San Francisco California (US) United States', + + /** + * @override + */ + async start() { + let address; + try { + address = await rpc("/get-company/address"); + } catch (error) { + console.warn('Failed to fetch company address, using fallback', error); + } + + // Use fallback address if no address is retrieved + address = address || this.FALLBACK_ADDRESS; + + const existingIframe = this.el.querySelector('.s_map.s_map_1 iframe'); + if (existingIframe) { + existingIframe.remove(); + } + + const iframeEl = document.createElement('iframe'); + iframeEl.classList.add('s_map_embedded', 'o_not_editable'); + iframeEl.setAttribute('width', '100%'); + iframeEl.setAttribute('height', '350'); + iframeEl.setAttribute('frameborder', '0'); + iframeEl.setAttribute('style', 'border:0;'); + iframeEl.setAttribute('allowfullscreen', ''); + iframeEl.setAttribute('aria-hidden', 'false'); + iframeEl.setAttribute('tabindex', '0'); + + iframeEl.setAttribute('src', generateGMapLink({ + mapType: 'm', + mapZoom: "12", + name: 'Map', + snippet: 's_map', + mapAddress: address + })); + + this.el.querySelector('.s_map_color_filter_1').before(iframeEl); + }, +}); + +export default publicWidget.registry.Map_1; \ No newline at end of file diff --git a/theme_upshift/static/src/js/othernavbar.js b/theme_upshift/static/src/js/othernavbar.js new file mode 100644 index 000000000..a509c6114 --- /dev/null +++ b/theme_upshift/static/src/js/othernavbar.js @@ -0,0 +1,231 @@ +/** @odoo-module */ +import PublicWidget from "@web/legacy/js/public/public_widget"; +import { registry } from "@web/core/registry"; + +export const NavigationScroll = PublicWidget.Widget.extend({ + selector: "#wrapwrap", + + start() { + this._super.apply(this, arguments); + this._handleNavStyle(); + this._navbar_animation(); + this._setupScrollHandler(); + this._initializeAnimations(); + this._triggerHeroAnimation(); + this._setupPortfolioAnimations(); + }, + + _setupScrollHandler() { + this._onScroll = this._onScroll.bind(this); + window.addEventListener('scroll', this._onScroll); + this._setupIntersectionObserver(); + }, + + _setupIntersectionObserver() { + const options = { + root: null, + rootMargin: '0px', + threshold: 0.1, + }; + + this.observer = new IntersectionObserver((entries) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + const target = entry.target; + this._triggerAnimation(target); + this.observer.unobserve(target); + } + }); + }, options); + + // Expanded list of animated elements + const animatedElements = document.querySelectorAll( + '.anime_video, .anime_video_right, .anime_h, .anime_card, .anime_h2, ' + + '.anime_card2, .anime_grid2, .testimonial, .location_head, ' + + '.location_left, .location_right, .anime_section, .anime_grid' + ); + + animatedElements.forEach(element => { + this.observer.observe(element); + }); + }, + + _triggerAnimation(element) { + // Comprehensive animation method covering all classes + const animationOptions = { + duration: 1.5, + ease: "power2.out" + }; + + // Left sliding animations (from left) + if (element.classList.contains('anime_video') || + element.classList.contains('anime_h') || + element.classList.contains('anime_card') || + element.classList.contains('anime_h2') || + element.classList.contains('testimonial') || + element.classList.contains('location_head') || + element.classList.contains('location_left')) { + gsap.fromTo(element, + { x: "-100vw", opacity: 0 }, + { x: 0, opacity: 1, ...animationOptions } + ); + } + + // Right sliding animations (from right) + else if (element.classList.contains('anime_video_right') || + element.classList.contains('anime_card2') || + element.classList.contains('anime_grid2') || + element.classList.contains('location_right')) { + gsap.fromTo(element, + { x: "200vw", opacity: 0 }, + { x: 0, opacity: 1, ...animationOptions } + ); + } + + // Grid and section animations + else if (element.classList.contains('anime_grid') || + element.classList.contains('anime_section')) { + gsap.fromTo(element, + { y: "50px", opacity: 0 }, + { y: 0, opacity: 1, duration: 1.5, ease: "power2.out" } + ); + } + }, + + _setupPortfolioAnimations() { + setTimeout(() => { + // Portfolio header animation + const portfolioHeader = document.querySelector('.project_head'); + const portfolioTitle = document.querySelector('.project_head h1'); + + if (portfolioHeader && portfolioTitle) { + // Create a timeline for more complex animations + const tl = gsap.timeline({ defaults: { duration: 1 } }); + + // Animate background + tl.fromTo(portfolioHeader, + { opacity: 0, y: -50 }, + { opacity: 1, y: 0, ease: "power2.out" } + ) + // Animate title + .fromTo(portfolioTitle, + { opacity: 0, scale: 0.5 }, + { opacity: 1, scale: 1, ease: "back.out(1.7)" }, + 0.5 // Slight delay for staggered effect + ); + } + }, 100); + }, + + + _triggerHeroAnimation() { + setTimeout(() => { + // Letter span animation + const letters = document.querySelectorAll(".text span"); + if (letters.length > 0) { + gsap.to(letters, { + opacity: 1, + y: 0, + duration: 0.5, + ease: "power2.out", + stagger: 0.1, + }); + } + + // Hero elements animation + const heroElements = { + hero: document.querySelector(".hero"), + hero_title: document.querySelector(".hero__title"), + hero_subtitle: document.querySelector(".hero__subtitle"), + }; + + // Verify elements exist before animating + if (heroElements.hero && heroElements.hero_title && heroElements.hero_subtitle) { + const tl = gsap.timeline({ + defaults: { + duration: 1, + opacity: 0 + } + }); + + tl.from(heroElements.hero, { + scale: 2 + }) + .from(heroElements.hero_title, { + y: -10, + scale: 0.5 + }) + .from(heroElements.hero_subtitle, { + y: 10, + scale: 0.5 + }); + } + }, 100); + }, + + destroy() { + if (this.observer) { + this.observer.disconnect(); + } + window.removeEventListener('scroll', this._onScroll); + this._super.apply(this, arguments); + }, + + _initializeAnimations() { + // Ensure GSAP is fully initialized + if (window.gsap) { + window.gsap.registerPlugin(); + } + }, + + _handleNavStyle() { + const currentPath = window.location.pathname; + const targetNav = this.$el.find('a.nav-link'); + const logoName = this.$el.find('#theme_name'); + const toggleButton = this.$el.find('.navbar-toggler img'); + + if (currentPath === "/" || currentPath === "/home") { + if (targetNav.length > 0) { + targetNav.removeClass('nav-link2'); + logoName.addClass('span1').removeClass('brandD'); + } + + } else { + if (targetNav.length > 0) { + targetNav.addClass('nav-link2'); + logoName.addClass('brandD').removeClass('span1'); + toggleButton.attr('src', '/theme_upshift/static/src/img/icons/black.svg'); + } + } + }, + + _navbar_animation() { + const timeline = gsap.timeline({ defaults: { duration: 1 } }); + timeline + .from(".navigation", { y: "-100%", duration: 2, ease: "bounce" }) + .from(".nav-link", { opacity: 0, stagger: 0.5 }) + .from( + ".navbar-brand", + { x: "-100%", opacity: 0 }, + { x: "0%", opacity: 1, ease: "power1.in" }, + "<.5" + ); + }, + + _onScroll() { + const scrollTop = window.scrollY || document.documentElement.scrollTop; + const currentPath = window.location.pathname; + + if (scrollTop > 0) { + if (currentPath === "/" || currentPath === "/home") { + this.$el.find(".navigation")[0].classList.add("scrolled"); + } else { + this.$el.find(".navigation")[0].classList.add("scrolled2"); + } + } else { + this.$el.find(".navigation")[0].classList.remove("scrolled", "scrolled2"); + } + }, +}); + +PublicWidget.registry.NavigationScroll = NavigationScroll; \ No newline at end of file diff --git a/theme_upshift/static/src/js/status_counter.js b/theme_upshift/static/src/js/status_counter.js new file mode 100644 index 000000000..aa4dd7e4f --- /dev/null +++ b/theme_upshift/static/src/js/status_counter.js @@ -0,0 +1,85 @@ +/** @odoo-module */ +import PublicWidget from "@web/legacy/js/public/public_widget"; +// Extend the PublicWidget.Widget class to create a new widget for the theme +export const themeIndex = PublicWidget.Widget.extend({ +// Set the selector to the element with id 'wrapwrap', which is the main container of the page + selector: "#wrapwrap", + // Define the events to be handled by the widget + + /** + * @override + */ + // The 'start' method is called when the widget is initialized + + start() { + this._super(...arguments); + this.counters = this.$el.find('.number'); + this._setupIntersectionObserver(); + return Promise.resolve(); + }, + + /** + * Sets up the Intersection Observer to watch counter elements + * @private + */ + _setupIntersectionObserver() { + const options = { + root: null, // use viewport + rootMargin: '0px', + threshold: 0.5 // trigger when 50% of element is visible + }; + + const observer = new IntersectionObserver((entries) => { + entries.forEach(entry => { + if (entry.isIntersecting && !entry.target.dataset.animated) { + this._animateCounter(entry.target); + } + }); + }, options); + + // Observe each counter element + this.counters.each((_, counter) => { + observer.observe(counter); + }); + }, + + /** + * Animates a single counter element + * @private + * @param {HTMLElement} counter - The counter element to animate + */ + _animateCounter(counter) { + const speed = 10; + const $counter = $(counter); + const target = +$counter.attr("data-target"); + const increment = target / speed; + + counter.dataset.animated = 'true'; // Mark as animated + + const updateCounter = (currentValue) => { + if (currentValue < target) { + const nextValue = Math.ceil(currentValue + increment); + counter.innerText = nextValue; + setTimeout(() => updateCounter(nextValue), 200); + } else { + counter.innerText = target; + } + }; + + updateCounter(0);// Call the 'updateCounter' function to start the counting animation + }, + + /** + * @override + */ + destroy() { + this._super(...arguments); + // Clean up observer if widget is destroyed + if (this.observer) { + this.observer.disconnect(); + } + } +}); + +// Register the widget +PublicWidget.registry.themeIndex = themeIndex; diff --git a/theme_upshift/static/src/scss/_common.scss b/theme_upshift/static/src/scss/_common.scss new file mode 100644 index 000000000..5483211c4 --- /dev/null +++ b/theme_upshift/static/src/scss/_common.scss @@ -0,0 +1,124 @@ +*:focus { + outline: 0 !important; +} + +*:hover { + -webkit-transition: 0.2s; + transition: 0.2s; +} + +*:focus { + outline: 0 !important; + box-shadow: none !important; +} + +*button:focus { + border: none; + outline: none; + box-shadow: none; +} + +* { + list-style-type: none; + font-family: $font-default !important; + font-size: 18px; + + &:focus, + &:active { + outline: none !important; + } +} + +html.sr .load-hidden { + visibility: hidden; +} + +*::selection { + color: rgb(243, 235, 238); + background-color: black; +} + +*a, +a:visited { + color: #990000; + text-decoration: none; +} + +body { + position: relative; + font-family: font-default !important; + color: var(--text-color); +} + +.affix { + top: 0; + width: 100%; + z-index: 9999 !important; +} + + +html { + scroll-behavior: smooth !important; +} + +body { + scroll-behavior: smooth !important; + +} + + +.bg_img { + position: absolute; + z-index: -1; +} + +.img1 { + top: 20%; + left: 0; + width: 250px; + + @media (max-width:768px) { + + display: none; + } + +} + +.img2 { + top: 15%; + width: 250px; + + right: 0; + + @media (max-width:768px) { + + display: none; + } +} + + +.section_heading { + text-align: center; + width: 30%; + margin: auto; + margin-bottom: 40px; + + @media(max-width:1200px){ + width: 60%; + } + @media(max-width:768px){ + width: 100%; + } + span{ + color: var(--up-primary); + font-size: 22px; + font-weight: 500; + margin-bottom: 20px; + display: block; + } + h2{ + font-size: 36px; + font-weight: 600; + color: var(--brand-dark); + } +} \ No newline at end of file diff --git a/theme_upshift/static/src/scss/_normalize.scss b/theme_upshift/static/src/scss/_normalize.scss new file mode 100644 index 000000000..f26d0a846 --- /dev/null +++ b/theme_upshift/static/src/scss/_normalize.scss @@ -0,0 +1,349 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + + html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ + } + + /* Sections + ========================================================================== */ + + /** + * Remove the margin in all browsers. + */ + + body { + margin: 0; + } + + /** + * Render the `main` element consistently in IE. + */ + + main { + display: block; + } + + /** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + + h1 { + font-size: 2em; + margin: 0.67em 0; + } + + /* Grouping content + ========================================================================== */ + + /** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + + hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ + } + + /** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + + pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ + } + + /* Text-level semantics + ========================================================================== */ + + /** + * Remove the gray background on active links in IE 10. + */ + + a { + background-color: transparent; + } + + /** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + + abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ + } + + /** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + + b, + strong { + font-weight: bolder; + } + + /** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + + code, + kbd, + samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ + } + + /** + * Add the correct font size in all browsers. + */ + + small { + font-size: 80%; + } + + /** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + + sub, + sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; + } + + sub { + bottom: -0.25em; + } + + sup { + top: -0.5em; + } + + /* Embedded content + ========================================================================== */ + + /** + * Remove the border on images inside links in IE 10. + */ + + img { + border-style: none; + } + + /* Forms + ========================================================================== */ + + /** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + + button, + input, + optgroup, + select, + textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ + } + + /** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + + button, + input { /* 1 */ + overflow: visible; + } + + /** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + + button, + select { /* 1 */ + text-transform: none; + } + + /** + * Correct the inability to style clickable types in iOS and Safari. + */ + + button, + [type="button"], + [type="reset"], + [type="submit"] { + -webkit-appearance: button; + } + + /** + * Remove the inner border and padding in Firefox. + */ + + button::-moz-focus-inner, + [type="button"]::-moz-focus-inner, + [type="reset"]::-moz-focus-inner, + [type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; + } + + /** + * Restore the focus styles unset by the previous rule. + */ + + button:-moz-focusring, + [type="button"]:-moz-focusring, + [type="reset"]:-moz-focusring, + [type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; + } + + /** + * Correct the padding in Firefox. + */ + + fieldset { + padding: 0.35em 0.75em 0.625em; + } + + /** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + + legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ + } + + /** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + + progress { + vertical-align: baseline; + } + + /** + * Remove the default vertical scrollbar in IE 10+. + */ + + textarea { + overflow: auto; + } + + /** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + + [type="checkbox"], + [type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ + } + + /** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + + [type="number"]::-webkit-inner-spin-button, + [type="number"]::-webkit-outer-spin-button { + height: auto; + } + + /** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + + [type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ + } + + /** + * Remove the inner padding in Chrome and Safari on macOS. + */ + + [type="search"]::-webkit-search-decoration { + -webkit-appearance: none; + } + + /** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + + ::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ + } + + /* Interactive + ========================================================================== */ + + /* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + + details { + display: block; + } + + /* + * Add the correct display in all browsers. + */ + + summary { + display: list-item; + } + + /* Misc + ========================================================================== */ + + /** + * Add the correct display in IE 10+. + */ + + template { + display: none; + } + + /** + * Add the correct display in IE 10. + */ + + [hidden] { + display: none; + } \ No newline at end of file diff --git a/theme_upshift/static/src/scss/_variables.scss b/theme_upshift/static/src/scss/_variables.scss new file mode 100644 index 000000000..4193386ff --- /dev/null +++ b/theme_upshift/static/src/scss/_variables.scss @@ -0,0 +1,47 @@ +// Fonts +$font-default: "Rubik", sans-serif; + +$font-h1: 46px; +$font-h2: 40px; +$font-h3: 36px; +$font-h4: 22px; +$font-h5: 36px; +$font-h6: 18px; +$font-size-banner: 60px; +$font-heading: 46px; +$font-sub-heading: 28px; +$font-text: 14px; +$font-brand: 30px; + +$easing: cubic-bezier(0.25, 1.7, 0.35, 0.8); +$duration: 0.5s; + + + + +:root { + + + --up-primary: #D5BC93; + --brand-red: #BE3144; + --brand-dark: #242424; + --up-bg-section:#161616; + + + + --brand-heading: #0C0C0C; + --brand-text: #767676; + + --brand-blue-900: #1C3F90; + --brand-blue-100: #EEF1F8; + + --brand-green-900: #011E24; + --brand-green-800: #323D46; + --card-bg: #F5F5F5; + --brand-grey:#DFDFDF; + + + + --white-color: #ffff; + --grey-color-900: #34383B; +} \ No newline at end of file diff --git a/theme_upshift/static/src/scss/components/_buttons.scss b/theme_upshift/static/src/scss/components/_buttons.scss new file mode 100644 index 000000000..e59be0c38 --- /dev/null +++ b/theme_upshift/static/src/scss/components/_buttons.scss @@ -0,0 +1,93 @@ +.btn { + border: none !important; + outline: 0 !important; + -webkit-transition: 0.5s; + transition: 0.5s; + &-primary { + border-radius: 25px; + font-size: 14px; + font-weight: 500; + + text-decoration: none; + padding: 7px 0px 7px 14px; + position: relative; + border: 1px solid var(--p-brand-green) !important; + background-color: #d9d9d9; + color: var(--brand-dark) !important; + transition: all 0.3s; + + span { + background-color: var(--up-primary); + padding: 8px 13px; + border-radius: 25px; + margin-left: 3px; + } + + &:hover { + background-color: var(--white-color); + + span { + + background-color: var(--white-color); + } + } + } + &-secondary { + border-radius: 25px; + font-size: 14px; + font-weight: 400; + + text-decoration: none; + padding: 7px 0px 7px 14px; + position: relative; + border: 1px solid var(--p-brand-green) !important; + background-color: var(--brand-dark); + color: var(--white-color) !important; + transition: all 0.3s; + + span { + background-color: var(--up-primary); + padding: 8px 13px; + border-radius: 25px; + margin-left: 3px; + } + + &:hover { + background-color: var(--brand-dark); + + + } + } + &-primary-black { + border-radius: 25px; + font-size: 14px; + font-weight: 400; + + text-decoration: none; + padding: 7px 0px 7px 14px; + position: relative; + border: 1px solid var(--p-brand-green) !important; + background-color: var(--brand-dark); + color: var(--white-color) !important; + transition: all 0.3s; + + span { + background-color: var(--white-color); + padding: 8px 13px; + border-radius: 25px; + margin-left: 3px; + } + + &:hover { + background-color: var(--brand-dark); + + + } + } + &-search { + height: 40px; + img { + height: 20px; + } + } +} diff --git a/theme_upshift/static/src/scss/components/_components.scss b/theme_upshift/static/src/scss/components/_components.scss new file mode 100644 index 000000000..14f02a179 --- /dev/null +++ b/theme_upshift/static/src/scss/components/_components.scss @@ -0,0 +1 @@ +@import 'buttons'; \ No newline at end of file diff --git a/theme_upshift/static/src/scss/css/pages.css b/theme_upshift/static/src/scss/css/pages.css new file mode 100644 index 000000000..e69de29bb diff --git a/theme_upshift/static/src/scss/layouts/_banner.scss b/theme_upshift/static/src/scss/layouts/_banner.scss new file mode 100644 index 000000000..6e0e4590a --- /dev/null +++ b/theme_upshift/static/src/scss/layouts/_banner.scss @@ -0,0 +1,223 @@ +.hero { + background-color: var(--brand-dark); + height: auto; + padding-top: 100px; + // margin-top: 75px; + + .wrapper { + // padding-left: 240px; + position: relative; + + .hero_content { + + display: flex; + // grid-template-columns: repeat(auto-fill, minmax(500px, 1fr)); + // justify-content: center; + // gap: 2rem; + + + .hero_left { + padding-top: 100px; + margin-right: 80px; + width: 50%; + padding-bottom: 100px; + position: relative; + z-index: 1; + + @media (max-width:992px) { + width: 80%; + padding-top: 20px; + } + + h1 { + color: var(--white-color); + font-size: 56px; + font-weight: 700; + text-transform: uppercase; + line-height: 1.4; + + @media (max-width:768px) { + font-size: 36px; + } + + span { + color: var(--up-primary); + font-size: 56px; + font-weight: 700; + + @media (max-width:768px) { + font-size: 36px; + } + } + } + + p { + color: var(--white-color); + font-size: 16px; + line-height: 1.6; + padding-bottom: 20px; + } + } + + .banner_right { + @media (max-width:992px) { + display: none; + } + + img { + position: absolute; + width: 800px; + bottom: 0; + right: 0; + + } + } + } + + } + +} + + +.hero_sub { + border-radius: 8px; + width: 90%; + margin: auto; + margin-top: 70px; + padding-top: 0px; + padding: 50px 0px; + + position: relative; + + background-color: var(--brand-dark); + height: auto; + + + .wrapper { + padding-left: 50px; + + + + @media (max-width:768px) { + padding-left: 0px !important; + } + + + .hero_sub_left { + padding-top: 100px; + padding-right: 80px; + width: 80%; + padding-bottom: 100px; + position: relative; + z-index: 1; + + + + + + + @media (max-width:1200px) { + width: 100%; + + } + + @media (max-width:992px) { + width: 100%; + padding-top: 20px; + } + @media (max-width:768px) { + padding-right: 0; + } + + + h1 { + color: var(--white-color); + font-size: 56px; + font-weight: 700; + text-transform: uppercase; + line-height: 1.4; + + @media (max-width:768px) { + font-size: 36px; + } + + span { + color: var(--up-primary); + font-size: 56px; + font-weight: 700; + + @media (max-width:768px) { + font-size: 36px; + } + } + } + + p { + color: var(--white-color); + font-size: 16px; + line-height: 1.6; + padding-bottom: 20px; + } + } + + + + + + .banner_right { + // max-width: 800px; + + // img { + // width: 100%; + // border-top-left-radius: 15px; + // border-bottom-left-radius: 15px; + // } + + + + @media (max-width:992px) { + display: none; + } + + img { + position: absolute; + width: 800px; + bottom: 15%; + right: 0; + border-top-left-radius: 15px; + border-bottom-left-radius: 15px; + + } + + + + + } + } +} + + + + +// Text Banner + +.hero_sub_plain { + border-radius: 8px; + width: 90%; + margin: auto; + margin-top: 80px; + padding-top: 0px; + padding: 50px 0px; + + @media (max-width:768px) { + width: 100%; + border-radius: 0; + .wrapper { + padding-left: 0; + + h1 { + font-size: 48px; + + } + } + }} \ No newline at end of file diff --git a/theme_upshift/static/src/scss/layouts/_footer.scss b/theme_upshift/static/src/scss/layouts/_footer.scss new file mode 100644 index 000000000..d86f11f40 --- /dev/null +++ b/theme_upshift/static/src/scss/layouts/_footer.scss @@ -0,0 +1,146 @@ +.footer { + margin-top: 50px; + padding: 40px 0px; + border: 1px solid; + border-color: transparent; + border-top-color: var(--brand-grey); + text-align: center; + position: relative; + + .info { + margin: auto; + padding: 5px 15px; + border-radius: 25px; + margin: auto; + background-color: #FFF1DA; + padding: 5px 15px; + border-radius: 25px; + margin-top: -60px; + width: fit-content; + margin-bottom: 50px; + box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; + width: fit-content; + + + span { + font-weight: 400; + font-style: italic; + color: #B88635; + font-size: 14px; + } + } + + .credit{ + margin-top: 20px; + @media (max-width:768px){ + text-align: start; + } + } +} + +.footer_brand2 { + text-align: center; + + .footer_logo { + +display: flex; +align-items: center; + img { + width: 40px; + margin-right: 15px; + height: fit-content; + align-items: center; + } + + span { + color: var(--up-bg-section); + font-size: 36px; + font-weight: 700; + } + } + +} + +.footer_brand { + text-align: center; + + .footer_logo { + +display: flex; +justify-content: center; +align-items: center; + + img { + width: 40px; + margin-right: 15px; + height: fit-content; + align-items: center; + + } + + span { + color: var(--up-bg-section); + font-size: 36px; + font-weight: 700; + } + } + +} + +.footer-links { + list-style: none; + display: flex; + gap: 1.5rem; + justify-content: center; + margin-bottom: 1.5rem; + padding-left: 0; + + @media (max-width:768px){ + flex-direction: column; + align-items: baseline; + } + + li { + a { + color: var(--black-color); + &:hover{ + color: var( --brand-red); + } + + } + } +} + +.footer-links a { + text-decoration: none; + color: #fff; + font-weight: 500; +} + +.footer-social { + text-align: center; + padding-top: 30px; + margin-bottom: 20px; + display: flex; + justify-content: center; + + @media (max-width:768px){ + justify-content: start; + padding-top: 15px; + :first-child{ + margin-left: 0 !important; + } + } + + a { + margin: 0 0.5rem; + + + img { + width: 24px; + height: 24px; + + + } + } +} \ No newline at end of file diff --git a/theme_upshift/static/src/scss/layouts/_layouts.scss b/theme_upshift/static/src/scss/layouts/_layouts.scss new file mode 100644 index 000000000..465d411a6 --- /dev/null +++ b/theme_upshift/static/src/scss/layouts/_layouts.scss @@ -0,0 +1,3 @@ +@import 'navbar'; +@import 'banner'; +@import 'footer'; \ No newline at end of file diff --git a/theme_upshift/static/src/scss/layouts/_navbar.scss b/theme_upshift/static/src/scss/layouts/_navbar.scss new file mode 100644 index 000000000..68d6e7309 --- /dev/null +++ b/theme_upshift/static/src/scss/layouts/_navbar.scss @@ -0,0 +1,258 @@ +@media (max-width:992px) { + .offcanvas-body{ + height: 100% !important + } +} + + +.navigation { + background-color: transparent; + position: fixed; + top: 0; + left: 0; + width: 100%; + z-index: 999; + .wrapper { + + // Main nav style + .navbar { + padding-top: 15px; + + .navbar-brand { + display: flex; + align-items: center; + img{ + width: 40px; + margin-right: 15px; + } + span{ + color: var(--white-color); + font-size: 36px; + font-weight: 700; + } + + .brandD{ + color: var(--black-color); + } + + + @media (max-width: 768px) { + img{ + width: 25px; + margin-right: 5px; + } + span{ + color: var(--white-color); + font-size: 24px; + font-weight: 700; + } + } + } + .navbar-collapse { + justify-content: end; + justify-content: center; + @media (max-width:992px) { + padding-top: 20px; + } + } + @media (max-width: 992px) { + .navbar-collapse { + padding-top: 20px; + background-color: var(--brand-dark) !important; + + } + .collapse2{ + background-color: #ffffff !important; + } + } + .navbar-nav { + .nav-item { + &:hover { + background-color: var(--brand-blue-100); + border-radius: 5px !important; + } + .nav-link { + color: var(--white-color); + font-size: 16px; + padding: 0px 15px; + @media (max-width:1200px) { + padding: 0px 8px; + } + @media (max-width:992px) { + padding: 10px 0px; + padding-left: 15px; + } + &:hover { + color: var(--brand-blue-900); + font-weight: 500; + } + } + + .nav-link2{ + color: var(--black-color); + + } + } + + } + +.dropdown-menu{ +background-repeat: no-repeat; + min-width: 220px; + background-color: rgb(255, 255, 255); + color: rgb(0, 0, 0); + box-shadow: rgb(239, 239, 239) 0px 1px 10px; + background-position: right bottom; + border-image: initial; + border-style: solid; + border-color: rgb(244, 244, 244); + margin: 0px; + border-radius: 4px; + padding: 10px; + overflow: visible; + border-width: 1px !important; + top: 45px; + + .dropdown-item{ + color: var(--brand-dark); + font-size: 16px; + padding: 15px 15px; + padding-bottom: 5px; + &:hover{ + color: var(--up-); + } + } +} + + + } + // Main nav style + } +} +.navigation.scrolled { + box-shadow: -7px 2px 17px rgba(0, 0, 0, 0.1); + background-color: var(--brand-dark) !important; + +} + +.navigation.scrolled2 { + box-shadow: -7px 2px 17px rgba(0, 0, 0, 0.1); + background-color: var(--white-color) !important; + + // .nav-link{ + // color: var(--brand-dark) !important; + // } + +} + + + + + + +.navbar-toggler{ + background-color: white; +} + +.navbar-toggler { + position: relative; + width: 45px; + height: 30px; + border: none; + background: none; + cursor: pointer; +} + +.navbar-toggler-icon { + display: block; + position: relative; + width: 100%; + height: 4px; + background-color: #ffffff; + transition: transform 0.3s ease, opacity 0.3s ease; +} + +.toggler2{ + background-color: black !important; +} + +.navbar-toggler-icon::before, +.navbar-toggler-icon::after { + content: ''; + position: absolute; + width: 100%; + height: 4px; + background-color: #ffffff; + transition: transform 0.3s ease; +} +.toggler2::before, +.toggler2::after { + content: ''; + position: absolute; + width: 100%; + height: 4px; + background-color: #000000; + transition: transform 0.3s ease; +} + +.navbar-toggler-icon::before { + top: -10px; +} + +.navbar-toggler-icon::after { + bottom: -10px; +} + +.navbar-toggler.collapsed .navbar-toggler-icon { + background-color: transparent; +} + +.navbar-toggler.collapsed .toggler2 { + background-color: white !important; + background-image:none +} + +.navbar-toggler.collapsed .navbar-toggler-icon::before { + transform: translateY(10px) rotate(45deg); +} + +.navbar-toggler.collapsed .navbar-toggler-icon::after { + transform: translateY(-10px) rotate(-45deg); +} + +.user_login .nav-item .dropdown-menu a { + color: white; // Set the color to white +} +.o_no_autohide_item a{ + &:hover { + color: var(--brand-blue-900); + font-weight: 500; + } +} + +.o_no_autohide_item{ + &:hover { + background-color: var(--brand-blue-100); + border-radius: 5px !important; + } + a { + font-size: 16px; + padding: 0px 15px; + @media (max-width:1200px) { + padding: 0px 8px; + } + @media (max-width:992px) { + padding: 10px 0px; + padding-left: 15px; + } + &:hover { + color: var(--brand-blue-900); + font-weight: 500; + } + } + + .nav-link2{ + color: var(--black-color); + + } +} diff --git a/theme_upshift/static/src/scss/pages/_about.scss b/theme_upshift/static/src/scss/pages/_about.scss new file mode 100644 index 000000000..9682fff5e --- /dev/null +++ b/theme_upshift/static/src/scss/pages/_about.scss @@ -0,0 +1,177 @@ +.status { + padding: 100px 0px; + + .stats_wrapp { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 50px; + + @media (max-width:992px) { + gap: 15px; + } + } + + .stat { + text-align: center; + width: 100%; + } + + .type { + font-weight: 500; + position: relative; + padding-bottom: 25px; + color: var(--black-color); + + &:after { + position: absolute; + content: ""; + width: 70px; + height: 2px; + background-color: var(--up-primary); + bottom: 10%; + left: 50%; + transform: translate(-50%, -50%); + } + } + + + p { + color: var(--brand-text); + } + + .number { + font-size: 2.6rem; + font-weight: 500; + margin-bottom: 10px; + } + +} + +.goals { + background-color: var(--up-bg-section); + padding: 100px 0px; + + .wrapper { + .goals_text { + + h4 { + color: var(--up-primary); + margin-bottom: 20px; + font-size: 30px; + } + + .content { + padding-top: 20px; + + h6 { + color: var(--up-primary); + padding-bottom: 15px; + } + + p { + color: var(--white-color); + + } + } + } + + .goals_img { + max-width: 700px; + margin: auto; + + @media (max-width:992px) { + margin-top: 40px; + } + + img { + width: 100%; + } + } + } +} + + +.our_team { + padding: 100px 0px; + @media (max-width:768px) { + padding-bottom: 50px; + } + .wrapper { + .team_wrapper { + .img_wrapper { + max-width: 450px; + position: relative; + margin-bottom: 20px; + + img { + width: 100%; + border-radius: 8px; + } + + ul { + display: flex; + justify-content: end; + width: 100%; + position: absolute; + top: 15px; + right: 15px; + padding-left: 0; + li{ + margin-right: 10px; + } + + .icon { + fill: #D5BC93; + /* Initial color */ + transition: fill 0.3s ease; + /* Smooth transition */ + } + + .icon:hover { + fill: white; + /* New color on hover */ + } + + li { + a { + display: block; + border-radius: 50%; + padding: 8px; + border: 1px solid; + border-color: var(--up-primary); + height: 40px; + width: 40px; + display: flex; + + &:hover { + background-color: var(--up-primary); + + } + + } + } + } + } + } + } +} + +.subscribe { + padding-bottom: 100px; + @media (max-width:768px) { + padding-bottom: 50px; + } + .sub_content { + background-image: url(../../assets/banner/sub.png); + background-position: center; + background-size: cover; + text-align: center; + color: var(--white-color); + padding: 40px 20px; + border-radius: 15px; + + h2 { + margin-bottom: 25px; + } + } +} \ No newline at end of file diff --git a/theme_upshift/static/src/scss/pages/_contact.scss b/theme_upshift/static/src/scss/pages/_contact.scss new file mode 100644 index 000000000..4158169b2 --- /dev/null +++ b/theme_upshift/static/src/scss/pages/_contact.scss @@ -0,0 +1,50 @@ +.contact_form { + margin-top: 100px; + padding: 100px 0; + padding-bottom: 50px; + + .contact_left { + background-image: url(../../assets/contact/contact-bg.jpg); + background-position: center; + height: 500px; + background-size: cover; + + .wrapper { + background-color: rgba(0, 0, 0, 0.235); + color: var(--white-color); + padding: 100px 50px; + height: 100%; + display: flex; + flex-direction: column; + justify-content: center; + + h2 { + font-size: 48px; + padding-bottom: 15px; + } + } + } + + + + + .contact-form { + background-color: var(--card-bg); + padding: 40px 30px; + border-radius: 8px; + } + + .form-control { + border: none; + border-bottom: 1px solid #cccccc99; + border-radius: 0; + box-shadow: none; + background-color: transparent; + margin-bottom: 25px; + } + + .form-control:focus { + border-bottom-color: #c43710; + box-shadow: none; + } +} \ No newline at end of file diff --git a/theme_upshift/static/src/scss/pages/_pages.scss b/theme_upshift/static/src/scss/pages/_pages.scss new file mode 100644 index 000000000..c9d40db0b --- /dev/null +++ b/theme_upshift/static/src/scss/pages/_pages.scss @@ -0,0 +1,4 @@ +@import './home/home'; +@import './about'; +@import './contact'; +@import './portfoliio' \ No newline at end of file diff --git a/theme_upshift/static/src/scss/pages/_portfoliio.scss b/theme_upshift/static/src/scss/pages/_portfoliio.scss new file mode 100644 index 000000000..f1207e56a --- /dev/null +++ b/theme_upshift/static/src/scss/pages/_portfoliio.scss @@ -0,0 +1,162 @@ +.portfolio{ + padding: 100px 0; + + @media (max-width:768px) { + padding-bottom: 50px; + } + .wrapper{ + .portfolio_grid{ + display: grid; + grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); + justify-content: center; + gap: 2rem; /* Equivalent to gap in flexbox */ + .portfolio_wrapper{ + .p_img_wrapper{ + position: relative; + max-width: auto; + margin-bottom: 15px; + img{ + width: 100%; + border-radius: 5px; + } + .badge{ + position: absolute; + top: 15px; + right: 20px; + background-color: rgba(0, 0, 0, 0.169); + font-weight: 400; + text-transform: uppercase; + font-size: 12px; + padding: 7px 8px; + border-radius: 4px; + } + } + .p_content{ + padding-top: 15px; + span{ + font-size: 14px; + margin-bottom: 15px; + color: var(--brand-text); + } + + .main_content{ + border: 1px solid transparent; + border-bottom-color: var(--brand-grey) !important; + margin-bottom: 15px; + h4{ + font-size: 22px; + font-weight: 600; + color: var(--brand-heading); + margin-bottom: 15px; + } + p{ + font-size: 16px; + margin-bottom: 15px; + color: var(--brand-text); + } + } + .auth{ + font-size: 16px; + margin-bottom: 15px; + color: var(--brand-text); + } + } + } + } + + +// Portfolio single style + +.portfolio_single{ + + .portfolio_wrapper{ + .p_img_wrapper{ + position: relative; + max-width: auto; + margin-bottom: 15px; + img{ + width: 100%; + border-radius: 5px; + } + .badge{ + position: absolute; + top: 15px; + right: 20px; + background-color: rgba(0, 0, 0, 0.169); + font-weight: 400; + text-transform: uppercase; + font-size: 12px; + padding: 7px 8px; + border-radius: 4px; + } + } + .p_content{ + padding-top: 15px; + span{ + font-size: 14px; + margin-bottom: 15px; + color: var(--brand-text); + } + + .main_content{ + border: 1px solid transparent; + border-bottom-color: var(--brand-grey) !important; + margin-bottom: 15px; + h4{ + font-size: 22px; + font-weight: 600; + color: var(--brand-heading); + margin-bottom: 15px; + } + p{ + font-size: 16px; + margin-bottom: 15px; + color: var(--brand-text); + } + } + .auth{ + font-size: 16px; + margin-bottom: 15px; + color: var(--brand-text); + } + } + } + + .project_info{ + padding-top: 40px; + .p_wrapp{ + margin-bottom: 30px; + .project_heading{ + font-size: 20px; + padding-bottom: 15px; + } + p{ + font-size: 16px; + color: var(--brand-text); + line-height: 2.0 + } + ul{ + padding-left: 0; + li{ + font-size: 16px; + color: var(--brand-text); + + margin-bottom: 10px; + } + } + } + } +} + + + + + + + + + + + + } +} \ No newline at end of file diff --git a/theme_upshift/static/src/scss/pages/home/_about.scss b/theme_upshift/static/src/scss/pages/home/_about.scss new file mode 100644 index 000000000..0bbb6092c --- /dev/null +++ b/theme_upshift/static/src/scss/pages/home/_about.scss @@ -0,0 +1,63 @@ +.home_about{ + padding-top: 80px; + padding-bottom: 80px; + margin-top: 40px; + @media(max-width:768px){ + padding-top: 40px; + + } + .wrapper{ + + .video_wrapper{ + max-width: 650px; + .video-js{ + width: 100%; + height: 370px; + border-radius: 5px; + } + } + + + .about_right{ + padding-left: 30px; + @media(max-width:768px){ + padding-top: 40px; + padding-left: 0; + } + .wave{ + margin-bottom: 20px; + width: 50px; + } + h3{ + font-size: 36px; + font-weight: 600; + padding-bottom: 15px; + } + p{ +color: var(--brand-text); +line-height: 1.6; + } + .results{ + display: flex; + + align-items: center; + padding-top: 15px; + +:nth-child(1){ + padding-right:50px; +} + + .result_numbers{ + h4{ + color: var(--up-primary); + font-size: 36px; + } + p{ + color: var(--color-black); + + } + } + } + } + } +} \ No newline at end of file diff --git a/theme_upshift/static/src/scss/pages/home/_home.scss b/theme_upshift/static/src/scss/pages/home/_home.scss new file mode 100644 index 000000000..3d74f2691 --- /dev/null +++ b/theme_upshift/static/src/scss/pages/home/_home.scss @@ -0,0 +1,5 @@ +@import 'about'; +@import 'service'; +@import 'process'; +@import 'testimonial'; +@import 'location'; \ No newline at end of file diff --git a/theme_upshift/static/src/scss/pages/home/_location.scss b/theme_upshift/static/src/scss/pages/home/_location.scss new file mode 100644 index 000000000..5ee8c5a44 --- /dev/null +++ b/theme_upshift/static/src/scss/pages/home/_location.scss @@ -0,0 +1,66 @@ +.locations_section { + padding-top: 80px; + padding-bottom: 80px; + #map1, #map2 { + height: 350px; + display: block; + border-radius: 8px; + } + + .wrapper{ + padding-top: 40px; + } + + .leaflet-control-attribution { + display: none !important; + } + + .location-card{ + width: 75%; + @media(max-width:992px){ + width: 100%; + } +margin: auto; + h4{ + font-size: 24px; + font-weight: 500; + padding-top: 20px; + color: var( --brand-heading); + } + p{ + font-size: 16px; + line-height: 1.5; + padding-top: 15px; + } + .contact-info{ + margin-top: 40px; + border: 1px solid; + border-color: transparent; + border-top-color: var(--brand-grey) !important; + border-bottom-color: var(--brand-grey); + padding: 30px 0px; + + li{ + display: flex; + align-items: center; + gap: 10px; + margin-bottom: 15px; + } + + .icon_wrapp{ + height: 30px; + width: 30px; + background-color: var(--up-primary); + border-radius: 50%; + display: flex; + justify-content: center; + align-items: center; + + svg{ + width: 20px; + } + } + } + } +} + diff --git a/theme_upshift/static/src/scss/pages/home/_process.scss b/theme_upshift/static/src/scss/pages/home/_process.scss new file mode 100644 index 000000000..b1f1408e1 --- /dev/null +++ b/theme_upshift/static/src/scss/pages/home/_process.scss @@ -0,0 +1,152 @@ +.process-section { + padding-top: 60px; + padding-bottom: 100px; + margin-bottom: 60px; + background-color: var(--up-primary); + + @media(max-width:992px) { + padding-top: 20px; + padding-bottom: 40px; + margin-bottom: 20px; + } + + .wrapper { + .process-grid { + + display: grid; + grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); + justify-content: center; + gap: 2rem; + + /* Equivalent to gap in flexbox */ + @media(max-width:992px) { + grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); + } + + .service-card { + background-color: white; + padding: 30px 40px; + border-radius: 5px; + box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; + + + .icon-bg-1 { + background-color: #87CEEB; + /* Soft Blue */ + } + + .icon-bg-2 { + background-color: #FF7F50; + /* Coral */ + } + + .icon-bg-3 { + background-color: #98FF98; + /* Mint Green */ + } + + .icon-bg-4 { + background-color: #FFD700; + /* Golden Yellow */ + } + + .icon-bg-5 { + background-color: #9370DB; + /* Light Purple */ + } + + .icon-bg-6 { + background-color: #FA8072; + /* Salmon Pink */ + } + + .icon-bg-7 { + background-color: #D3D3D3; + /* Light Gray */ + } + + .icon-bg-8 { + background-color: #FFA07A; + /* Soft Orange */ + } + + + + .service-icon { + height: 50px; + width: 50px; + border-radius: 50%; + margin-bottom: 30px; + + img { + width: 60px; + } + + } + + h3 { + font-size: 20px; + font-weight: 500; + padding-bottom: 10px; + } + + p { + font-size: 16px; + color: var(--black-color); + line-height: 1.4; + // padding-bottom: 15px; + } + + &:hover { + background-color: var(--brand-dark); + cursor: pointer; + + h3 { + color: var(--white-color); + } + + p { + color: var(--white-color); + } + + + + .icon-bg-1, + .icon-bg-2, + .icon-bg-3, + .icon-bg-4, + .icon-bg-5, + .icon-bg-6 { + background-color: white; + /* Soft Blue */ + } + + // .service-icon{ + // height: 70px; + // width: 70px; + // display: flex; + // justify-content: center; + // align-items: center; + // img{ + // width: 60px; + // margin: auto; + // } + + // } + + + + + + } + } + } + + .btn_wrapper { + width: 100%; + text-align: center; + padding-top: 50px; + } + } + +} \ No newline at end of file diff --git a/theme_upshift/static/src/scss/pages/home/_service.scss b/theme_upshift/static/src/scss/pages/home/_service.scss new file mode 100644 index 000000000..38323c871 --- /dev/null +++ b/theme_upshift/static/src/scss/pages/home/_service.scss @@ -0,0 +1,121 @@ +$background-color_1: #fff; +$background-color_2: #f7f7f7; + +.services-section { + padding-top: 60px; + margin-bottom: 60px; + + @media(max-width:992px){ + padding-top: 0px; + } +.wrapper{ + .services-grid{ + + display: grid; + grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); + justify-content: center; + gap: 2rem; + @media(max-width:992px){ + grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); + } + .service-card{ + background-color: var(--card-bg); + padding: 30px 40px; + border-radius: 5px; + + box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; + .icon-bg-1 { + background-color: #87CEEB; /* Soft Blue */ + } + + .icon-bg-2 { + background-color: #FF7F50; /* Coral */ + } + + .icon-bg-3 { + background-color: #98FF98; /* Mint Green */ + } + + .icon-bg-4 { + background-color: #FFD700; /* Golden Yellow */ + } + + .icon-bg-5 { + background-color: #9370DB; /* Light Purple */ + } + + .icon-bg-6 { + background-color: #FA8072; /* Salmon Pink */ + } + + .icon-bg-7 { + background-color: #D3D3D3; /* Light Gray */ + } + + .icon-bg-8 { + background-color: #FFA07A; /* Soft Orange */ + } + + + + .service-icon{ + height: 50px; + width: 50px; + border-radius: 50%; + margin-bottom: 30px; + img{ + width: 60px; + } + + } + h3{ + font-size: 24px; + font-weight: 500; + padding-bottom: 10px; + } + p{ + font-size: 16px; + color: var(--black-color); + line-height: 1.4; + // padding-bottom: 15px; + } + + &:hover{ + background-color: var(--brand-dark); + cursor: pointer; + h3{ + color: var(--white-color); + } + p{ + color: var(--white-color); + } + + + + .icon-bg-1,.icon-bg-2,.icon-bg-3,.icon-bg-4,.icon-bg-5,.icon-bg-6 { + background-color: white; /* Soft Blue */ + } + + .service-icon{ + height: 70px; + width: 70px; + display: flex; + justify-content: center; + align-items: center; + img{ + width: 60px; + margin: auto; + } + + } + + + + + + } + } + } +} + +} \ No newline at end of file diff --git a/theme_upshift/static/src/scss/pages/home/_testimonial.scss b/theme_upshift/static/src/scss/pages/home/_testimonial.scss new file mode 100644 index 000000000..c863dba83 --- /dev/null +++ b/theme_upshift/static/src/scss/pages/home/_testimonial.scss @@ -0,0 +1,70 @@ +.testimonials_section{ + padding: 80px 0px; + @media(max-width:992px) { + padding-bottom: 40px; + } + .slider_wrapper{ + background-color: var(--up-bg-section); + width: 100%; + border-radius: 5px; + padding: 40px 50px; + text-align: center; + padding-bottom: 100px; + .slider_img{ + max-width: 100px; + margin: auto; + margin-bottom: 20px; + img{ + width: 100%; + border-radius: 50%; + } + } + .testimonial_info{ + h6{ + color: var(--white-color); + font-size: 22px; + font-weight: 500; + padding-bottom: 15px; + line-height: 1.5; + } + p{ + color: var(--white-color); + font-size: 22px; + margin-bottom: 0; + } + span{ + color: var( --card-bg); + font-size: 20px; + font-weight: lighter; + + } + } + } + +} + +.owl-theme .owl-nav { + margin-top: -75px; + z-index: 9999; + position: relative; +} + + +.owl-carousel .owl-nav button.owl-prev, +.owl-carousel .owl-nav button.owl-next { + border: 1px solid; + border-color: var( --up-primary ); + color: var( --up-primary );; /* Arrow color */ + padding: 10px; + border-radius: 50%; /* Makes buttons circular */ + transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */ + height: 30px; + width: 30px; +} + +/* Change color on hover */ +.owl-carousel .owl-nav button.owl-prev:hover, +.owl-carousel .owl-nav button.owl-next:hover { + background-color: var( --up-primary ); /* Background color on hover */ + color: var(--white-color); /* Arrow color on hover */ +} \ No newline at end of file diff --git a/theme_upshift/static/src/scss/style.scss b/theme_upshift/static/src/scss/style.scss new file mode 100644 index 000000000..8fe26822e --- /dev/null +++ b/theme_upshift/static/src/scss/style.scss @@ -0,0 +1,20 @@ +// Font +// @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); + +@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap'); + + + +// Global + +@import 'normalize'; +@import 'variables'; + + +@import 'pages/pages'; + + + +@import 'components/components'; +@import 'layouts/layouts'; +@import 'common'; diff --git a/theme_upshift/static/src/video/dummy.mp4 b/theme_upshift/static/src/video/dummy.mp4 new file mode 100644 index 000000000..cd318d994 Binary files /dev/null and b/theme_upshift/static/src/video/dummy.mp4 differ diff --git a/theme_upshift/views/about.xml b/theme_upshift/views/about.xml new file mode 100644 index 000000000..c9136c059 --- /dev/null +++ b/theme_upshift/views/about.xml @@ -0,0 +1,387 @@ + + + + + \ No newline at end of file diff --git a/theme_upshift/views/contact_us.xml b/theme_upshift/views/contact_us.xml new file mode 100644 index 000000000..e295c3ccb --- /dev/null +++ b/theme_upshift/views/contact_us.xml @@ -0,0 +1,378 @@ + + + +