[ADD] theme 14.0
|
After Width: | Height: | Size: 72 KiB |
|
After Width: | Height: | Size: 141 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 73 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 140 KiB |
|
After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 9.0 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 143 KiB |
|
After Width: | Height: | Size: 124 KiB |
|
After Width: | Height: | Size: 93 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,39 @@
|
||||
odoo.define("theme_notes.tour.notes", 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_carousel',
|
||||
name: 'Carousel',
|
||||
},
|
||||
{
|
||||
id: 's_image_text',
|
||||
name: 'Image - Text',
|
||||
},
|
||||
{
|
||||
id: 's_media_list',
|
||||
name: 'Media List',
|
||||
},
|
||||
{
|
||||
id: 's_company_team',
|
||||
name: 'Team',
|
||||
},
|
||||
];
|
||||
|
||||
wTourUtils.registerThemeHomepageTour("notes_tour", [
|
||||
wTourUtils.dragNDrop(snippets[0]),
|
||||
wTourUtils.clickOnText(snippets[0], 'h2'),
|
||||
wTourUtils.goBackToBlocks(),
|
||||
wTourUtils.dragNDrop(snippets[1]),
|
||||
wTourUtils.dragNDrop(snippets[2]),
|
||||
wTourUtils.dragNDrop(snippets[3]),
|
||||
wTourUtils.clickOnSnippet(snippets[3]),
|
||||
wTourUtils.changeOption('ContainerWidth', 'we-button-group.o_we_user_value_widget', _t('width')),
|
||||
wTourUtils.clickOnSave(),
|
||||
]);
|
||||
});
|
||||
@@ -0,0 +1,9 @@
|
||||
$s-banner-parallax-height: 100vh;
|
||||
$s-banner-parallax-padding: 0px;
|
||||
@mixin s-banner-parallax-hero-bg-hook {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
};
|
||||
@mixin s-banner-parallax-row-hook {
|
||||
vertical-align: bottom;
|
||||
};
|
||||
@@ -0,0 +1,8 @@
|
||||
@mixin s-features-carousel-inner-hook {
|
||||
.carousel-inner .row {
|
||||
margin: 0 70px;
|
||||
@include media-breakpoint-down(sm) {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
// Colors
|
||||
|
||||
// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
|
||||
$yiq-contrasted-threshold: 200 !default;
|
||||
|
||||
// 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,15 @@
|
||||
$s-banner-3-carosel-control-color: rgba(0, 0, 0, 0);
|
||||
$s-banner-3-padding: 0px;
|
||||
@mixin s-banner-3-col-center-hook {
|
||||
margin-left: 16.6667%;
|
||||
text-align: center;
|
||||
@include media-breakpoint-down(sm) {
|
||||
margin-left: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
$s-big-picture-text-padding: 0;
|
||||
|
||||
$s-text-big-picture-padding: 0;
|
||||
|
||||
$s-timeline-company-color: $-gray-700;
|
||||
@@ -0,0 +1,190 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// Colors
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
// Theme colors
|
||||
$o-theme-color-palettes: (
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #47464b,
|
||||
'gamma': #3B3D4D,
|
||||
'delta': #E6FA16,
|
||||
'epsilon': #9B96B4,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #101010,
|
||||
'gamma': #474747,
|
||||
'delta': #ff0000,
|
||||
'epsilon': #e94060,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #19272c,
|
||||
'gamma': #90c0cf,
|
||||
'delta': #e94060,
|
||||
'epsilon': #5ed7e9,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #212523,
|
||||
'gamma': #2d6a51,
|
||||
'delta': #72bd9e,
|
||||
'epsilon': #bcfa16,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #4B4D52,
|
||||
'gamma': #DE8642,
|
||||
'delta': #B9B1A8,
|
||||
'epsilon': #FFF2E7,
|
||||
),
|
||||
(
|
||||
'alpha': #ffffff,
|
||||
'beta': #fee202,
|
||||
'gamma': #514947,
|
||||
'delta': #48372f,
|
||||
'epsilon': #766151,
|
||||
),
|
||||
);
|
||||
|
||||
$o-color-palettes: (
|
||||
(
|
||||
'o-color-1': #a1c005,
|
||||
'o-color-2': #9B96B4,
|
||||
'o-color-3': #f7f7f7,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #212121,
|
||||
|
||||
'o-cc2-headings': 'o-color-5',
|
||||
|
||||
'menu': 5,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #5191f0,
|
||||
'o-color-2': #394b44,
|
||||
'o-color-3': #f6f3ef,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #212523,
|
||||
|
||||
'menu': 3,
|
||||
'footer': 3,
|
||||
'copyright': 4,
|
||||
),
|
||||
(
|
||||
'o-color-1': #DE8642,
|
||||
'o-color-2': #B9B1A8,
|
||||
'o-color-3': #f7f7f7,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #4B4D52,
|
||||
|
||||
'menu': 4,
|
||||
'footer': 4,
|
||||
'copyright': 5,
|
||||
),
|
||||
(
|
||||
'o-color-1': #ebd425,
|
||||
'o-color-2': #48372f,
|
||||
'o-color-3': #f7f7f7,
|
||||
'o-color-4': #ffffff,
|
||||
'o-color-5': #352e2e,
|
||||
|
||||
'o-cc2-headings': 'o-color-5',
|
||||
'o-cc4-text': 'o-color-5',
|
||||
|
||||
'menu': 3,
|
||||
'footer': 3,
|
||||
'copyright': 4,
|
||||
),
|
||||
);
|
||||
|
||||
// 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%),
|
||||
'200': lighten(#000, 85%),
|
||||
));
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Fonts
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$o-theme-h1-font-size-multiplier: (40 / 16);
|
||||
$o-theme-h2-font-size-multiplier: (32 / 16);
|
||||
$o-theme-h3-font-size-multiplier: (28 / 16);
|
||||
$o-theme-h4-font-size-multiplier: (24 / 16);
|
||||
$o-theme-h5-font-size-multiplier: (20 / 16);
|
||||
$o-theme-h6-font-size-multiplier: 1;
|
||||
|
||||
$o-theme-font-configs: (
|
||||
'Cuprum': (
|
||||
'family': ('Cuprum', sans-serif),
|
||||
'url': 'Cuprum:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Oxygen': (
|
||||
'family': ('Oxygen', sans-serif),
|
||||
'url': 'Oxygen:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Mukta': (
|
||||
'family': ('Mukta', sans-serif),
|
||||
'url': 'Mukta:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Overlock': (
|
||||
'family': ('Overlock', cursive),
|
||||
'url': 'Overlock:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Rajdhani': (
|
||||
'family': ('Rajdhani', sans-serif),
|
||||
'url': 'Rajdhani:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Ubuntu': (
|
||||
'family': ('Ubuntu', sans-serif),
|
||||
'url': 'Ubuntu:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Droid Sans': (
|
||||
'family': ('Droid Sans', sans-serif),
|
||||
),
|
||||
'Sen': (
|
||||
'family': ('Sen', sans-serif),
|
||||
'url': 'Sen:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Crimson Text': (
|
||||
'family': ('Crimson Text', serif),
|
||||
'url': 'Crimson+Text:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Libre Baskerville': (
|
||||
'family': ('Libre Baskerville', serif),
|
||||
'url': 'Libre+Baskerville:300,300i,400,400i,700,700i',
|
||||
),
|
||||
'Lobster': (
|
||||
'family': ('Lobster', cursive),
|
||||
'url': 'Lobster:300,300i,400,400i,700,700i',
|
||||
),
|
||||
);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Website customizations
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
$o-website-values-palettes: (
|
||||
(
|
||||
'header-font-size': 1.25rem,
|
||||
'logo-height': 3rem,
|
||||
'fixed-logo-height': 3rem,
|
||||
'font': 'Oxygen',
|
||||
'headings-font': 'Lobster',
|
||||
'navbar-font': 'Lobster',
|
||||
'buttons-font': 'Lobster',
|
||||
'link-underline': 'never',
|
||||
'header-template': 'hamburger-full',
|
||||
'footer-template': 'descriptive',
|
||||
'hamburger-position': 'right',
|
||||
'hamburger-type': 'off-canvas',
|
||||
),
|
||||
);
|
||||