[ADD] theme 14.0
|
After Width: | Height: | Size: 161 KiB |
|
After Width: | Height: | Size: 97 KiB |
|
After Width: | Height: | Size: 104 KiB |
|
After Width: | Height: | Size: 247 KiB |
|
After Width: | Height: | Size: 149 KiB |
|
After Width: | Height: | Size: 263 KiB |
|
After Width: | Height: | Size: 385 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 162 KiB |
|
After Width: | Height: | Size: 71 KiB |
|
After Width: | Height: | Size: 133 KiB |
|
After Width: | Height: | Size: 179 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 148 KiB |
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 53 KiB |
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 140 KiB |
|
After Width: | Height: | Size: 120 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 148 KiB |
|
After Width: | Height: | Size: 137 KiB |
|
After Width: | Height: | Size: 191 KiB |
@@ -0,0 +1,39 @@
|
||||
odoo.define("theme_artists.tour.artists", function (require) {
|
||||
"use strict";
|
||||
|
||||
const core = require("web.core");
|
||||
const _t = core._t;
|
||||
const wTourUtils = require("website.tour_utils");
|
||||
var tour = require("web_tour.tour");
|
||||
|
||||
const snippets = [
|
||||
{
|
||||
id: 's_parallax',
|
||||
name: 'Parallax',
|
||||
},
|
||||
{
|
||||
id: 's_text_image',
|
||||
name: 'Text - Image',
|
||||
},
|
||||
{
|
||||
id: 's_three_columns',
|
||||
name: 'Columns',
|
||||
},
|
||||
{
|
||||
id: 's_call_to_action',
|
||||
name: 'Call to Action',
|
||||
},
|
||||
];
|
||||
|
||||
wTourUtils.registerThemeHomepageTour("artists_tour", [
|
||||
wTourUtils.dragNDrop(snippets[0], 'top'),
|
||||
wTourUtils.dragNDrop(snippets[1]),
|
||||
wTourUtils.clickOnText(snippets[1], 'h2'),
|
||||
wTourUtils.goBackToBlocks(),
|
||||
wTourUtils.dragNDrop(snippets[2]),
|
||||
wTourUtils.dragNDrop(snippets[3]),
|
||||
wTourUtils.clickOnSnippet(snippets[3]),
|
||||
wTourUtils.changeOption('minHeight', 'we-button-group.o_we_user_value_widget', _t('height')),
|
||||
wTourUtils.clickOnSave(),
|
||||
]);
|
||||
});
|
||||
@@ -0,0 +1,18 @@
|
||||
$s-banner-parallax-text-color: white;
|
||||
$s-banner-parallax-height: 600px;
|
||||
|
||||
@mixin s-banner-parallax-row-hook {
|
||||
.hero-bg:before {
|
||||
border-top: 0px solid rgba(0, 0, 0, 0);
|
||||
}
|
||||
.hero-bg:after {
|
||||
border-top: 0px solid rgba(0, 0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@mixin s-banner-parallax-hero-bg-hook {
|
||||
margin-bottom: 100px;
|
||||
@media screen and (max-width: 640px) {
|
||||
margin-top: 50px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
$s-products-carousel-carousel-control-color: rgba(0, 0, 0, 0);
|
||||
$s-products-carousel-carousel-height: 100vh;
|
||||
$s-products-carousel-indicators-position: 120px;
|
||||
$s-products-carousel-indicators-visible: visible;
|
||||
|
||||
@mixin s-products-carousel-hook {
|
||||
display: none;
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
$s-banner-3-carousel-height: 600px;
|
||||
$s-banner-3-indicators-visible: visible;
|
||||
$s-banner-3-padding: 30px;
|
||||
$s-banner-3-h1-size: 50px;
|
||||
$s-banner-3-h2-size: 30px;
|
||||
|
||||
@mixin s-banner-3-row-hook {
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
height: auto;
|
||||
border: none;
|
||||
width: 100%;
|
||||
img {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin s-banner-3-col-center-hook {
|
||||
text-align: center;
|
||||
height: auto;
|
||||
padding-bottom: 20px;
|
||||
h1, h2 {
|
||||
color: white;
|
||||
}
|
||||
.fa {
|
||||
transform: none;
|
||||
font-size: 18px;
|
||||
}
|
||||
@include media-breakpoint-down(sm) {
|
||||
width: 100%;
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin s-banner-3-carousel-control-hook {
|
||||
display: none;
|
||||
}
|
||||
@@ -0,0 +1,160 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// Palette
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$o-color-palettes: (
|
||||
(
|
||||
'o-color-1': #ab44ff,
|
||||
'o-color-2': #3a3a3a,
|
||||
'o-color-3': #e5e5e5,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #000000,
|
||||
|
||||
'o-cc5-text': 'o-color-3',
|
||||
|
||||
'menu': 5,
|
||||
),
|
||||
(
|
||||
'o-color-1': #1ad68f,
|
||||
'o-color-2': #2e2e2e,
|
||||
'o-color-3': #cfcfcf,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #000000,
|
||||
|
||||
'menu': 2,
|
||||
),
|
||||
(
|
||||
'o-color-1': #007882,
|
||||
'o-color-2': #052286,
|
||||
'o-color-3': #f9ede6,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #33302e,
|
||||
|
||||
'o-cc5-link': #48d9e5,
|
||||
|
||||
'footer': 1,
|
||||
'copyright': 1,
|
||||
),
|
||||
(
|
||||
'o-color-1': #0061df,
|
||||
'o-color-2': #1b1b1b,
|
||||
'o-color-3': #e8e6dc,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #000000,
|
||||
|
||||
'menu': 2,
|
||||
'footer': 2,
|
||||
),
|
||||
(
|
||||
'o-color-1': #f48847,
|
||||
'o-color-2': #282d30,
|
||||
'o-color-3': #e9ceb0,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #000000,
|
||||
|
||||
'footer': 3,
|
||||
),
|
||||
(
|
||||
'o-color-1': #95d2e5,
|
||||
'o-color-2': #454545,
|
||||
'o-color-3': #f6f4f2,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #000000,
|
||||
|
||||
'menu': 2,
|
||||
'footer': 2,
|
||||
),
|
||||
);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Fonts
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$o-theme-font-configs: (
|
||||
'Handlee': (
|
||||
'family': ('Handlee', cursive),
|
||||
'url': 'Handlee:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Gruppo': (
|
||||
'family': ('Gruppo', cursive),
|
||||
'url': 'Gruppo:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Droid Sans': (
|
||||
'family': ('Droid Sans', sans-serif),
|
||||
),
|
||||
'Bowlby One SC': (
|
||||
'family': ('Bowlby One SC', cursive),
|
||||
'url': 'Bowlby+One+SC:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Lobster': (
|
||||
'family': ('Lobster', cursive),
|
||||
'url': 'Lobster:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Nunito': (
|
||||
'family': ('Nunito', sans-serif),
|
||||
'url': 'Nunito:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Raleway': (
|
||||
'family': ('Raleway', sans-serif),
|
||||
'url': 'Raleway:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Source Sans Pro': (
|
||||
'family': ('Source Sans Pro', sans-serif),
|
||||
'url': 'Source+Sans+Pro:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Amatic SC': (
|
||||
'family': ('Amatic SC', cursive),
|
||||
'url': 'Amatic+SC:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Open Sans Condensed': (
|
||||
'family': ('Open Sans Condensed', sans-serif),
|
||||
'url': 'Open+Sans+Condensed:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Oswald': (
|
||||
'family': ('Oswald', sans-serif),
|
||||
'url': 'Oswald:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Roboto': (
|
||||
'family': ('Roboto', sans-serif),
|
||||
'url': 'Roboto:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Permanent Marker': (
|
||||
'family': ('Permanent Marker', cursive),
|
||||
'url': 'Permanent+Marker:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Pacifico': (
|
||||
'family': ('Pacifico', cursive),
|
||||
'url': 'Pacifico:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Playfair Display': (
|
||||
'family': ('Playfair Display', serif),
|
||||
'url': 'Playfair+Display:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Playfair Display SC': (
|
||||
'family': ('Playfair Display SC', serif),
|
||||
'url': 'Playfair+Display+SC:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Radley': (
|
||||
'family': ('Radley', serif),
|
||||
'url': 'Radley:300,300i,400,400i,700,700i',
|
||||
),
|
||||
);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Website customizations
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$o-website-values-palettes: (
|
||||
(
|
||||
'header-font-size': (13 / 16) * 1rem,
|
||||
'font': 'Droid Sans',
|
||||
'headings-font': 'Radley',
|
||||
'navbar-font': 'Radley',
|
||||
'buttons-font': 'Radley',
|
||||
'btn-ripple': true,
|
||||
'header-template': 'hamburger',
|
||||
'hamburger-type': 'off-canvas',
|
||||
'hamburger-position': 'left',
|
||||
'footer-template': 'centered',
|
||||
),
|
||||
);
|
||||