eghezee : add custom fonts & blue color

This commit is contained in:
Daniel Muyshond 2020-10-05 11:53:07 +02:00
parent 6ae1724070
commit 0b57aba429
4 changed files with 55 additions and 6 deletions

View File

@ -1,6 +1,22 @@
@charset "UTF-8";
@charset "UTF-8";
/* Custom selection color because that can be done and it's cool */
::selection {
color: white;
background-color: $primary-color;
}
/* remove annoying border I can't remove with EO vars at the moment */
div.links-list ul > li:not(:last-child) {
border-bottom: 0;
}
h1#logo a img {
max-height: 120px;
}
/* center "Code de suivi" title */
div#tracking-code h3 {
padding: 0;
color: $primary-color;
}

View File

@ -0,0 +1,31 @@
// Steps
$form-sidebar-position: top; // possible values are: left, right, top
$steps-background: transparent;
$wcs-steps-spacing: 0.30rem !default; // half of default 0.7rem used in publik
$wcs-step-color: white !default; // color for default marker & label
$wcs-step-current-color: white !default;
$wcs-step-background: darken($secondary-color, 12%) !default;
$wcs-step-current-background: $secondary-color !default;
$wcs-step-border-bottom: 1px solid $wcs-step-color !default;
$wcs-step-current-border-bottom: none;
@if ($wcs-step-border-bottom == none) {
$wcs-step-current-border-bottom: none;
}
// Step option
$wsc-step-before-piled: false !default;
// marker
$wcs-step-marker-color: $wcs-step-color !default;
$wcs-step-current-marker-color: $wcs-step-current-color !default;
$wcs-step-marker-background: $wcs-step-background !default;
$wcs-step-current-marker-background: $wcs-step-current-background !default;
// marker options
$wcs-step-marker-size: 2.1em !default;
$wcs-step-current-marker-enlarge: 1.2 !default;
$wcs-step-marker-type: square; // square || tied || disc || disc tied
$wcs-step-marker-tie-color: #F2F2F2 !default;
$wcs-step-marker-tie-width: 5px !default;
$wcs-step-marker-background-type: gradient; // solid || gradien
// Label
$wcs-step-current-label-color: $primary-color !default;

View File

@ -2,6 +2,7 @@
/*STYLE*/
$primary-color: #003565;
$secondary-color: #F8F8F8;
$width: 1200px;
$mobile-limit: 800px;
$font-size: 16px !default;
@ -9,7 +10,7 @@ $button-color: white;
$cell-entry-hover-effect: left-to-right;
$theme2019: true;
$link-color: $primary-color;
$font-family: "Din"; //!\\ : il faut bien importer la font (voir les imports en bas de la page)!
$font-family: "Zilla Slab";
$border-radius: 3px;
/*BASKET*/
@ -18,6 +19,7 @@ $border-radius: 3px;
/*CELL*/
$cell-border: 0px;
$cell-entry-hover-background: $primary-color;
$cell-title-color: $primary-color;
/*FORM-BUTTON*/
$button-hover-background-color: darken($primary-color, 8%);
@ -44,10 +46,11 @@ $toplinks-shadow: none;
/*MENU*/
$nav-background: #F2F2F2;
$nav-color: #333;
$nav-background: transparent;
$nav-color: $primary-color;
$nav-active-color: $primary-color;
$nav-item-selected-color: #FFF;
$nav-item-selected-mode: bottom-border;
$nav-text-uppercase: uppercase;
/*MENU RESPONSIVE*/

View File

@ -2,10 +2,9 @@
@import 'vars';
@import '../imio/steps-config';
@import 'steps-config';
@import '../../publik-base-theme/static/includes/publik';
//@import '../../publik-base-theme/static/includes/fonts/din';
@import '../includes/fonts/zilla-slab';
@import '../imio/form-buttons';