[MTELEWAVC-1] Wavre : init theme

This commit is contained in:
Daniel Muyshond 2022-05-25 15:40:49 +02:00
parent 8c1914295e
commit 3eed610583
10 changed files with 119 additions and 0 deletions

View File

@ -0,0 +1,7 @@
@charset "UTF-8";
/* Custom selection color because that can be done and it's cool */
::selection {
color: white;
background-color: $primary-color;
}

77
static/wavre/_vars.scss Normal file
View File

@ -0,0 +1,77 @@
@charset "UTF-8";
/*STYLE*/
$primary-color: hsl(332, 72%, 43%);
$width: 1200px;
$mobile-limit: 800px;
$font-size: 16px !default;
$button-color: white;
$theme2019: true;
$link-color: $primary-color;
$font-family: "Din";
$border-radius: 3px;
/*BASKET*/
/*CELL*/
$cell-background: 0;
$cell-border: 0;
$cell-border-radius: $border-radius !default;
$cell-color: inherit !default;
$cell-title-cover-border: true !default;
$cell-entry-color: darken($link-color, 10%);
$cell-entry-font-weight: normal !default;
$cell-entry-border-color: none;
$cell-entry-border: 0;
$cell-entry-hover-color: white;
$cell-entry-hover-background: darken($primary-color, 3%);
$cell-entry-hover-effect: left-to-right;
/*FORM-BUTTON*/
$button-hover-background-color: darken($primary-color, 8%);
$button-background: $primary-color;
/*FOOTER*/
$footer-background-color: hsl(0, 0%, 19%);
$footer-text-color: hsl(0, 0, 84%);
$footer-hover-text-color: hsl(0, 0, 100%);
/*HEADER*/
$header-banner: none;
$header-banner-image: false;
$header-banner-height: auto;
$header-logo: None;
$header-logo-margin: 1.7em 0 0 0.55em !default;
$header-logo-padding: 0;
$toplinks-border: 0;
$toplinks-radius: 0;
$toplinks-shadow: none;
/*LOGIN*/
/*MENU*/
$nav-background: #f2f2f2;
$nav-color: #333;
$nav-active-color: $primary-color;
$nav-item-selected-color: #fff;
$nav-text-uppercase: uppercase;
/*MENU RESPONSIVE*/
$nav-button-color: #fff;
$nav-menu-color: $primary-color;
/*PWA*/
$nav-mobile-bottom-bar-height: 75px;
$nav-mobile-bottom-bar-background: $primary-color;
$nav-mobile-bottom-bar-color: #fff;
$nav-mobile-bottom-bar-item-hover-background: $primary-color;
/*RESPONSIVE*/
/*SHARE*/
$hidden-description: false;
/*TITLE*/
$title-color: #525252;
$title-padding: 1em 0em 1em 0.8em;
$title-weight: 600;

9
static/wavre/config.json Normal file
View File

@ -0,0 +1,9 @@
{
"label": "Wavre",
"variables": {
"no_extra_js": false,
"pwa_display": "standalone",
"theme_color": "#99CC33",
"favicon": "wavre/images/favicon.ico"
}
}

5
static/wavre/extra.js Normal file
View File

@ -0,0 +1,5 @@
$(function() {
$.getScript('/static/imio/common.js', function() {
});
}); /* end */

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

21
static/wavre/style.scss Normal file
View File

@ -0,0 +1,21 @@
@charset "UTF-8";
@import "vars";
@import "../imio/steps-config";
@import "../../publik-base-theme/static/includes/publik";
@import "../../publik-base-theme/static/includes/fonts/din";
@import "../imio/form-buttons";
@import "../imio/header";
@import "../imio/menu";
@import "../imio/login";
@import "../imio/basketv2";
@import "../imio/footer";
@import "../imio/extra";
@import "../imio/share";
@import "../imio/cells";
@import "../imio/responsive";
@import "custom";