[ADD] theme 14.0
|
After Width: | Height: | Size: 400 KiB |
|
After Width: | Height: | Size: 165 KiB |
|
After Width: | Height: | Size: 208 KiB |
|
After Width: | Height: | Size: 152 KiB |
|
After Width: | Height: | Size: 226 KiB |
|
After Width: | Height: | Size: 169 KiB |
|
After Width: | Height: | Size: 81 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 198 KiB |
|
After Width: | Height: | Size: 121 KiB |
|
After Width: | Height: | Size: 158 KiB |
|
After Width: | Height: | Size: 158 KiB |
|
After Width: | Height: | Size: 192 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 151 KiB |
|
After Width: | Height: | Size: 106 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 56 KiB |
|
After Width: | Height: | Size: 115 KiB |
|
After Width: | Height: | Size: 119 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
|
After Width: | Height: | Size: 8.7 KiB |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 187 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 161 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,48 @@
|
||||
odoo.define("theme_loftspace.tour.loftspace", function (require) {
|
||||
"use strict";
|
||||
|
||||
const wTourUtils = require("website.tour_utils");
|
||||
var tour = require("web_tour.tour");
|
||||
|
||||
const snippets = [
|
||||
{
|
||||
id: 's_cover',
|
||||
name: 'Cover',
|
||||
},
|
||||
{
|
||||
id: 's_text_image',
|
||||
name: 'Text - Image',
|
||||
},
|
||||
{
|
||||
id: 's_title',
|
||||
name: 'Title',
|
||||
},
|
||||
{
|
||||
id: 's_picture',
|
||||
name: 'Picture',
|
||||
},
|
||||
{
|
||||
id: 's_three_columns',
|
||||
name: 'Columns',
|
||||
},
|
||||
{
|
||||
id: 's_call_to_action',
|
||||
name: 'Call to Action',
|
||||
},
|
||||
];
|
||||
|
||||
wTourUtils.registerThemeHomepageTour("loftspace_tour", [
|
||||
wTourUtils.dragNDrop(snippets[0]),
|
||||
wTourUtils.clickOnText(snippets[0], 'h1'),
|
||||
wTourUtils.goBackToBlocks(),
|
||||
wTourUtils.dragNDrop(snippets[1]),
|
||||
wTourUtils.dragNDrop(snippets[2]),
|
||||
wTourUtils.dragNDrop(snippets[3]),
|
||||
wTourUtils.dragNDrop(snippets[4]),
|
||||
wTourUtils.dragNDrop(snippets[5]),
|
||||
wTourUtils.clickOnSnippet(snippets[5]),
|
||||
wTourUtils.changeBackgroundColor(),
|
||||
wTourUtils.selectColorPalette(),
|
||||
wTourUtils.clickOnSave(),
|
||||
]);
|
||||
});
|
||||
@@ -0,0 +1,53 @@
|
||||
$s-banner-parallax-height: 100vh;
|
||||
$s-banner-parallax-padding: 0px;
|
||||
$s-banner-parallax-img-height: 350px;
|
||||
$s-banner-parallax-text-shadow: none;
|
||||
$s-banner-parallax-text-color: auto;
|
||||
$s-banner-parallax-bg-position: none !important;
|
||||
$s-banner-parallax-h1-size: 50px;
|
||||
|
||||
@mixin s-banner-parallax-hero-bg-hook {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
};
|
||||
@mixin s-banner-parallax-row-hook {
|
||||
vertical-align: top;
|
||||
padding: 0;
|
||||
.hero-bg:before {
|
||||
content: "";
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
border-top: 80vh solid rgba(0, 0, 0, 0);
|
||||
border-bottom: 0px solid rgba(0, 0, 0, 0);
|
||||
border-left: 50vw solid o-color('gamma');
|
||||
position: absolute;
|
||||
bottom: -85vh;
|
||||
left: -2px;
|
||||
opacity: 0.8;
|
||||
@include media-breakpoint-down(sm) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.hero-bg:after {
|
||||
content: "";
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
border-top: 80vh solid rgba(0, 0, 0, 0);
|
||||
border-bottom: 0px solid rgba(0, 0, 0, 0);
|
||||
border-right: 50vw solid o-color('gamma');
|
||||
position: absolute;
|
||||
bottom: -85vh;
|
||||
right: -2px;
|
||||
opacity: 0.8;
|
||||
@include media-breakpoint-down(sm) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
};
|
||||
@mixin s-banner-parallax-height-hook {
|
||||
@include media-breakpoint-down(md) {
|
||||
height: 100vh !important;
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,13 @@
|
||||
$s-features-carousel-border-width: 0;
|
||||
$s-features-carousel-indicators-visible: visible;
|
||||
@mixin s-features-carousel-inner-hook {
|
||||
.carousel-inner .row {
|
||||
margin: 40px 70px;
|
||||
@include media-breakpoint-down(sm) {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@mixin s-features-carousel-mask-hook {
|
||||
border: 1px solid gray('200');
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
$s-products-carousel-carousel-height: 100vh;
|
||||
$s-products-carousel-indicators-position: 120px;
|
||||
$s-products-carousel-indicators-visible: visible;
|
||||
$s-products-carousel-hero-bg-padding: 0;
|
||||
@@ -0,0 +1,9 @@
|
||||
// Shadows
|
||||
|
||||
$box-shadow-sm: 0 0 .3125rem rgba(0,0,0,.25) !default;
|
||||
$box-shadow: 0 0 .3125rem rgba(0,0,0,.25) !default;
|
||||
$box-shadow-lg: 0 0 .3125rem rgba(0,0,0,.25) !default;
|
||||
|
||||
// Breadcrumbs
|
||||
|
||||
$breadcrumb-bg: o-color('white') !default;
|
||||
@@ -0,0 +1,61 @@
|
||||
$s-banner-3-carosel-control-color: rgba(0, 0, 0, 0);
|
||||
$s-banner-3-padding: 15px;
|
||||
$s-banner-3-fa-color: o-color('alpha');
|
||||
$s-banner-3-carousel-height: 100vh;
|
||||
$s-banner-3-text-shadow: none;
|
||||
$s-banner-3-hero-bg-color: #000;
|
||||
$s-banner-3-indicators-visible: visible;
|
||||
@mixin s-banner-3-row-hook {
|
||||
background-color: o-color('alpha');
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
}
|
||||
@mixin s-banner-3-col-center-hook {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
@mixin s-banner-3-carousel-control-hook {
|
||||
display: none;
|
||||
}
|
||||
|
||||
$s-big-icon-circle-color: o-color('epsilon');
|
||||
$s-big-icon-circle-icon-size: 150px;
|
||||
@mixin s-big-icon-circle-height-hook {
|
||||
height: 100vh;
|
||||
padding-top: 0;
|
||||
@include media-breakpoint-down(lg) {
|
||||
height: 100%;
|
||||
}
|
||||
.row {
|
||||
height: 100vh;
|
||||
@include media-breakpoint-down(lg) {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.col-lg-12 {
|
||||
height: 35%;
|
||||
padding-top: 10%;
|
||||
}
|
||||
}
|
||||
@mixin s-big-icon-circle-fa-hook {
|
||||
height: 100px;
|
||||
line-height: 70px;
|
||||
@include media-breakpoint-down(lg) {
|
||||
height: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
$s-big-picture-text-padding: 0;
|
||||
$s-big-picture-text-align: center;
|
||||
@mixin s-big-picture-text-hero-hook {
|
||||
border-bottom: 1px solid o-color('epsilon');
|
||||
}
|
||||
|
||||
$s-text-big-picture-padding: 0;
|
||||
$s-text-big-picture-text-align: center;
|
||||
@mixin s-text-big-picture-hero-hook {
|
||||
border-bottom: 1px solid o-color('epsilon');
|
||||
margin: 0 20%;
|
||||
}
|
||||
|
||||
$s-timeline-company-color: $-gray-700;
|
||||
@@ -0,0 +1,219 @@
|
||||
|
||||
// Backgrounds
|
||||
$bg-img-01: url("/web/image/theme_common.image_content_11");
|
||||
$bg-img-02: url("/web/image/theme_common.image_content_09");
|
||||
$bg-img-03: url("/web/image/theme_common.image_content_10");
|
||||
$bg-img-04: url("/web/image/theme_common.image_content_12");
|
||||
$bg-img-05: url("/web/image/theme_common.image_content_02");
|
||||
$bg-img-06: url("/web/image/theme_common.image_content_03");
|
||||
$bg-img-07: url("/web/image/theme_common.image_content_07");
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Colors
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
// Theme colors
|
||||
|
||||
// The system for this theme is particular to support somehow the old version.
|
||||
// The alpha color is always white but primary is using beta (instead of alpha)
|
||||
// and secondary is using alpha (white) (instead of beta). In the old system,
|
||||
// this only applied to buttons though but we extended that to all components.
|
||||
// Success, info, warning and error buttons are also customized with epsilon,
|
||||
// gamma, delta and ... black colors (see theme.scss).
|
||||
$o-theme-color-palettes: (
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #cdd0a2,
|
||||
'gamma': #b4bbb9,
|
||||
'delta': #242327,
|
||||
'epsilon': #957985,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #e9e9e9,
|
||||
'gamma': #c8efeb,
|
||||
'delta': #1e222f,
|
||||
'epsilon': #55e8da,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #dbe8ed,
|
||||
'gamma': #ecd5d6,
|
||||
'delta': #590046,
|
||||
'epsilon': #df699c,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #d3d3d3,
|
||||
'gamma': #f2ef1a,
|
||||
'delta': #000000,
|
||||
'epsilon': #f1aa6b,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #cfcfcf,
|
||||
'gamma': #2e2e2e,
|
||||
'delta': #000000,
|
||||
'epsilon': #1ad68f,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #9fcae2,
|
||||
'gamma': #bbc05c,
|
||||
'delta': #112625,
|
||||
'epsilon': #45b08c,
|
||||
),
|
||||
);
|
||||
|
||||
// Grays
|
||||
$-gray-700: lighten(#000, 33.5%);
|
||||
$o-gray-color-palettes: ();
|
||||
@each $-palette in $o-theme-color-palettes {
|
||||
$o-gray-color-palettes: append($o-gray-color-palettes, (
|
||||
'900': lighten(#000, 20%),
|
||||
'700': $-gray-700,
|
||||
'600': lighten(#000, 46.7%),
|
||||
'300': #d4d4d4,
|
||||
'200': lighten(#000, 85%),
|
||||
));
|
||||
}
|
||||
|
||||
// Colors
|
||||
$o-color-palettes: (
|
||||
(
|
||||
'o-color-1': #a1a52f,
|
||||
'o-color-2': #66555c,
|
||||
'o-color-3': #f7f7f7,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #242327,
|
||||
|
||||
'menu': 5,
|
||||
'footer': 5,
|
||||
'copyright': 5,
|
||||
),
|
||||
(
|
||||
'o-color-1': #679b96,
|
||||
'o-color-2': #345552,
|
||||
'o-color-3': #e9e9e9,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #1e222f,
|
||||
|
||||
'menu': 5,
|
||||
'footer': 5,
|
||||
'copyright': 5,
|
||||
),
|
||||
(
|
||||
'o-color-1': #df699c,
|
||||
'o-color-2': #590046,
|
||||
'o-color-3': #dbe8ed,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #222222,
|
||||
|
||||
'menu': 5,
|
||||
'footer': 5,
|
||||
'copyright': 5,
|
||||
),
|
||||
(
|
||||
'o-color-1': #b29964,
|
||||
'o-color-2': #62624c,
|
||||
'o-color-3': #f5f4f4,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #333333,
|
||||
|
||||
'menu': 5,
|
||||
'footer': 5,
|
||||
'copyright': 5,
|
||||
),
|
||||
(
|
||||
'o-color-1': #1ad68f,
|
||||
'o-color-2': #2e2e2e,
|
||||
'o-color-3': #f7f7f7,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #000000,
|
||||
|
||||
'menu': 5,
|
||||
'footer': 5,
|
||||
'copyright': 5,
|
||||
),
|
||||
(
|
||||
'o-color-1': #cfd744,
|
||||
'o-color-2': #3d504a,
|
||||
'o-color-3': #f0f1f1,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #112625,
|
||||
|
||||
'menu': 5,
|
||||
'footer': 5,
|
||||
'copyright': 5,
|
||||
),
|
||||
);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Fonts
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$o-theme-h1-font-size-multiplier: (25 / 12);
|
||||
$o-theme-h2-font-size-multiplier: (18 / 12);
|
||||
$o-theme-h3-font-size-multiplier: (16 / 12);
|
||||
$o-theme-h4-font-size-multiplier: (14 / 12);
|
||||
$o-theme-h5-font-size-multiplier: 1;
|
||||
$o-theme-h6-font-size-multiplier: 1;
|
||||
|
||||
$o-theme-font-configs: (
|
||||
'Heebo': (
|
||||
'family': ('Heebo', sans-serif),
|
||||
'url': 'Heebo:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Rajdhani': (
|
||||
'family': ('Rajdhani', sans-serif),
|
||||
'url': 'Rajdhani:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Raleway': (
|
||||
'family': ('Raleway', sans-serif),
|
||||
'url': 'Raleway:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Roboto': (
|
||||
'family': ('Roboto', sans-serif),
|
||||
'url': 'Roboto: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',
|
||||
),
|
||||
'Ubuntu': (
|
||||
'family': ('Ubuntu', sans-serif),
|
||||
'url': 'Ubuntu:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Poppins': (
|
||||
'family': ('Poppins', sans-serif),
|
||||
'url': 'Poppins:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Questrial': (
|
||||
'family': ('Questrial', sans-serif),
|
||||
'url': 'Questrial:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Muli': (
|
||||
'family': ('Muli', sans-serif),
|
||||
'url': 'Muli:300,300i,400,400i,700,700i',
|
||||
),
|
||||
);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Website customizations
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$o-website-values-palettes: (
|
||||
(
|
||||
'header-font-size': .95rem,
|
||||
'btn-border-radius': 0,
|
||||
'btn-border-radius-lg': 0,
|
||||
'btn-border-radius-sm': 0,
|
||||
'font': 'Questrial',
|
||||
'headings-font': 'Poppins',
|
||||
'navbar-font': 'Poppins',
|
||||
'buttons-font': 'Poppins',
|
||||
'header-template': 'default',
|
||||
'footer-template': 'default',
|
||||
'link-underline': 'never',
|
||||
),
|
||||
);
|
||||