diff --git a/theme_trading/README.rst b/theme_trading/README.rst new file mode 100644 index 000000000..c12f71859 --- /dev/null +++ b/theme_trading/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Theme Trading +============= +* Design Web Pages with theme trading + +Installation +============ + - www.odoo.com/documentation/14.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) + +Credits +------- +Developer: (V16) Vivek, Contact: odoo@cybrosys.com + +Company +------- +* 'Cybrosys Techno Solutions `__ + +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_trading/__init__.py b/theme_trading/__init__.py new file mode 100644 index 000000000..459235748 --- /dev/null +++ b/theme_trading/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Vivek @ cybrosys,(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_trading/__manifest__.py b/theme_trading/__manifest__.py new file mode 100644 index 000000000..a3c2d00bc --- /dev/null +++ b/theme_trading/__manifest__.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Vivek @ cybrosys,(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 Trading', + 'version': '14.0.1.0.0', + 'category': 'Theme/Corporate', + 'summary': 'Theme Trading for Odoo Trading Website', + 'description': """ + Theme Trading is an attractive trading Website theme which comes with many + useful and stylish snippets + """, + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'images': [ + 'static/description/banner.png', + 'static/description/theme_screenshot.png', + ], + 'website': 'https://www.cybrosys.com', + 'depends': ['website', 'website_blog', 'website_form'], + 'data': [ + 'views/assets.xml', + 'views/trading_templates.xml', + 'views/investing_templates.xml', + 'views/footer.xml', + 'views/header.xml', + 'views/website_menus.xml', + 'views/contactus.xml', + 'views/snippets/feature_templates.xml', + 'views/snippets/community_templates.xml', + 'views/snippets/asset_classes_templates.xml', + 'views/snippets/banner_templates.xml', + 'views/snippets/aboutus_templates.xml', + 'views/snippets/faq_templates.xml', + 'views/snippets/testimonial_templates.xml', + 'views/snippets/snippet_templates.xml', + ], + 'license': 'LGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/theme_trading/controllers/__init__.py b/theme_trading/controllers/__init__.py new file mode 100644 index 000000000..18622ed58 --- /dev/null +++ b/theme_trading/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Vivek @ cybrosys,(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 website_investing diff --git a/theme_trading/controllers/website_investing.py b/theme_trading/controllers/website_investing.py new file mode 100644 index 000000000..e18ec1396 --- /dev/null +++ b/theme_trading/controllers/website_investing.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Vivek @ cybrosys,(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 + + +class WebsiteInvesting(http.Controller): + """ + Controller class for investing and trading page on trading theme website. + """ + + @http.route(['/investing_page'], type='http', auth="public", website=True) + def investing_page(self, **kw): + """ + HTTP route method that renders the investing page template for the trading theme on the website. + :param kw: keyword arguments + :return: HTTP response containing the rendered template + """ + return request.render("theme_trading.investing_page") + + @http.route(['/trading_page'], type='http', auth="public", website=True) + def trading_page(self, **kw): + """ + This method handles the request to the Trading website page and renders the + 'theme_trading.trading_page' template. + """ + return request.render("theme_trading.trading_page") diff --git a/theme_trading/doc/RELEASE_NOTES.md b/theme_trading/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..7e67b3671 --- /dev/null +++ b/theme_trading/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 16.08.2023 +#### Version 14.0.1.0.0 +#### ADD + +- Initial commit for Theme Trading diff --git a/theme_trading/static/description/banner.png b/theme_trading/static/description/banner.png new file mode 100644 index 000000000..76058ed46 Binary files /dev/null and b/theme_trading/static/description/banner.png differ diff --git a/theme_trading/static/description/icon.png b/theme_trading/static/description/icon.png new file mode 100644 index 000000000..024138e0f Binary files /dev/null and b/theme_trading/static/description/icon.png differ diff --git a/theme_trading/static/description/images/Cybrosys.png b/theme_trading/static/description/images/Cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/theme_trading/static/description/images/Cybrosys.png differ diff --git a/theme_trading/static/description/images/categories.jpg b/theme_trading/static/description/images/categories.jpg new file mode 100644 index 000000000..54b3ee4a0 Binary files /dev/null and b/theme_trading/static/description/images/categories.jpg differ diff --git a/theme_trading/static/description/images/contact.jpg b/theme_trading/static/description/images/contact.jpg new file mode 100644 index 000000000..8f04bd6c0 Binary files /dev/null and b/theme_trading/static/description/images/contact.jpg differ diff --git a/theme_trading/static/description/images/cybro-logo-oca-no-text.png b/theme_trading/static/description/images/cybro-logo-oca-no-text.png new file mode 100644 index 000000000..180d15dd6 Binary files /dev/null and b/theme_trading/static/description/images/cybro-logo-oca-no-text.png differ diff --git a/theme_trading/static/description/images/cybro-logo-oca.png b/theme_trading/static/description/images/cybro-logo-oca.png new file mode 100644 index 000000000..90e4c9cb9 Binary files /dev/null and b/theme_trading/static/description/images/cybro-logo-oca.png differ diff --git a/theme_trading/static/description/images/demo1.png b/theme_trading/static/description/images/demo1.png new file mode 100644 index 000000000..01f49b855 Binary files /dev/null and b/theme_trading/static/description/images/demo1.png differ diff --git a/theme_trading/static/description/images/demo2.png b/theme_trading/static/description/images/demo2.png new file mode 100644 index 000000000..6d3807ef5 Binary files /dev/null and b/theme_trading/static/description/images/demo2.png differ diff --git a/theme_trading/static/description/images/demo3.png b/theme_trading/static/description/images/demo3.png new file mode 100644 index 000000000..2312c471e Binary files /dev/null and b/theme_trading/static/description/images/demo3.png differ diff --git a/theme_trading/static/description/images/demo4.png b/theme_trading/static/description/images/demo4.png new file mode 100644 index 000000000..151b7567f Binary files /dev/null and b/theme_trading/static/description/images/demo4.png differ diff --git a/theme_trading/static/description/images/desktop.jpg b/theme_trading/static/description/images/desktop.jpg new file mode 100644 index 000000000..d393fc628 Binary files /dev/null and b/theme_trading/static/description/images/desktop.jpg differ diff --git a/theme_trading/static/description/images/home.jpg b/theme_trading/static/description/images/home.jpg new file mode 100644 index 000000000..bed9d0afb Binary files /dev/null and b/theme_trading/static/description/images/home.jpg differ diff --git a/theme_trading/static/description/images/mobile.jpg b/theme_trading/static/description/images/mobile.jpg new file mode 100644 index 000000000..ad6b3e599 Binary files /dev/null and b/theme_trading/static/description/images/mobile.jpg differ diff --git a/theme_trading/static/description/images/overview.jpg b/theme_trading/static/description/images/overview.jpg new file mode 100644 index 000000000..6103e8090 Binary files /dev/null and b/theme_trading/static/description/images/overview.jpg differ diff --git a/theme_trading/static/description/images/trading logo.png b/theme_trading/static/description/images/trading logo.png new file mode 100644 index 000000000..4858a2a84 Binary files /dev/null and b/theme_trading/static/description/images/trading logo.png differ diff --git a/theme_trading/static/description/index.html b/theme_trading/static/description/index.html new file mode 100644 index 000000000..408eec2dc --- /dev/null +++ b/theme_trading/static/description/index.html @@ -0,0 +1,216 @@ + +
+
+
+ Cybrosys Logo +
+
+
+
+
+ Theme Screenshot +
+
+

Theme Trading

+

+ Theme Trading is an attractive and unique front-end theme for a trading website. + Many custom designed snippets facilitates better user experience. Theme Trading provides separate pages + for trading and investing which can be modified by user according to their needs. +

+
+
+ + + + +
+
+

Desktop View

+

+ Attractive webpages with elegant desktop view. User-friendly and Modern looking theme makes your page + more Stylish and Beautiful. +

+
+
+ Theme Screenshot +
+
+
+
+ Theme Screenshot +
+
+

Mobile View

+

+ The webpages are Stylish, Attractive and Easy to use in mobile view also. +

+
+
+ + + + +
+ +
+
+
+ Theme Screenshot +
+
+

Home Page

+

+ Stylish Home page which is easily customizable. +

+
+
+
+ + + +
+
+
+ Theme Screenshot +
+
+

Contact Us page

+

+ User-friendly Contact Us page for solving customer queries and issues. +

+
+
+
+ +
+ + + + +
+
+ Theme Screenshot +
+
+

Overview

+

+ Theme Trading is a simple and elegant theme for your odoo trading website. It is easy to customize and + use. It comes with customizable snippets that can be dragged and dropped to make attractive webpages. + Simple and stylish header, footer and page banners. +

+
+
+ + + +
+
+
+

Demo Pages

+
+
+
+ +
+
+
+ +
Home Page
+
+
+
+ +
+
+ +
Trading Page
+
+
+
+ +
+
+ +
Investing Page
+
+
+
+
+ +
+
+
+ +
Contact Us Page
+
+
+
+ +
+
+ + + +
+
+

Get Help

+
+

If you have anything to share with us + based + on + your use of this module, please let us know. We are ready to offer our support.

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

A Quality Theme From

+
+
+ +
+
+ +
diff --git a/theme_trading/static/description/theme_screenshot.png b/theme_trading/static/description/theme_screenshot.png new file mode 100644 index 000000000..ee61788f9 Binary files /dev/null and b/theme_trading/static/description/theme_screenshot.png differ diff --git a/theme_trading/static/src/css/style.css b/theme_trading/static/src/css/style.css new file mode 100644 index 000000000..362c8604a --- /dev/null +++ b/theme_trading/static/src/css/style.css @@ -0,0 +1,671 @@ +/* +@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,500&family=Montserrat&display=swap"); +*/ +/*! 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 */ +} + +.s_website_form_submit{ + display: contents; +} + +/* 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; +} + +.links { + display: grid; +} + +.logo { + display: contents !important; +} + +.collapse.navbar-collapse.mean-menu { + margin-left: 30px; +} + +.footer_container{ + margin-top: 30px; +} + +.col-lg-4.col-md-6 { + margin-left: auto; +} + +.social_icons{ + list-style-type: none; + display:flex; +} + +a.navbar-brand { + margin-left: -20px; +} + +.apps { + margin-top: 23px; +} + +li { + min-width: 31px; +} + +.footer_bottom { + background-color: black; +} + +.bottom_left { + margin-top: 8px; +} + +.footer-social { + margin-top: 8px; + margin-left: 370px; +} + +.homepage_invite { + font-size: 30px; + margin-top: 100px; +} + +a.btn.btn-primary.btn-lg { + background-color: chocolate; +} + +p#start_investing { + display: table-cell; +} + +.col-lg-4.col-md-6 { + margin-right: -74px; +} + +::marker { + color: white; +} + +a.dropdown-toggle.nav-link.font-weight-bold { + display: contents; +} + +/*header*/ +nav.navbar.navbar-expand-md.navbar-light { + background-color: white; +} + +.main-nav { + background: white; +} + + +/*footer*/ + +section.footer { + background-color: black; +} + +.container.footer_container { + background-color: black; +} + +footer#bottom { + background-color: black; +} + +a.navbar-brand.waves-effect { + font-size: 25px; +} + +h4.site_pages { + color: #57c1c6; +} + +a.footer_links { + color: white !important; +} + +.col-lg-2.offset-lg-1.offset-md-2.col-md-4 { + margin-left: 200px; + margin-top:20px; +} + +/*snippets*/ + +.container-fluid.banner { + min-height: 800px; +} + +.col-7.col-sm-9.col-md-9 { + margin-top: 250px; + margin-left: 150px; + +} + +a.btn.btn-primary.mb-2.o_default_snippet_text { + background: chocolate; +} + + +.row.align-items-center.community { + background-color: azure; + border: solid 1px gainsboro; + border-radius: 75px; + padding: 10px; +} + +.join_community_text{ + font-size:20px; +} + +img.img.img-fluid.mx-auto.community_image { + border-radius: 45px; +} + + +.container.asset_class_container { + min-height: 654px; + color: white; + padding-top:25px; +} + + +ul#pills-tab { + margin: 0 auto; + display: flex; + justify-content: center; + font-size: 20px; +} + +.asset_image { + opacity: 0.8; + border-radius: 89px; + max-height: 375px; +} + +p.tab_text.o_default_snippet_text { + font-size: 20px; + margin-bottom: 40px; + color: white; +} + +.counter-area { + display: flex; + max-width: 70%; + margin: 0 auto; + justify-content: center; + margin-top: -6%; + color: white; +} + +.counter-wrap{ + background-color: black; +} + +.counter-item { + display:grid; + min-width: 175px; + text-align: center; + padding: 30px; +} + +.counter_cell{ + min-height: 110px; + display: flex; + margin-top: 20px; + margin-bottom: 10px; + padding-left: 30px; + padding-right: 30px; +} + +h3.counter-odometer{ + margin:auto; +} + +.counter-text{ + margin:auto; +} + +section.aboutus.oe_img_bg.o_bg_img_center.o_colored_level { + color:black !important; + min-height:500px; +} + +section.aboutus.o_colored_level { + padding: 30px; +} + +a.card-header.faq_text.collapsed { + color: darkblue; +} + +a.card-header.faq_text.collapsed:hover { + color: black; + background-color: lavender; +} + +.card.bg-white { + margin: 12px; +} + +.card.text-bg-white.h-100 { + max-width: 302px; + max-height: 400px; + margin: auto; +} + +span.fa.fa-chevron-right.fa-2x.text-white { + color: #3acdcd !important; +} + +span.fa.fa-chevron-left.fa-2x.text-white { + color: #3acdcd !important; +} + +/*trading_page*/ + +.container-fluid.banner_default { + background-size:1700px; + min-height: 1000px; +} + +section.s_title.parallax.s_parallax_is_fixed.bg-black-50.pt24.pb24 { + min-height: 800px; +} + +.btn-block { + display: initial; +} + +.container-fluid.banner_default { + background-size: 2000px; +} + +section.s_image_gallery.o_slideshow.s_image_gallery_show_indicators.s_image_gallery_indicators_rounded.pt24.o_colored_level { + margin-bottom: 100px; +} + +.trading { + background-color: chocolate; +} + +@media screen and (max-width: 800px) { + + .container-fluid.banner_default { + background-size: 1491px; +} + .col-7.col-sm-9.col-md-9.investing_page_text{ + margin-left: 60px; +} + +.col-lg-2.offset-lg-1.offset-md-2.col-md-4 { + margin-left: 0px; +} + +.col-lg-4.col-md-6 { + margin-left: 0px; + margin-top: 35px; + margin-bottom: 20px; +} + +.container-fluid.banner { + background-size: 656px 802px; +} + +.col-7.col-sm-9.col-md-9 { + margin-top: 250px; + margin-left: 62px; +} + +.btn-block { + display: block; +} + +.counter-area { + max-width:100% !important; +} + +div#counter_row{ + margin-left: -51px; +} + +span.fa.fa-chevron-right.fa-2x.text-white { + margin-left: 70px; +} + +.footer-social { + margin-top: 28px; + margin-left: -39px; +} +} diff --git a/theme_trading/static/src/images/404/404.png b/theme_trading/static/src/images/404/404.png new file mode 100644 index 000000000..d0b1152be Binary files /dev/null and b/theme_trading/static/src/images/404/404.png differ diff --git a/theme_trading/static/src/images/aboutus.jpg b/theme_trading/static/src/images/aboutus.jpg new file mode 100644 index 000000000..9e2ecec23 Binary files /dev/null and b/theme_trading/static/src/images/aboutus.jpg differ diff --git a/theme_trading/static/src/images/apps/apple-app-store.png b/theme_trading/static/src/images/apps/apple-app-store.png new file mode 100644 index 000000000..494fddcfb Binary files /dev/null and b/theme_trading/static/src/images/apps/apple-app-store.png differ diff --git a/theme_trading/static/src/images/apps/google-play-store.png b/theme_trading/static/src/images/apps/google-play-store.png new file mode 100644 index 000000000..b75bea756 Binary files /dev/null and b/theme_trading/static/src/images/apps/google-play-store.png differ diff --git a/theme_trading/static/src/images/banner/hero.jpg b/theme_trading/static/src/images/banner/hero.jpg new file mode 100644 index 000000000..7e9a0f02c Binary files /dev/null and b/theme_trading/static/src/images/banner/hero.jpg differ diff --git a/theme_trading/static/src/images/blog/post-1.jpg b/theme_trading/static/src/images/blog/post-1.jpg new file mode 100644 index 000000000..475f9be9e Binary files /dev/null and b/theme_trading/static/src/images/blog/post-1.jpg differ diff --git a/theme_trading/static/src/images/blog/post-2.jpg b/theme_trading/static/src/images/blog/post-2.jpg new file mode 100644 index 000000000..987b10bd4 Binary files /dev/null and b/theme_trading/static/src/images/blog/post-2.jpg differ diff --git a/theme_trading/static/src/images/blog/post-3.jpg b/theme_trading/static/src/images/blog/post-3.jpg new file mode 100644 index 000000000..96a520c4e Binary files /dev/null and b/theme_trading/static/src/images/blog/post-3.jpg differ diff --git a/theme_trading/static/src/images/blog/post-4.jpg b/theme_trading/static/src/images/blog/post-4.jpg new file mode 100644 index 000000000..4e399c044 Binary files /dev/null and b/theme_trading/static/src/images/blog/post-4.jpg differ diff --git a/theme_trading/static/src/images/blog/post-5.jpg b/theme_trading/static/src/images/blog/post-5.jpg new file mode 100644 index 000000000..5845dbd25 Binary files /dev/null and b/theme_trading/static/src/images/blog/post-5.jpg differ diff --git a/theme_trading/static/src/images/blog/video-icon.png b/theme_trading/static/src/images/blog/video-icon.png new file mode 100644 index 000000000..394f39def Binary files /dev/null and b/theme_trading/static/src/images/blog/video-icon.png differ diff --git a/theme_trading/static/src/images/categories/c1 (1).jpg b/theme_trading/static/src/images/categories/c1 (1).jpg new file mode 100644 index 000000000..35e1f5a00 Binary files /dev/null and b/theme_trading/static/src/images/categories/c1 (1).jpg differ diff --git a/theme_trading/static/src/images/categories/c1 (2).jpg b/theme_trading/static/src/images/categories/c1 (2).jpg new file mode 100644 index 000000000..2e170f99a Binary files /dev/null and b/theme_trading/static/src/images/categories/c1 (2).jpg differ diff --git a/theme_trading/static/src/images/categories/c1 (3).jpg b/theme_trading/static/src/images/categories/c1 (3).jpg new file mode 100644 index 000000000..ef4a8e373 Binary files /dev/null and b/theme_trading/static/src/images/categories/c1 (3).jpg differ diff --git a/theme_trading/static/src/images/categories/c1 (4).jpg b/theme_trading/static/src/images/categories/c1 (4).jpg new file mode 100644 index 000000000..5293382e7 Binary files /dev/null and b/theme_trading/static/src/images/categories/c1 (4).jpg differ diff --git a/theme_trading/static/src/images/categories/c1 (5).jpg b/theme_trading/static/src/images/categories/c1 (5).jpg new file mode 100644 index 000000000..10053e737 Binary files /dev/null and b/theme_trading/static/src/images/categories/c1 (5).jpg differ diff --git a/theme_trading/static/src/images/categories/c1 (6).jpg b/theme_trading/static/src/images/categories/c1 (6).jpg new file mode 100644 index 000000000..98fbe1c06 Binary files /dev/null and b/theme_trading/static/src/images/categories/c1 (6).jpg differ diff --git a/theme_trading/static/src/images/categories/c1 (7).jpg b/theme_trading/static/src/images/categories/c1 (7).jpg new file mode 100644 index 000000000..ecb61ac5f Binary files /dev/null and b/theme_trading/static/src/images/categories/c1 (7).jpg differ diff --git a/theme_trading/static/src/images/categories/c1 (8).jpg b/theme_trading/static/src/images/categories/c1 (8).jpg new file mode 100644 index 000000000..20b3e6c85 Binary files /dev/null and b/theme_trading/static/src/images/categories/c1 (8).jpg differ diff --git a/theme_trading/static/src/images/contactus/contactus_banner.jpg b/theme_trading/static/src/images/contactus/contactus_banner.jpg new file mode 100644 index 000000000..a798569ee Binary files /dev/null and b/theme_trading/static/src/images/contactus/contactus_banner.jpg differ diff --git a/theme_trading/static/src/images/crypto.jpg b/theme_trading/static/src/images/crypto.jpg new file mode 100644 index 000000000..5f85ff58e Binary files /dev/null and b/theme_trading/static/src/images/crypto.jpg differ diff --git a/theme_trading/static/src/images/cummunity.jpg b/theme_trading/static/src/images/cummunity.jpg new file mode 100644 index 000000000..b98d0f046 Binary files /dev/null and b/theme_trading/static/src/images/cummunity.jpg differ diff --git a/theme_trading/static/src/images/etf.jpg b/theme_trading/static/src/images/etf.jpg new file mode 100644 index 000000000..7727c9263 Binary files /dev/null and b/theme_trading/static/src/images/etf.jpg differ diff --git a/theme_trading/static/src/images/footer/phone-icon.png b/theme_trading/static/src/images/footer/phone-icon.png new file mode 100644 index 000000000..21f828fe8 Binary files /dev/null and b/theme_trading/static/src/images/footer/phone-icon.png differ diff --git a/theme_trading/static/src/images/investing.jpg b/theme_trading/static/src/images/investing.jpg new file mode 100644 index 000000000..a7ec41353 Binary files /dev/null and b/theme_trading/static/src/images/investing.jpg differ diff --git a/theme_trading/static/src/images/logo.png b/theme_trading/static/src/images/logo.png new file mode 100644 index 000000000..4858a2a84 Binary files /dev/null and b/theme_trading/static/src/images/logo.png differ diff --git a/theme_trading/static/src/images/snippets/about_us_block.jpg b/theme_trading/static/src/images/snippets/about_us_block.jpg new file mode 100644 index 000000000..a27ff04da Binary files /dev/null and b/theme_trading/static/src/images/snippets/about_us_block.jpg differ diff --git a/theme_trading/static/src/images/snippets/banner_block.jpg b/theme_trading/static/src/images/snippets/banner_block.jpg new file mode 100644 index 000000000..22cf5f49b Binary files /dev/null and b/theme_trading/static/src/images/snippets/banner_block.jpg differ diff --git a/theme_trading/static/src/images/snippets/categories_block.jpg b/theme_trading/static/src/images/snippets/categories_block.jpg new file mode 100644 index 000000000..b756f548b Binary files /dev/null and b/theme_trading/static/src/images/snippets/categories_block.jpg differ diff --git a/theme_trading/static/src/images/snippets/counter_block.jpg b/theme_trading/static/src/images/snippets/counter_block.jpg new file mode 100644 index 000000000..5d47cc118 Binary files /dev/null and b/theme_trading/static/src/images/snippets/counter_block.jpg differ diff --git a/theme_trading/static/src/images/snippets/listing_block.jpg b/theme_trading/static/src/images/snippets/listing_block.jpg new file mode 100644 index 000000000..294f52a34 Binary files /dev/null and b/theme_trading/static/src/images/snippets/listing_block.jpg differ diff --git a/theme_trading/static/src/images/snippets/packages_block.jpg b/theme_trading/static/src/images/snippets/packages_block.jpg new file mode 100644 index 000000000..32bcdfae6 Binary files /dev/null and b/theme_trading/static/src/images/snippets/packages_block.jpg differ diff --git a/theme_trading/static/src/images/snippets/search_bar_block.jpg b/theme_trading/static/src/images/snippets/search_bar_block.jpg new file mode 100644 index 000000000..a5aca6ce4 Binary files /dev/null and b/theme_trading/static/src/images/snippets/search_bar_block.jpg differ diff --git a/theme_trading/static/src/images/snippets/sub_header_block.jpg b/theme_trading/static/src/images/snippets/sub_header_block.jpg new file mode 100644 index 000000000..e30a1947e Binary files /dev/null and b/theme_trading/static/src/images/snippets/sub_header_block.jpg differ diff --git a/theme_trading/static/src/images/snippets/team_members_block.jpg b/theme_trading/static/src/images/snippets/team_members_block.jpg new file mode 100644 index 000000000..02227edc2 Binary files /dev/null and b/theme_trading/static/src/images/snippets/team_members_block.jpg differ diff --git a/theme_trading/static/src/images/snippets/trending-products.jpg b/theme_trading/static/src/images/snippets/trending-products.jpg new file mode 100644 index 000000000..531184698 Binary files /dev/null and b/theme_trading/static/src/images/snippets/trending-products.jpg differ diff --git a/theme_trading/static/src/images/snippets_thumbs/aboutus.jpg b/theme_trading/static/src/images/snippets_thumbs/aboutus.jpg new file mode 100644 index 000000000..2136a68a8 Binary files /dev/null and b/theme_trading/static/src/images/snippets_thumbs/aboutus.jpg differ diff --git a/theme_trading/static/src/images/snippets_thumbs/assets.jpg b/theme_trading/static/src/images/snippets_thumbs/assets.jpg new file mode 100644 index 000000000..3fbb53255 Binary files /dev/null and b/theme_trading/static/src/images/snippets_thumbs/assets.jpg differ diff --git a/theme_trading/static/src/images/snippets_thumbs/banner.jpg b/theme_trading/static/src/images/snippets_thumbs/banner.jpg new file mode 100644 index 000000000..dc69953b9 Binary files /dev/null and b/theme_trading/static/src/images/snippets_thumbs/banner.jpg differ diff --git a/theme_trading/static/src/images/snippets_thumbs/community.jpg b/theme_trading/static/src/images/snippets_thumbs/community.jpg new file mode 100644 index 000000000..08ffd4da6 Binary files /dev/null and b/theme_trading/static/src/images/snippets_thumbs/community.jpg differ diff --git a/theme_trading/static/src/images/snippets_thumbs/faq.jpg b/theme_trading/static/src/images/snippets_thumbs/faq.jpg new file mode 100644 index 000000000..8f5c354e5 Binary files /dev/null and b/theme_trading/static/src/images/snippets_thumbs/faq.jpg differ diff --git a/theme_trading/static/src/images/snippets_thumbs/features.jpg b/theme_trading/static/src/images/snippets_thumbs/features.jpg new file mode 100644 index 000000000..43152b606 Binary files /dev/null and b/theme_trading/static/src/images/snippets_thumbs/features.jpg differ diff --git a/theme_trading/static/src/images/snippets_thumbs/testimonial.jpg b/theme_trading/static/src/images/snippets_thumbs/testimonial.jpg new file mode 100644 index 000000000..016313ec1 Binary files /dev/null and b/theme_trading/static/src/images/snippets_thumbs/testimonial.jpg differ diff --git a/theme_trading/static/src/images/stock.jpg b/theme_trading/static/src/images/stock.jpg new file mode 100644 index 000000000..3df723b28 Binary files /dev/null and b/theme_trading/static/src/images/stock.jpg differ diff --git a/theme_trading/static/src/images/tab_background.jpg b/theme_trading/static/src/images/tab_background.jpg new file mode 100644 index 000000000..d3faea00b Binary files /dev/null and b/theme_trading/static/src/images/tab_background.jpg differ diff --git a/theme_trading/static/src/images/testimonial/michael.jpg b/theme_trading/static/src/images/testimonial/michael.jpg new file mode 100644 index 000000000..192f8c16e Binary files /dev/null and b/theme_trading/static/src/images/testimonial/michael.jpg differ diff --git a/theme_trading/static/src/images/testimonial/rachel.jpg b/theme_trading/static/src/images/testimonial/rachel.jpg new file mode 100644 index 000000000..a5b86d8c2 Binary files /dev/null and b/theme_trading/static/src/images/testimonial/rachel.jpg differ diff --git a/theme_trading/static/src/images/testimonial/stella.jpg b/theme_trading/static/src/images/testimonial/stella.jpg new file mode 100644 index 000000000..3debbaefb Binary files /dev/null and b/theme_trading/static/src/images/testimonial/stella.jpg differ diff --git a/theme_trading/static/src/images/trading.jpg b/theme_trading/static/src/images/trading.jpg new file mode 100644 index 000000000..fa61bb36b Binary files /dev/null and b/theme_trading/static/src/images/trading.jpg differ diff --git a/theme_trading/static/src/images/trading_home.jpg b/theme_trading/static/src/images/trading_home.jpg new file mode 100644 index 000000000..695d35d40 Binary files /dev/null and b/theme_trading/static/src/images/trading_home.jpg differ diff --git a/theme_trading/views/assets.xml b/theme_trading/views/assets.xml new file mode 100644 index 000000000..910bbd864 --- /dev/null +++ b/theme_trading/views/assets.xml @@ -0,0 +1,10 @@ + + + + + diff --git a/theme_trading/views/contactus.xml b/theme_trading/views/contactus.xml new file mode 100644 index 000000000..aa5c6081c --- /dev/null +++ b/theme_trading/views/contactus.xml @@ -0,0 +1,27 @@ + + + + + + + diff --git a/theme_trading/views/footer.xml b/theme_trading/views/footer.xml new file mode 100644 index 000000000..51a541a77 --- /dev/null +++ b/theme_trading/views/footer.xml @@ -0,0 +1,143 @@ + + + + + diff --git a/theme_trading/views/header.xml b/theme_trading/views/header.xml new file mode 100644 index 000000000..ac5aeda34 --- /dev/null +++ b/theme_trading/views/header.xml @@ -0,0 +1,67 @@ + + + + + diff --git a/theme_trading/views/investing_templates.xml b/theme_trading/views/investing_templates.xml new file mode 100644 index 000000000..9500bbe80 --- /dev/null +++ b/theme_trading/views/investing_templates.xml @@ -0,0 +1,29 @@ + + + + + diff --git a/theme_trading/views/snippets/aboutus_templates.xml b/theme_trading/views/snippets/aboutus_templates.xml new file mode 100644 index 000000000..1de795fac --- /dev/null +++ b/theme_trading/views/snippets/aboutus_templates.xml @@ -0,0 +1,43 @@ + + + + + diff --git a/theme_trading/views/snippets/asset_classes_templates.xml b/theme_trading/views/snippets/asset_classes_templates.xml new file mode 100644 index 000000000..7d9f6c947 --- /dev/null +++ b/theme_trading/views/snippets/asset_classes_templates.xml @@ -0,0 +1,142 @@ + + + + + diff --git a/theme_trading/views/snippets/banner_templates.xml b/theme_trading/views/snippets/banner_templates.xml new file mode 100644 index 000000000..71d311c00 --- /dev/null +++ b/theme_trading/views/snippets/banner_templates.xml @@ -0,0 +1,76 @@ + + + + + diff --git a/theme_trading/views/snippets/community_templates.xml b/theme_trading/views/snippets/community_templates.xml new file mode 100644 index 000000000..46e362989 --- /dev/null +++ b/theme_trading/views/snippets/community_templates.xml @@ -0,0 +1,32 @@ + + + + + diff --git a/theme_trading/views/snippets/faq_templates.xml b/theme_trading/views/snippets/faq_templates.xml new file mode 100644 index 000000000..1ed181568 --- /dev/null +++ b/theme_trading/views/snippets/faq_templates.xml @@ -0,0 +1,112 @@ + + + + + diff --git a/theme_trading/views/snippets/feature_templates.xml b/theme_trading/views/snippets/feature_templates.xml new file mode 100644 index 000000000..03bbca6c8 --- /dev/null +++ b/theme_trading/views/snippets/feature_templates.xml @@ -0,0 +1,63 @@ + + + + + diff --git a/theme_trading/views/snippets/snippet_templates.xml b/theme_trading/views/snippets/snippet_templates.xml new file mode 100644 index 000000000..c148e2b66 --- /dev/null +++ b/theme_trading/views/snippets/snippet_templates.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/theme_trading/views/snippets/testimonial_templates.xml b/theme_trading/views/snippets/testimonial_templates.xml new file mode 100644 index 000000000..15cbd4dc1 --- /dev/null +++ b/theme_trading/views/snippets/testimonial_templates.xml @@ -0,0 +1,86 @@ + + + + + diff --git a/theme_trading/views/trading_templates.xml b/theme_trading/views/trading_templates.xml new file mode 100644 index 000000000..5365b747e --- /dev/null +++ b/theme_trading/views/trading_templates.xml @@ -0,0 +1,27 @@ + + + + + diff --git a/theme_trading/views/website_menus.xml b/theme_trading/views/website_menus.xml new file mode 100644 index 000000000..f3e48c10e --- /dev/null +++ b/theme_trading/views/website_menus.xml @@ -0,0 +1,19 @@ + + + + + Trading + /trading_page + + 15 + + + + + Investing + /investing_page + + 16 + +