init
0
web/app/themes/haiku-atelier-2024/.gitignore
vendored
Executable file
27
web/app/themes/haiku-atelier-2024/404.php
Executable file
|
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* Le modèle de la Page 404.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Timber\Timber;
|
||||
|
||||
// Contexte et modèles
|
||||
$contexte = Timber::context();
|
||||
$modeles = ["404.twig"];
|
||||
|
||||
// Charge les scripts et styles de la page
|
||||
function charge_scripts_styles_page_404(): void {
|
||||
wp_enqueue_style(
|
||||
handle: "haiku-atelier-2024-styles-page-a-propos",
|
||||
src: get_template_directory_uri() . "/assets/css/pages/page-modele-simple.css",
|
||||
deps: [],
|
||||
ver: filemtime(get_template_directory() . "/assets/css/pages/page-modele-simple.css"),
|
||||
media: "all",
|
||||
);
|
||||
}
|
||||
add_action("wp_enqueue_scripts", "charge_scripts_styles_page_404");
|
||||
|
||||
// Rendu
|
||||
Timber::render(filenames: $modeles, data: $contexte);
|
||||
0
web/app/themes/haiku-atelier-2024/README.md
Executable file
54
web/app/themes/haiku-atelier-2024/archive-product.php
Executable file
|
|
@ -0,0 +1,54 @@
|
|||
<?php
|
||||
/**
|
||||
* Le modèle de la Page Boutique (« E-Shop »).
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Timber\Timber;
|
||||
|
||||
require_once __DIR__ . "/src/inc/TraitementInformations.php";
|
||||
|
||||
// Contexte et modèles
|
||||
$contexte = Timber::context();
|
||||
$modeles = ["boutique.twig"];
|
||||
|
||||
/** @var array<WC_Product> $informations_produits Les informations brutes des Produits. */
|
||||
$informations_produits = wc_get_products([
|
||||
"limit" => 12,
|
||||
"order" => "DESC",
|
||||
"orderby" => "date",
|
||||
"status" => "publish",
|
||||
]);
|
||||
/** @var InformationsProduitShop $produits Les informations strictement nécessaires pour la grille des Produits. */
|
||||
$produits = array_map(callback: "recupere_informations_produit_shop", array: $informations_produits);
|
||||
$contexte["produits"] = $produits;
|
||||
|
||||
/**
|
||||
* Charge les Scripts nécessaires pour la page Boutique.
|
||||
*/
|
||||
function charge_scripts_page_boutique(): void {
|
||||
wp_enqueue_style(
|
||||
handle: "haiku-atelier-2024-styles-page-boutique",
|
||||
src: get_template_directory_uri() . "/assets/css/pages/page-boutique.css",
|
||||
deps: [],
|
||||
ver: filemtime(get_template_directory() . "/assets/css/pages/page-boutique.css"),
|
||||
media: "all",
|
||||
);
|
||||
wp_enqueue_script_module(
|
||||
id: "haiku-atelier-2024-scripts-page-boutique",
|
||||
src: get_template_directory_uri() . "/assets/js/scripts-page-boutique.js",
|
||||
deps: [],
|
||||
version: filemtime(get_template_directory() . "/assets/js/scripts-page-boutique.js"),
|
||||
);
|
||||
wp_enqueue_script_module(
|
||||
id: "haiku-atelier-2024-scripts-menu-categories",
|
||||
src: get_template_directory_uri() . "/assets/js/scripts-menu-categories.js",
|
||||
deps: [],
|
||||
version: filemtime(get_template_directory() . "/assets/js/scripts-menu-categories.js"),
|
||||
);
|
||||
}
|
||||
add_action("wp_enqueue_scripts", "charge_scripts_page_boutique");
|
||||
|
||||
// Rendu
|
||||
Timber::render(filenames: $modeles, data: $contexte);
|
||||
1409
web/app/themes/haiku-atelier-2024/assets/css/main.css
Executable file
1
web/app/themes/haiku-atelier-2024/assets/css/main.css.map
Executable file
1
web/app/themes/haiku-atelier-2024/assets/css/main.min.css
vendored
Executable file
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-404.css.map
Executable file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../../../src/sass/pages/page-404.scss"],"names":[],"mappings":"AAEA;EAEE;EAGA;EAEA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAKN;EACE;IACE;IACA","file":"page-404.css"}
|
||||
159
web/app/themes/haiku-atelier-2024/assets/css/pages/page-a-propos.css
Executable file
|
|
@ -0,0 +1,159 @@
|
|||
#page-a-propos {
|
||||
--images-longueur-maximale: 1300px;
|
||||
--page-marges-bloc-debut: var(--en-tete-hauteur);
|
||||
--images-marges-ligne: var(--espace-xl) * 2;
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
margin-top: var(--page-marges-bloc-debut);
|
||||
}
|
||||
#page-a-propos .storytelling {
|
||||
padding: var(--espace-xl) 0;
|
||||
color: var(--couleur-gris-fonce);
|
||||
}
|
||||
#page-a-propos .storytelling__conteneur {
|
||||
position: relative;
|
||||
width: min(var(--images-longueur-maximale), 100% - var(--images-marges-ligne));
|
||||
margin: auto;
|
||||
}
|
||||
#page-a-propos .storytelling picture {
|
||||
position: relative;
|
||||
}
|
||||
#page-a-propos .storytelling picture::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url("/app/themes/haiku-atelier-2024/assets/img/icons/cloud-gris.svg");
|
||||
background-repeat: space;
|
||||
background-position: center;
|
||||
background-size: contain;
|
||||
filter: opacity(0%);
|
||||
animation: 1s clignotement infinite alternate both linear;
|
||||
}
|
||||
#page-a-propos .storytelling img {
|
||||
position: relative;
|
||||
width: max-content;
|
||||
height: auto;
|
||||
object-fit: contain;
|
||||
background: transparent;
|
||||
}
|
||||
#page-a-propos .storytelling .epingle {
|
||||
position: absolute;
|
||||
right: 46.5%;
|
||||
}
|
||||
#page-a-propos .storytelling .epingle img {
|
||||
pointer-events: none;
|
||||
display: block;
|
||||
width: 1.75rem;
|
||||
/* filter: drop-shadow(1px 1px 3px var(--couleur-gris-fonce)); */
|
||||
/* transition: 0.2s filter; */
|
||||
}
|
||||
#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="1"] {
|
||||
top: 1%;
|
||||
right: 60%;
|
||||
}
|
||||
#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="2"] {
|
||||
top: 25%;
|
||||
right: 70%;
|
||||
}
|
||||
#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="3"] {
|
||||
top: 37%;
|
||||
right: 20%;
|
||||
}
|
||||
#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="4"] {
|
||||
top: 58%;
|
||||
right: 70%;
|
||||
}
|
||||
#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="5"] {
|
||||
top: 76%;
|
||||
right: 14%;
|
||||
}
|
||||
#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="6"] {
|
||||
top: 95.5%;
|
||||
right: 75%;
|
||||
}
|
||||
#page-a-propos .storytelling .epingle[data-ensemble-epingle-boite-actif] img {
|
||||
/* filter: drop-shadow(1px 1px 5px var(--couleur-gris-fonce)); */
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: calc(46.5% - (15rem + var(--espace-l)) / 2);
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
padding: var(--espace-l);
|
||||
border: 1px solid var(--couleur-noir);
|
||||
font-size: 0.8rem;
|
||||
font-style: italic;
|
||||
color: var(--couleur-noir);
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
background: var(--couleur-fond);
|
||||
transition: 0.2s opacity, 0.2s visibility;
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte button {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: calc(-1.5rem - var(--espace-m) - var(--espace-xs));
|
||||
align-self: end;
|
||||
padding: var(--espace-xs);
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte button img {
|
||||
pointer-events: none;
|
||||
aspect-ratio: 1;
|
||||
width: 1.5rem;
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte button:active {
|
||||
background: var(--couleur-jaune);
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte p {
|
||||
max-width: 15rem;
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte p + p {
|
||||
margin-top: var(--espace-m);
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte[data-ensemble-epingle-boite-actif] {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="2"] {
|
||||
--hauteur-boite: calc(7lh + 1rem + var(--espace-l) * 2);
|
||||
top: calc(23% - var(--hauteur-boite) / 2);
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="3"] {
|
||||
--hauteur-boite: calc(7lh + 1rem + var(--espace-l) * 2);
|
||||
top: calc(35% - var(--hauteur-boite) / 2);
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="3"] button {
|
||||
left: calc(-1.5rem - var(--espace-m) - var(--espace-xs));
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="4"] {
|
||||
--hauteur-boite: calc(8lh + 2rem + var(--espace-l) * 2);
|
||||
top: calc(58% - var(--hauteur-boite) / 2);
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="5"] {
|
||||
--hauteur-boite: calc(12lh + 2rem + var(--espace-l) * 2);
|
||||
top: calc(76% - var(--hauteur-boite) / 2);
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="6"] {
|
||||
--hauteur-boite: calc(7lh + 1rem + var(--espace-l) * 2);
|
||||
top: calc(95.5% - var(--hauteur-boite) / 2);
|
||||
}
|
||||
#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="6"] button {
|
||||
left: calc(-1.5rem - var(--espace-m) - var(--espace-xs));
|
||||
}
|
||||
@media (width <= 700px) {
|
||||
#page-a-propos {
|
||||
--images-marges-ligne: var(--espace-m);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes clignotement {
|
||||
to {
|
||||
filter: opacity(30%);
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=page-a-propos.css.map */
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-a-propos.css.map
Executable file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../../../src/sass/pages/page-a-propos.scss"],"names":[],"mappings":"AAEA;EAEE;EAGA;EACA;EAEA;EACA;EACA;;AAEA;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;AAEA;AAEA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAIA;AACE;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAIJ;EACE;;AAEA;EACE;;AAIJ;EACE;EACA;;AAGF;EACE;EAEA;;AAGF;EACE;EAEA;;AAEA;EACE;;AAIJ;EACE;EAEA;;AAGF;EACE;EAEA;;AAGF;EACE;EAEA;;AAEA;EACE;;AAMR;EA7LF;IA8LI;;;;AAIJ;EACE;IACE","file":"page-a-propos.css"}
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-a-propos.min.css
vendored
Executable file
|
|
@ -0,0 +1 @@
|
|||
#page-a-propos{--images-longueur-maximale:1300px;--page-marges-bloc-debut:var(--en-tete-hauteur);--images-marges-ligne:var(--espace-xl)*2;margin-top:var(--page-marges-bloc-debut);flex-flow:column;display:flex}#page-a-propos .storytelling{padding:var(--espace-xl)0;color:var(--couleur-gris-fonce)}#page-a-propos .storytelling__conteneur{width:min(var(--images-longueur-maximale),100% - var(--images-marges-ligne));margin:auto;position:relative}#page-a-propos .storytelling picture{position:relative}#page-a-propos .storytelling picture:before{content:"";filter:opacity(0%);background-image:url(/app/themes/haiku-atelier-2024/assets/img/icons/cloud-gris.svg);background-position:50%;background-repeat:space;background-size:contain;width:100%;height:100%;animation:1s linear infinite alternate both clignotement;position:absolute;top:0;left:0}#page-a-propos .storytelling img{object-fit:contain;background:0 0;width:max-content;height:auto;position:relative}#page-a-propos .storytelling .epingle{position:absolute;right:46.5%}#page-a-propos .storytelling .epingle img{pointer-events:none;width:1.75rem;display:block}#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="1"]{top:1%;right:60%}#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="2"]{top:25%;right:70%}#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="3"]{top:37%;right:20%}#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="4"]{top:58%;right:70%}#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="5"]{top:76%;right:14%}#page-a-propos .storytelling .epingle[data-id-ensemble-epingle-boite="6"]{top:95.5%;right:75%}#page-a-propos .storytelling .boite-texte{top:0;right:calc(46.5% - (15rem + var(--espace-l))/2);padding:var(--espace-l);border:1px solid var(--couleur-noir);color:var(--couleur-noir);visibility:hidden;opacity:0;background:var(--couleur-fond);flex-flow:column;font-size:.8rem;font-style:italic;transition:opacity .2s,visibility .2s;display:flex;position:absolute}#page-a-propos .storytelling .boite-texte button{top:0;right:calc(-1.5rem - var(--espace-m) - var(--espace-xs));padding:var(--espace-xs);align-self:end;position:absolute}#page-a-propos .storytelling .boite-texte button img{pointer-events:none;aspect-ratio:1;width:1.5rem}#page-a-propos .storytelling .boite-texte button:active{background:var(--couleur-jaune)}#page-a-propos .storytelling .boite-texte p{max-width:15rem}#page-a-propos .storytelling .boite-texte p+p{margin-top:var(--espace-m)}#page-a-propos .storytelling .boite-texte[data-ensemble-epingle-boite-actif]{visibility:visible;opacity:1}#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="2"]{--hauteur-boite:calc(7lh + 1rem + var(--espace-l)*2);top:calc(23% - var(--hauteur-boite)/2)}#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="3"]{--hauteur-boite:calc(7lh + 1rem + var(--espace-l)*2);top:calc(35% - var(--hauteur-boite)/2)}#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="3"] button{left:calc(-1.5rem - var(--espace-m) - var(--espace-xs))}#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="4"]{--hauteur-boite:calc(8lh + 2rem + var(--espace-l)*2);top:calc(58% - var(--hauteur-boite)/2)}#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="5"]{--hauteur-boite:calc(12lh + 2rem + var(--espace-l)*2);top:calc(76% - var(--hauteur-boite)/2)}#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="6"]{--hauteur-boite:calc(7lh + 1rem + var(--espace-l)*2);top:calc(95.5% - var(--hauteur-boite)/2)}#page-a-propos .storytelling .boite-texte[data-id-ensemble-epingle-boite="6"] button{left:calc(-1.5rem - var(--espace-m) - var(--espace-xs))}@media (width<=700px){#page-a-propos{--images-marges-ligne:var(--espace-m)}}@keyframes clignotement{to{filter:opacity(30%)}}
|
||||
45
web/app/themes/haiku-atelier-2024/assets/css/pages/page-accueil.css
Executable file
|
|
@ -0,0 +1,45 @@
|
|||
#page-accueil {
|
||||
--hauteur-conteneur: var(--contenu-page-hauteur-minimale-sans-categories);
|
||||
--page-marges-bloc-debut: var(--en-tete-hauteur);
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
min-height: var(--hauteur-conteneur);
|
||||
max-height: var(--hauteur-conteneur);
|
||||
margin-top: var(--page-marges-bloc-debut);
|
||||
}
|
||||
#page-accueil .storytelling {
|
||||
overflow-y: scroll;
|
||||
place-items: center;
|
||||
min-height: inherit;
|
||||
max-height: inherit;
|
||||
}
|
||||
#page-accueil .storytelling__conteneur {
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
min-height: calc(var(--hauteur-conteneur) * 13);
|
||||
padding: 0 var(--espace-xl);
|
||||
}
|
||||
#page-accueil .storytelling__image {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
align-content: center;
|
||||
width: 100%;
|
||||
min-height: var(--hauteur-conteneur);
|
||||
max-height: var(--hauteur-conteneur);
|
||||
}
|
||||
#page-accueil .storytelling__image[data-cache] {
|
||||
display: none;
|
||||
}
|
||||
#page-accueil .storytelling__image picture {
|
||||
max-height: inherit;
|
||||
}
|
||||
#page-accueil .storytelling__image img {
|
||||
scale: 0.9;
|
||||
max-height: inherit;
|
||||
margin: auto;
|
||||
object-fit: contain;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=page-accueil.css.map */
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-accueil.css.map
Executable file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../../../src/sass/pages/page-accueil.scss"],"names":[],"mappings":"AAEA;EAEE;EAGA;EAEA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA","file":"page-accueil.css"}
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-accueil.min.css
vendored
Executable file
|
|
@ -0,0 +1 @@
|
|||
#page-accueil{--hauteur-conteneur:var(--contenu-page-hauteur-minimale-sans-categories);--page-marges-bloc-debut:var(--en-tete-hauteur);min-height:var(--hauteur-conteneur);max-height:var(--hauteur-conteneur);margin-top:var(--page-marges-bloc-debut);flex-flow:column;display:flex;overflow:hidden}#page-accueil .storytelling{min-height:inherit;max-height:inherit;place-items:center;overflow-y:scroll}#page-accueil .storytelling__conteneur{min-height:calc(var(--hauteur-conteneur)*13);padding:0 var(--espace-xl);flex-flow:column;display:flex}#page-accueil .storytelling__image{width:100%;min-height:var(--hauteur-conteneur);max-height:var(--hauteur-conteneur);align-content:center;position:sticky;top:0}#page-accueil .storytelling__image[data-cache]{display:none}#page-accueil .storytelling__image picture{max-height:inherit}#page-accueil .storytelling__image img{max-height:inherit;object-fit:contain;background:0 0;margin:auto;scale:.9}
|
||||
12
web/app/themes/haiku-atelier-2024/assets/css/pages/page-boutique.css
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#page-boutique .actions {
|
||||
align-content: center;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
#page-boutique .actions button {
|
||||
height: initial;
|
||||
margin: auto;
|
||||
padding: var(--espace-xl) 0;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=page-boutique.css.map */
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-boutique.css.map
Executable file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../../../src/sass/pages/page-boutique.scss"],"names":[],"mappings":"AAGE;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA","file":"page-boutique.css"}
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-boutique.min.css
vendored
Executable file
|
|
@ -0,0 +1 @@
|
|||
#page-boutique .actions{text-align:center;align-content:center;width:100%}#page-boutique .actions button{height:initial;padding:var(--espace-xl)0;margin:auto}
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-contact.css.map
Executable file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../../../src/sass/pages/page-contact.scss"],"names":[],"mappings":"AAEA;EAEE;AAAA;AAAA;EAKA;EAEA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAKN;EACE;IACE;IACA","file":"page-contact.css"}
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-contact.min.css
vendored
Executable file
|
|
@ -0,0 +1 @@
|
|||
#page-contact{--page-hauteur-minimale:calc(100svh - var(--en-tete-hauteur) - var(--pied-de-page-hauteur) - var(--espace-xl) - 1px);--page-marges-bloc-debut:var(--en-tete-hauteur);margin-top:var(--page-marges-bloc-debut);margin-bottom:var(--espace-xl);border-bottom:1px solid var(--couleur-noir);flex-flow:column;display:flex}#page-contact .contenu{width:min(50rem,100%);min-height:var(--page-hauteur-minimale);border:1px solid var(--couleur-noir);border-bottom:initial;flex-flow:column;place-items:center;margin:auto;font-style:italic;font-weight:500;display:flex}#page-contact .contenu__en-tete{width:100%;padding:var(--espace-m)var(--espace-xl);color:var(--couleur-blanc);background:var(--couleur-noir)}#page-contact .contenu__en-tete h2{text-transform:uppercase;width:fit-content;letter-spacing:var(--espacement-inter-lettres-etendu-l);margin:auto}#page-contact .contenu__textuel{max-width:34rem;height:100%;padding:0 var(--espace-xl);text-wrap:pretty;flex-flow:column;flex:1;place-content:center;display:flex}#page-contact .contenu__textuel p+p{margin-top:var(--espace-m)}@media (width<=50rem){#page-contact .contenu{border-right:initial;border-left:initial}}
|
||||
97
web/app/themes/haiku-atelier-2024/assets/css/pages/page-modele-simple.css
Executable file
|
|
@ -0,0 +1,97 @@
|
|||
.page-modele-simple {
|
||||
--page-hauteur-minimale: calc(
|
||||
100svh - var(--en-tete-hauteur) - var(--pied-de-page-hauteur) - var(--espace-xl) - 1px
|
||||
);
|
||||
--page-marges-bloc-debut: var(--en-tete-hauteur);
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
margin-top: var(--page-marges-bloc-debut);
|
||||
margin-bottom: var(--espace-xl);
|
||||
border-bottom: 1px solid var(--couleur-noir);
|
||||
}
|
||||
.page-modele-simple .contenu {
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
place-items: center;
|
||||
width: min(50rem, 100%);
|
||||
min-height: var(--page-hauteur-minimale);
|
||||
margin: auto;
|
||||
border: 1px solid var(--couleur-noir);
|
||||
border-bottom: initial;
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
}
|
||||
.page-modele-simple .contenu__en-tete {
|
||||
width: 100%;
|
||||
padding: var(--espace-m) var(--espace-xl);
|
||||
color: var(--couleur-blanc);
|
||||
background: var(--couleur-noir);
|
||||
}
|
||||
.page-modele-simple .contenu__en-tete h2 {
|
||||
width: fit-content;
|
||||
margin: auto;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: var(--espacement-inter-lettres-etendu-l);
|
||||
}
|
||||
.page-modele-simple .contenu__textuel {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
flex-flow: column nowrap;
|
||||
place-content: center;
|
||||
max-width: 34rem;
|
||||
height: 100%;
|
||||
padding: 0 var(--espace-xl);
|
||||
text-wrap: pretty;
|
||||
}
|
||||
.page-modele-simple .contenu__textuel p + p {
|
||||
margin-top: var(--espace-m);
|
||||
}
|
||||
.page-modele-simple#page-cgv .contenu {
|
||||
font-style: normal;
|
||||
}
|
||||
.page-modele-simple#page-cgv .contenu header {
|
||||
font-style: italic;
|
||||
}
|
||||
.page-modele-simple#page-cgv .contenu__textuel {
|
||||
max-width: initial;
|
||||
padding: 0;
|
||||
}
|
||||
.page-modele-simple#page-cgv .contenu__textuel__section {
|
||||
width: 100%;
|
||||
}
|
||||
.page-modele-simple#page-cgv .contenu__textuel__section:first-of-type header {
|
||||
border-top: initial;
|
||||
}
|
||||
.page-modele-simple#page-cgv .contenu__textuel__section header {
|
||||
width: 100%;
|
||||
margin-bottom: var(--espace-l);
|
||||
padding: var(--espace-m) var(--espace-xl);
|
||||
border-top: 1px solid var(--couleur-noir);
|
||||
border-bottom: 1px solid var(--couleur-noir);
|
||||
}
|
||||
.page-modele-simple#page-cgv .contenu__textuel__section header h3 {
|
||||
width: fit-content;
|
||||
margin: auto;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: var(--espacement-inter-lettres-etendu-l);
|
||||
}
|
||||
.page-modele-simple#page-cgv .contenu__textuel__section ul {
|
||||
margin-bottom: 1lh;
|
||||
padding: 0 var(--espace-xl);
|
||||
list-style: square;
|
||||
list-style-position: inside;
|
||||
}
|
||||
.page-modele-simple#page-cgv .contenu__textuel__section p {
|
||||
padding: 0 var(--espace-xl);
|
||||
}
|
||||
.page-modele-simple#page-cgv .contenu__textuel__section p:last-of-type {
|
||||
margin-bottom: var(--espace-xl);
|
||||
}
|
||||
@media (width <= 50rem) {
|
||||
.page-modele-simple .contenu {
|
||||
border-right: initial;
|
||||
border-left: initial;
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=page-modele-simple.css.map */
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../../../src/sass/pages/page-modele-simple.scss"],"names":[],"mappings":"AAEA;EAEE;AAAA;AAAA;EAKA;EAEA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAMJ;EACE;;AAEA;EACE;;AAGF;EACE;EACA;;AAEA;EACE;;AAGE;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;;AAKF;EACE;;AAEA;EACE;;AAQZ;EACE;IACE;IACA","file":"page-modele-simple.css"}
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-modele-simple.min.css
vendored
Executable file
|
|
@ -0,0 +1 @@
|
|||
.page-modele-simple{--page-hauteur-minimale:calc(100svh - var(--en-tete-hauteur) - var(--pied-de-page-hauteur) - var(--espace-xl) - 1px);--page-marges-bloc-debut:var(--en-tete-hauteur);margin-top:var(--page-marges-bloc-debut);margin-bottom:var(--espace-xl);border-bottom:1px solid var(--couleur-noir);flex-flow:column;display:flex}.page-modele-simple .contenu{width:min(50rem,100%);min-height:var(--page-hauteur-minimale);border:1px solid var(--couleur-noir);border-bottom:initial;flex-flow:column;place-items:center;margin:auto;font-style:italic;font-weight:400;display:flex}.page-modele-simple .contenu__en-tete{width:100%;padding:var(--espace-m)var(--espace-xl);color:var(--couleur-blanc);background:var(--couleur-noir)}.page-modele-simple .contenu__en-tete h2{text-transform:uppercase;width:fit-content;letter-spacing:var(--espacement-inter-lettres-etendu-l);margin:auto}.page-modele-simple .contenu__textuel{max-width:34rem;height:100%;padding:0 var(--espace-xl);text-wrap:pretty;flex-flow:column;flex:1;place-content:center;display:flex}.page-modele-simple .contenu__textuel p+p{margin-top:var(--espace-m)}.page-modele-simple#page-cgv .contenu{font-style:normal}.page-modele-simple#page-cgv .contenu header{font-style:italic}.page-modele-simple#page-cgv .contenu__textuel{max-width:initial;padding:0}.page-modele-simple#page-cgv .contenu__textuel__section{width:100%}.page-modele-simple#page-cgv .contenu__textuel__section:first-of-type header{border-top:initial}.page-modele-simple#page-cgv .contenu__textuel__section header{width:100%;margin-bottom:var(--espace-l);padding:var(--espace-m)var(--espace-xl);border-top:1px solid var(--couleur-noir);border-bottom:1px solid var(--couleur-noir)}.page-modele-simple#page-cgv .contenu__textuel__section header h3{text-transform:uppercase;width:fit-content;letter-spacing:var(--espacement-inter-lettres-etendu-l);margin:auto}.page-modele-simple#page-cgv .contenu__textuel__section ul{padding:0 var(--espace-xl);margin-bottom:1lh;list-style:inside square}.page-modele-simple#page-cgv .contenu__textuel__section p{padding:0 var(--espace-xl)}.page-modele-simple#page-cgv .contenu__textuel__section p:last-of-type{margin-bottom:var(--espace-xl)}@media (width<=50rem){.page-modele-simple .contenu{border-right:initial;border-left:initial}}
|
||||
430
web/app/themes/haiku-atelier-2024/assets/css/pages/page-panier.css
Executable file
|
|
@ -0,0 +1,430 @@
|
|||
@charset "UTF-8";
|
||||
#panneau-panier {
|
||||
border-right: 1px solid var(--couleur-noir);
|
||||
}
|
||||
#panneau-panier > div {
|
||||
place-content: center;
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits {
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits__produit {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-rows: 1fr;
|
||||
border-bottom: 1px solid var(--couleur-noir);
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits__produit__illustratif {
|
||||
border-right: 1px solid var(--couleur-noir);
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits__produit__illustratif picture {
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits__produit__illustratif img {
|
||||
aspect-ratio: 1;
|
||||
height: auto;
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit {
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
place-content: center;
|
||||
width: fit-content;
|
||||
margin: auto;
|
||||
padding: 0 var(--espace-xl);
|
||||
font-style: italic;
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit__nom-prix {
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
column-gap: var(--espace-l);
|
||||
justify-content: space-between;
|
||||
font-size: var(--espace-l);
|
||||
line-height: var(--hauteur-ligne-moitie);
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit__nom-prix span {
|
||||
min-width: 4rem;
|
||||
font-weight: 600;
|
||||
font-style: initial;
|
||||
text-align: right;
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit__description {
|
||||
margin-bottom: var(--espace-l);
|
||||
text-transform: lowercase;
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit__actions {
|
||||
display: grid;
|
||||
grid-template-columns: 0.25fr auto 0.25fr;
|
||||
grid-template-rows: 1fr 1fr;
|
||||
font-weight: 500;
|
||||
font-style: initial;
|
||||
/* Bouton d'addition de quantité */
|
||||
/*
|
||||
* 1. Cache les flèches d'augmentation/diminution sur Firefox.
|
||||
* 2. Cache les flèches d'augmentation/diminution sur Chrome/Edge/Safari.
|
||||
*/
|
||||
/* Bouton de suppression de quantité */
|
||||
/* Bouton de suppression du Produit du Panier */
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit__actions button:first-of-type {
|
||||
grid-column: 1;
|
||||
min-width: 3rem;
|
||||
max-width: 3rem;
|
||||
border: 1px solid var(--couleur-noir);
|
||||
border-bottom: initial;
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit__actions input[type=number] {
|
||||
grid-column: 2;
|
||||
width: 100%;
|
||||
border: initial;
|
||||
border-top: 1px solid var(--couleur-noir);
|
||||
text-align: center;
|
||||
appearance: textfield; /* 1 */
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit__actions input[type=number]::-webkit-outer-spin-button, #panneau-panier .panneau__grille-produits .detail-produit__actions input[type=number]::-webkit-inner-spin-button {
|
||||
margin: 0; /* 2 */
|
||||
appearance: none; /* 2 */
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit__actions button:nth-of-type(2) {
|
||||
grid-column: 3;
|
||||
min-width: 3rem;
|
||||
max-width: 3rem;
|
||||
border: 1px solid var(--couleur-noir);
|
||||
border-bottom: initial;
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit__actions button:last-of-type {
|
||||
grid-column: span 3;
|
||||
grid-row: 2;
|
||||
padding: var(--espace-xs);
|
||||
border: 1px solid var(--couleur-noir);
|
||||
text-transform: lowercase;
|
||||
}
|
||||
#panneau-panier .panneau__instructions-code-promo {
|
||||
width: 100%;
|
||||
padding: var(--espace-l) var(--espace-xl);
|
||||
border-bottom: 1px solid var(--couleur-noir);
|
||||
text-align: center;
|
||||
/*
|
||||
* 1. Nécessaire pour ne pas qu'un espace vertical non souhaité apparaisse.
|
||||
* 2. Applique une marge entre les instructions et le code promo de notre choix.
|
||||
*/
|
||||
}
|
||||
#panneau-panier .panneau__instructions-code-promo__instructions {
|
||||
resize: vertical;
|
||||
display: block; /* 1 */
|
||||
width: 100%;
|
||||
margin: auto; /* 1 */
|
||||
margin-bottom: var(--espace-s); /* 2 */
|
||||
padding: var(--espace-s);
|
||||
border: 1px solid transparent;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 450;
|
||||
background: initial;
|
||||
}
|
||||
#panneau-panier .panneau__instructions-code-promo__code-promo {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
place-content: center;
|
||||
width: fit-content;
|
||||
margin: auto;
|
||||
/*
|
||||
* 1. Longueur minimale pour le Bouton n'ait pas à changer de taille quel que soit son texte
|
||||
*/
|
||||
}
|
||||
#panneau-panier .panneau__instructions-code-promo__code-promo button {
|
||||
min-width: 9rem; /* 1 */
|
||||
padding: var(--espace-xs) var(--espace-xl);
|
||||
border: 1px solid var(--couleur-noir);
|
||||
border-left: initial;
|
||||
text-transform: lowercase;
|
||||
}
|
||||
#panneau-panier .panneau__instructions-code-promo__code-promo__message {
|
||||
flex-basis: 100%;
|
||||
margin-top: var(--espace-m);
|
||||
}
|
||||
#panneau-panier .panneau__sous-totaux {
|
||||
width: min(40rem, 100%);
|
||||
margin: auto;
|
||||
padding: var(--espace-l) var(--espace-xl);
|
||||
text-align: center;
|
||||
}
|
||||
#panneau-panier .panneau__sous-totaux__ligne {
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
justify-content: space-between;
|
||||
font-style: italic;
|
||||
}
|
||||
#panneau-panier .panneau__sous-totaux__ligne strong {
|
||||
text-align: right;
|
||||
text-transform: lowercase;
|
||||
}
|
||||
#panneau-panier .panneau__sous-totaux__ligne#sous-total-livraison p:last-of-type {
|
||||
text-align: right;
|
||||
}
|
||||
#panneau-panier .panneau__sous-totaux__ligne#sous-total-livraison p:last-of-type span {
|
||||
color: grey;
|
||||
}
|
||||
#panneau-panier .panneau__sous-totaux__choix-methode-livraison {
|
||||
flex-flow: row wrap;
|
||||
gap: var(--espace-xs) var(--espace-m);
|
||||
justify-content: center;
|
||||
font-size: 0.9rem;
|
||||
letter-spacing: inherit;
|
||||
}
|
||||
#panneau-panier .panneau__sous-totaux__choix-methode-livraison > label:first-of-type {
|
||||
cursor: revert;
|
||||
flex-basis: 100%;
|
||||
margin-bottom: var(--espace-xs);
|
||||
color: grey;
|
||||
text-align: center;
|
||||
text-transform: lowercase;
|
||||
}
|
||||
#panneau-panier .panneau__sous-totaux__choix-methode-livraison div {
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
column-gap: 1ch;
|
||||
place-items: center;
|
||||
}
|
||||
#panneau-panier .panneau__sous-totaux__conditions-livraison {
|
||||
margin-top: var(--espace-l);
|
||||
font-size: 0.8rem;
|
||||
font-weight: 450;
|
||||
color: grey;
|
||||
letter-spacing: var(--espacement-inter-lettres-etendu-s);
|
||||
}
|
||||
#panneau-panier .panneau__pied-de-page {
|
||||
align-content: center;
|
||||
padding: var(--espace-l) 0;
|
||||
font-size: 1.25rem;
|
||||
font-style: italic;
|
||||
color: var(--couleur-blanc);
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
background: var(--couleur-noir);
|
||||
}
|
||||
#panneau-panier .panneau__pied-de-page span {
|
||||
margin-left: var(--espace-l);
|
||||
font-style: initial;
|
||||
}
|
||||
@media (width <= 500px) {
|
||||
#panneau-panier .panneau__grille-produits__produit__illustratif img {
|
||||
height: 100%;
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit {
|
||||
padding: var(--espace-l);
|
||||
}
|
||||
#panneau-panier .panneau__grille-produits .detail-produit .detail-produit__nom-prix {
|
||||
column-gap: var(--espace-l);
|
||||
}
|
||||
#panneau-panier .panneau__instructions-code-promo {
|
||||
padding: var(--espace-xl) var(--espace-l);
|
||||
}
|
||||
#panneau-panier .panneau__instructions-code-promo .panneau__instructions-code-promo__code-promo input, #panneau-panier .panneau__instructions-code-promo .panneau__instructions-code-promo__code-promo button {
|
||||
flex: 1;
|
||||
}
|
||||
#panneau-panier .panneau__sous-totaux {
|
||||
padding: var(--espace-xl) var(--espace-l);
|
||||
}
|
||||
}
|
||||
|
||||
#panneau-informations-client {
|
||||
position: sticky;
|
||||
top: var(--en-tete-hauteur);
|
||||
right: 0;
|
||||
height: fit-content;
|
||||
}
|
||||
#panneau-informations-client > * {
|
||||
align-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
#panneau-informations-client .panneau__paypal-express {
|
||||
--hauteur-images-bouton: 18px;
|
||||
--hauteur-bouton: calc(var(--hauteur-images-bouton) * 2);
|
||||
--longueur-bouton: 250px;
|
||||
--espacement-inter-images: var(--espace-xs);
|
||||
padding: var(--espace-xl);
|
||||
border-bottom: 1px solid var(--couleur-noir);
|
||||
}
|
||||
#panneau-informations-client .panneau__paypal-express p {
|
||||
margin-bottom: var(--espace-s);
|
||||
font-style: italic;
|
||||
}
|
||||
#panneau-informations-client .panneau__paypal-express button {
|
||||
display: flex;
|
||||
column-gap: var(--espacement-inter-images);
|
||||
place-content: center;
|
||||
place-items: center;
|
||||
width: var(--longueur-bouton);
|
||||
height: var(--hauteur-bouton);
|
||||
margin: auto;
|
||||
background: var(--couleur-noir);
|
||||
}
|
||||
#panneau-informations-client .panneau__paypal-express button img {
|
||||
height: var(--hauteur-images-bouton);
|
||||
background: inherit;
|
||||
}
|
||||
#panneau-informations-client .panneau__paypal-express button img:first-of-type {
|
||||
margin-top: -1px;
|
||||
}
|
||||
#panneau-informations-client .panneau__formulaires {
|
||||
padding: var(--espace-xl) 0;
|
||||
}
|
||||
#panneau-informations-client .panneau__formulaires .panneau__formulaires__separation-adresses {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
column-gap: 1ch;
|
||||
place-items: center;
|
||||
width: fit-content;
|
||||
margin: auto;
|
||||
margin-bottom: var(--espace-m);
|
||||
font-size: 0.8rem;
|
||||
font-style: italic;
|
||||
}
|
||||
#panneau-informations-client .panneau__formulaires .panneau__formulaires__separation-adresses label {
|
||||
text-transform: lowercase;
|
||||
}
|
||||
#panneau-informations-client .panneau__formulaires .panneau__formulaires__paiement .formulaire__paiement__attente-renseignement-formulaires {
|
||||
align-content: center;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 450;
|
||||
color: grey;
|
||||
text-align: center;
|
||||
}
|
||||
#panneau-informations-client .panneau__formulaires .panneau__formulaires__paiement .formulaire__paiement__attente-renseignement-formulaires p + p {
|
||||
margin-top: 1lh;
|
||||
}
|
||||
#panneau-informations-client .panneau__formulaires .panneau__formulaires__message {
|
||||
margin: var(--espace-xl) 0;
|
||||
font-weight: 500;
|
||||
font-style: italic;
|
||||
}
|
||||
#panneau-informations-client .formulaire {
|
||||
margin: auto;
|
||||
padding: 0 var(--espace-xl);
|
||||
}
|
||||
#panneau-informations-client .formulaire + .formulaire {
|
||||
margin-top: var(--espace-xl);
|
||||
}
|
||||
#panneau-informations-client .formulaire .formulaire__titre {
|
||||
margin-bottom: var(--espace-m);
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
font-style: italic;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
#panneau-informations-client .formulaire .formulaire__champs {
|
||||
width: fit-content;
|
||||
margin: auto;
|
||||
text-align: left;
|
||||
}
|
||||
#panneau-informations-client .formulaire .formulaire__champs .formulaire__champs__champ {
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
column-gap: var(--espace-xl);
|
||||
place-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
#panneau-informations-client .formulaire .formulaire__champs .formulaire__champs__champ + .formulaire__champs__champ {
|
||||
margin-top: var(--espace-l);
|
||||
}
|
||||
#panneau-informations-client .formulaire label {
|
||||
width: min(7rem, 100%);
|
||||
font-weight: 400;
|
||||
text-transform: lowercase;
|
||||
}
|
||||
#panneau-informations-client .formulaire label:has(+ :is(input:required, select:required)) {
|
||||
font-weight: 600;
|
||||
}
|
||||
#panneau-informations-client .formulaire input, #panneau-informations-client .formulaire select {
|
||||
width: min(15rem, 100%);
|
||||
}
|
||||
#panneau-informations-client .panneau__pied-de-page {
|
||||
align-content: center;
|
||||
padding: var(--espace-l) 0;
|
||||
font-size: 1.25rem;
|
||||
font-style: italic;
|
||||
color: var(--couleur-blanc);
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
background: var(--couleur-noir);
|
||||
}
|
||||
#panneau-informations-client .panneau__pied-de-page button {
|
||||
font: inherit;
|
||||
color: inherit;
|
||||
text-transform: inherit;
|
||||
}
|
||||
@media (width <= 500px) {
|
||||
#panneau-informations-client .panneau__formulaires {
|
||||
padding: var(--espace-xl) 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Applique une marge supérieure égale à la hauteur de l'en-tête pour qu'elle puisse s'afficher
|
||||
* correctement.
|
||||
*/
|
||||
#page-panier {
|
||||
/* Dimensions */
|
||||
--menu-section-hauteur: var(--menu-categories-produits-hauteur);
|
||||
/* Marges */
|
||||
--menu-section-marges-bloc-debut: var(--en-tete-hauteur); /* 1 */
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
min-height: calc(100svh - var(--en-tete-hauteur) - var(--pied-de-page-hauteur));
|
||||
margin-top: var(--menu-section-marges-bloc-debut);
|
||||
}
|
||||
#page-panier .panneau {
|
||||
flex: 1 1 30rem;
|
||||
border-top: 1px solid var(--couleur-noir);
|
||||
border-bottom: 1px solid var(--couleur-noir);
|
||||
}
|
||||
#page-panier .panneau__en-tete {
|
||||
position: sticky;
|
||||
z-index: 2;
|
||||
top: var(--menu-section-marges-bloc-debut);
|
||||
display: block;
|
||||
align-content: center;
|
||||
min-height: var(--menu-categories-produits-hauteur);
|
||||
max-height: var(--menu-categories-produits-hauteur);
|
||||
color: var(--couleur-gris);
|
||||
text-align: center;
|
||||
background: var(--couleur-noir);
|
||||
}
|
||||
#page-panier .panneau__en-tete h2 {
|
||||
font-weight: 450;
|
||||
font-style: italic;
|
||||
color: var(--couleur-gris);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
background: var(--couleur-noir);
|
||||
}
|
||||
#page-panier .panier-vide {
|
||||
display: none;
|
||||
flex-basis: 100%;
|
||||
align-content: center;
|
||||
min-height: calc(100svh - var(--en-tete-hauteur) - var(--pied-de-page-hauteur));
|
||||
text-align: center;
|
||||
}
|
||||
#page-panier .panier-vide p {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
#page-panier .panier-vide a {
|
||||
display: inline-block;
|
||||
margin-top: var(--espace-m);
|
||||
font-size: initial;
|
||||
}
|
||||
#page-panier[data-contient-articles=false] .panneau {
|
||||
display: none;
|
||||
}
|
||||
#page-panier[data-contient-articles=false] .panier-vide {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=page-panier.css.map */
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-panier.css.map
Executable file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../../../src/sass/layouts/_panneau-panier.scss","../../../src/sass/layouts/_panneau-informations-client.scss","../../../src/sass/pages/page-panier.scss"],"names":[],"mappings":";AAEA;EACE;;AAEA;EACE;;AAIF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGA;EACE;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAMN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;;AAIF;EACE;EACA;EACA;EACA;EACA;AAEA;AASA;AAAA;AAAA;AAAA;AAkBA;AASA;;AAnCA;EACE;EACA;EACA;EACA;EACA;;AAOF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAKJ;EACE;EACA;EACA;EACA;EACA;;AAIF;EACE;EACA;EACA;EACA;EACA;;AAOR;EACE;EACA;EACA;EACA;AAEA;AAAA;AAAA;AAAA;;AAIA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;AAEA;AAAA;AAAA;;AAGA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAKN;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAKA;EACE;;AAEA;EACE;;AAMR;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAMJ;EACE;EACA;EACA;EACA;EACA;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;IACE;;EAGF;IACE;;EAEA;IACE;;EAIJ;IACE;;EAGE;IACE;;EAKN;IACE;;;;ACpRN;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAIF;EAEE;EACA;EACA;EAGA;EAEA;EACA;;AAEA;EACE;EACA;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;AAMN;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGE;EACE;;AAMR;EACE;EACA;EACA;;AAIJ;EACE;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAKN;EACE;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAIJ;EACE;IACE;;;;ACpKN;AAAA;AAAA;AAAA;AAIA;AACE;EACA;AAEA;EACA;EAEA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAKN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAKF;EACE;;AAGF;EACE","file":"page-panier.css"}
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-panier.min.css
vendored
Executable file
108
web/app/themes/haiku-atelier-2024/assets/css/pages/page-succes-commande.css
Executable file
|
|
@ -0,0 +1,108 @@
|
|||
#page-succes-commande {
|
||||
--page-hauteur-minimale: calc(
|
||||
100svh - var(--en-tete-hauteur) - var(--pied-de-page-hauteur) - var(--espace-xl) - 1px
|
||||
);
|
||||
--page-marges-bloc-debut: var(--en-tete-hauteur);
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
margin-top: var(--page-marges-bloc-debut);
|
||||
margin-bottom: var(--espace-xl);
|
||||
border-bottom: 1px solid var(--couleur-noir);
|
||||
}
|
||||
#page-succes-commande .contenu {
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
place-items: center;
|
||||
width: min(50rem, 100%);
|
||||
min-height: var(--page-hauteur-minimale);
|
||||
margin: auto;
|
||||
border: 1px solid var(--couleur-noir);
|
||||
border-bottom: initial;
|
||||
font-weight: 500;
|
||||
font-style: italic;
|
||||
}
|
||||
#page-succes-commande .contenu__en-tete {
|
||||
width: 100%;
|
||||
padding: var(--espace-m) var(--espace-xl);
|
||||
color: var(--couleur-blanc);
|
||||
background: var(--couleur-noir);
|
||||
}
|
||||
#page-succes-commande .contenu__en-tete h2 {
|
||||
width: fit-content;
|
||||
margin: auto;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: var(--espacement-inter-lettres-etendu-l);
|
||||
}
|
||||
#page-succes-commande .contenu__textuel {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
flex-flow: column nowrap;
|
||||
place-content: center;
|
||||
max-width: 34rem;
|
||||
height: 100%;
|
||||
padding: var(--espace-xl);
|
||||
font-style: normal;
|
||||
}
|
||||
#page-succes-commande .contenu__textuel p + p {
|
||||
margin-top: var(--espace-m);
|
||||
}
|
||||
#page-succes-commande .contenu__rappel-commande {
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
border-top: 1px solid var(--couleur-noir);
|
||||
}
|
||||
#page-succes-commande .contenu__rappel-commande__produit {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-rows: 1fr;
|
||||
border-bottom: 1px solid var(--couleur-noir);
|
||||
}
|
||||
#page-succes-commande .contenu__rappel-commande__produit:only-child, #page-succes-commande .contenu__rappel-commande__produit:last-of-type {
|
||||
border-bottom: initial;
|
||||
}
|
||||
#page-succes-commande .contenu__rappel-commande__produit__illustratif {
|
||||
border-right: 1px solid var(--couleur-noir);
|
||||
}
|
||||
#page-succes-commande .contenu__rappel-commande__produit__illustratif picture {
|
||||
overflow: hidden;
|
||||
}
|
||||
#page-succes-commande .contenu__rappel-commande__produit__illustratif img {
|
||||
aspect-ratio: 1;
|
||||
height: auto;
|
||||
}
|
||||
#page-succes-commande .contenu__rappel-commande .detail-produit {
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
place-content: center;
|
||||
width: 100%;
|
||||
padding: 0 var(--espace-xl);
|
||||
font-style: italic;
|
||||
}
|
||||
#page-succes-commande .contenu__rappel-commande .detail-produit__nom-prix {
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
column-gap: var(--espace-xl);
|
||||
justify-content: space-between;
|
||||
margin-bottom: var(--espace-xs);
|
||||
font-size: var(--espace-l);
|
||||
line-height: var(--hauteur-ligne-moitie);
|
||||
}
|
||||
#page-succes-commande .contenu__rappel-commande .detail-produit__nom-prix span {
|
||||
min-width: 4rem;
|
||||
font-weight: 600;
|
||||
font-style: initial;
|
||||
text-align: right;
|
||||
}
|
||||
#page-succes-commande .contenu__rappel-commande .detail-produit__description {
|
||||
margin-bottom: var(--espace-l);
|
||||
line-height: var(--hauteur-ligne-moitie);
|
||||
text-transform: lowercase;
|
||||
}
|
||||
@media (width <= 50rem) {
|
||||
#page-succes-commande .contenu {
|
||||
border-right: initial;
|
||||
border-left: initial;
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=page-succes-commande.css.map */
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"sourceRoot":"","sources":["../../../src/sass/pages/page-succes-commande.scss"],"names":[],"mappings":"AAEA;EAEE;AAAA;AAAA;EAKA;EAEA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAIF;EACE;;AAEA;EACE;;AAGF;EACE;EACA;;AAMN;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;;AAMR;EACE;IACE;IACA","file":"page-succes-commande.css"}
|
||||
1
web/app/themes/haiku-atelier-2024/assets/css/pages/page-succes-commande.min.css
vendored
Executable file
|
|
@ -0,0 +1 @@
|
|||
#page-succes-commande{--page-hauteur-minimale:calc(100svh - var(--en-tete-hauteur) - var(--pied-de-page-hauteur) - var(--espace-xl) - 1px);--page-marges-bloc-debut:var(--en-tete-hauteur);margin-top:var(--page-marges-bloc-debut);margin-bottom:var(--espace-xl);border-bottom:1px solid var(--couleur-noir);flex-flow:column;display:flex}#page-succes-commande .contenu{width:min(50rem,100%);min-height:var(--page-hauteur-minimale);border:1px solid var(--couleur-noir);border-bottom:initial;flex-flow:column;place-items:center;margin:auto;font-style:italic;font-weight:500;display:flex}#page-succes-commande .contenu__en-tete{width:100%;padding:var(--espace-m)var(--espace-xl);color:var(--couleur-blanc);background:var(--couleur-noir)}#page-succes-commande .contenu__en-tete h2{text-transform:uppercase;width:fit-content;letter-spacing:var(--espacement-inter-lettres-etendu-l);margin:auto}#page-succes-commande .contenu__textuel{max-width:34rem;height:100%;padding:var(--espace-xl);flex-flow:column;flex:1;place-content:center;font-style:normal;display:flex}#page-succes-commande .contenu__textuel p+p{margin-top:var(--espace-m)}#page-succes-commande .contenu__rappel-commande{border-top:1px solid var(--couleur-noir);flex-flow:column;display:flex}#page-succes-commande .contenu__rappel-commande__produit{border-bottom:1px solid var(--couleur-noir);grid-template-rows:1fr;grid-template-columns:1fr 1fr;display:grid}#page-succes-commande .contenu__rappel-commande__produit:only-child,#page-succes-commande .contenu__rappel-commande__produit:last-of-type{border-bottom:initial}#page-succes-commande .contenu__rappel-commande__produit__illustratif{border-right:1px solid var(--couleur-noir)}#page-succes-commande .contenu__rappel-commande__produit__illustratif picture{overflow:hidden}#page-succes-commande .contenu__rappel-commande__produit__illustratif img{aspect-ratio:1;height:auto}#page-succes-commande .contenu__rappel-commande .detail-produit{width:100%;padding:0 var(--espace-xl);flex-flow:column;place-content:center;font-style:italic;display:flex}#page-succes-commande .contenu__rappel-commande .detail-produit__nom-prix{column-gap:var(--espace-xl);margin-bottom:var(--espace-xs);font-size:var(--espace-l);line-height:var(--hauteur-ligne-moitie);flex-flow:row;justify-content:space-between;display:flex}#page-succes-commande .contenu__rappel-commande .detail-produit__nom-prix span{min-width:4rem;font-weight:600;font-style:initial;text-align:right}#page-succes-commande .contenu__rappel-commande .detail-produit__description{margin-bottom:var(--espace-l);line-height:var(--hauteur-ligne-moitie);text-transform:lowercase}@media (width<=50rem){#page-succes-commande .contenu{border-right:initial;border-left:initial}}
|
||||
BIN
web/app/themes/haiku-atelier-2024/assets/fonts/lato/lato-variable-italic.ttf
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/fonts/lato/lato-variable-italic.woff2
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/fonts/lato/lato-variable-webfont.ttf
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/fonts/lato/lato-variable-webfont.woff2
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/fonts/lato/lato-variable.ttf
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/fonts/lato/lato-variable.woff2
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/fonts/myriad/myriad-variable-italic.ttf
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/fonts/myriad/myriad-variable.ttf
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/fonts/myriad/myriad-variable.woff2
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/essais/haikuabout-e10-q75.jxl
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/essais/haikuabout-e10-q80.jxl
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/essais/haikuabout-e7-q80.jxl
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/essais/haikuabout-e8-q80.jxl
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/essais/haikuabout-e9-q80.jxl
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/essais/haikuabout-m6-q80.webp
Executable file
|
After Width: | Height: | Size: 204 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/essais/haikuabout-m6-q85.webp
Executable file
|
After Width: | Height: | Size: 261 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/essais/haikuabout-q80.jpg
Executable file
|
After Width: | Height: | Size: 365 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/essais/haikuabout-q90.jpg
Executable file
|
After Width: | Height: | Size: 568 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/essais/haikuabout-s0-q70.avif
Executable file
|
After Width: | Height: | Size: 259 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/essais/haikuabout-s0-q75.avif
Executable file
|
After Width: | Height: | Size: 308 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/haikuabout.avif
Executable file
|
After Width: | Height: | Size: 259 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/haikuabout.jpg
Executable file
|
After Width: | Height: | Size: 365 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/haikuabout.jxl
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/haikuabout.png
Executable file
|
After Width: | Height: | Size: 84 MiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/haikuabout.webp
Executable file
|
After Width: | Height: | Size: 261 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/haikuabout_517.jxl
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/old/HAIKU-about.png
Executable file
|
After Width: | Height: | Size: 3.4 MiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/old/haikuabout.avif
Executable file
|
After Width: | Height: | Size: 162 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/old/haikuabout.jxl
Executable file
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/old/haikuabout.png
Executable file
|
After Width: | Height: | Size: 1.7 MiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/about/old/haikuabout.webp
Executable file
|
After Width: | Height: | Size: 88 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/android-chrome-192x192.png
Executable file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/android-chrome-512x512.png
Executable file
|
After Width: | Height: | Size: 12 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/apple-touch-icon.png
Executable file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/favicon.ico
Executable file
|
After Width: | Height: | Size: 15 KiB |
1
web/app/themes/haiku-atelier-2024/assets/img/favicon.svg
Executable file
|
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 90 90" xmlns="http://www.w3.org/2000/svg"><path fill="#E7FFB4" d="M85.241 48.817c-1.365-3.553-4.989-5.856-9.771-6.737 7.718-5.116 11.871-12.229 9.706-17.868-2.79-7.268-15.031-9.329-27.335-4.602-3.173 1.218-6.032 2.768-8.491 4.521l-.024-.068c-2.791-7.269-15.035-9.329-27.338-4.601C9.681 24.19 1.969 33.914 4.76 41.184c1.262 3.283 4.458 5.501 8.712 6.514C6.419 52.746 2.721 59.473 4.79 64.857c2.791 7.27 15.033 9.329 27.337 4.602 3.077-1.183 5.866-2.676 8.278-4.366.076.284.162.565.269.843 2.791 7.271 15.032 9.33 27.336 4.604 12.31-4.73 20.022-14.456 17.231-21.723"/></svg>
|
||||
|
After Width: | Height: | Size: 590 B |
1
web/app/themes/haiku-atelier-2024/assets/img/icons/aboutlclick-black.svg
Executable file
|
|
@ -0,0 +1 @@
|
|||
<svg viewBox="43.801 35.326 186.516 130.185" xmlns="http://www.w3.org/2000/svg"><path opacity=".5" fill="#DFDEDE" d="M226.058 108.87c-3.021-7.855-11.031-12.949-21.609-14.896 17.068-11.315 26.261-27.05 21.471-39.518-6.177-16.074-33.244-20.635-60.461-10.179-7.015 2.694-13.343 6.124-18.778 10.001-.018-.05-.032-.102-.052-.152-6.174-16.076-33.251-20.633-60.46-10.178-27.223 10.456-44.276 31.967-38.105 48.043 2.792 7.266 9.862 12.164 19.273 14.402-15.603 11.168-23.785 26.049-19.206 37.953 6.176 16.079 33.251 20.633 60.46 10.176 6.809-2.611 12.975-5.918 18.311-9.656.169.627.358 1.251.595 1.867 6.174 16.075 33.241 20.631 60.462 10.176 27.22-10.455 44.272-31.965 38.099-48.039"/><path fill="none" stroke="#2B2B2B" stroke-width="5" stroke-miterlimit="10" d="M226.058 108.87c-3.021-7.855-11.031-12.949-21.609-14.896 17.068-11.315 26.261-27.05 21.471-39.518-6.177-16.074-33.244-20.635-60.461-10.179-7.015 2.694-13.343 6.124-18.778 10.001-.018-.05-.032-.102-.052-.152-6.174-16.076-33.251-20.633-60.46-10.178-27.223 10.456-44.276 31.967-38.105 48.043 2.792 7.266 9.862 12.164 19.273 14.402-15.603 11.168-23.785 26.049-19.206 37.953 6.176 16.079 33.251 20.633 60.46 10.176 6.809-2.611 12.975-5.918 18.311-9.656.169.627.358 1.251.595 1.867 6.174 16.075 33.241 20.631 60.462 10.176 27.22-10.455 44.272-31.965 38.099-48.039z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
|
|
@ -0,0 +1 @@
|
|||
<svg viewBox="43.727 35.716 186.52 130.194" xmlns="http://www.w3.org/2000/svg"><path opacity=".5" fill="#DFDEDE" d="M225.982 109.258c-3.021-7.855-11.031-12.949-21.609-14.896 17.068-11.315 26.261-27.05 21.471-39.518-6.177-16.074-33.244-20.635-60.461-10.179-7.015 2.694-13.343 6.124-18.778 10.001-.018-.05-.032-.102-.052-.152-6.174-16.076-33.251-20.633-60.46-10.178-27.222 10.456-44.276 31.967-38.104 48.043 2.792 7.266 9.862 12.164 19.273 14.402-15.603 11.168-23.785 26.049-19.206 37.953 6.176 16.079 33.251 20.633 60.46 10.176 6.809-2.611 12.975-5.918 18.311-9.656.169.627.358 1.251.595 1.867 6.174 16.075 33.241 20.631 60.462 10.176 27.22-10.455 44.272-31.965 38.098-48.039"/><path fill="none" stroke="#D8FFA5" stroke-width="5" stroke-miterlimit="10" d="M225.982 109.258c-3.021-7.855-11.031-12.949-21.609-14.896 17.068-11.315 26.261-27.05 21.471-39.518-6.177-16.074-33.244-20.635-60.461-10.179-7.015 2.694-13.343 6.124-18.778 10.001-.018-.05-.032-.102-.052-.152-6.174-16.076-33.251-20.633-60.46-10.178-27.222 10.456-44.276 31.967-38.104 48.043 2.792 7.266 9.862 12.164 19.273 14.402-15.603 11.168-23.785 26.049-19.206 37.953 6.176 16.079 33.251 20.633 60.46 10.176 6.809-2.611 12.975-5.918 18.311-9.656.169.627.358 1.251.595 1.867 6.174 16.075 33.241 20.631 60.462 10.176 27.22-10.455 44.272-31.965 38.098-48.039z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
1
web/app/themes/haiku-atelier-2024/assets/img/icons/arrow-droite.svg
Executable file
|
|
@ -0,0 +1 @@
|
|||
<svg viewBox="94.634 56.652 88.879 79.521" xmlns="http://www.w3.org/2000/svg"><path d="m94.623 136.156 88.869-36.863-88.869-42.648s21.33 20.87 21.33 39.756c0 18.891-21.33 39.755-21.33 39.755"/></svg>
|
||||
|
After Width: | Height: | Size: 201 B |
1
web/app/themes/haiku-atelier-2024/assets/img/icons/arrow.svg
Executable file
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="32.026 31.499 14.793 16.534"><path d="m32.026 31.499 6.858 16.534 7.935-16.534s-3.883 3.968-7.396 3.968c-3.515 0-7.397-3.968-7.397-3.968"/></svg>
|
||||
|
After Width: | Height: | Size: 195 B |
4
web/app/themes/haiku-atelier-2024/assets/img/icons/cloud-gris.svg
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg viewBox="4.189 16.921 81.623 56.159" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M85.241 48.817c-1.365-3.553-4.989-5.856-9.771-6.737 7.718-5.116 11.871-12.229 9.706-17.868-2.79-7.268-15.031-9.329-27.335-4.602-3.173 1.218-6.032 2.768-8.491 4.521l-.024-.068c-2.791-7.269-15.035-9.329-27.338-4.601C9.681 24.19 1.969 33.914 4.76 41.184c1.262 3.283 4.458 5.501 8.712 6.514C6.419 52.746 2.721 59.473 4.79 64.857c2.791 7.27 15.033 9.329 27.337 4.602 3.077-1.183 5.866-2.676 8.278-4.366.076.284.162.565.269.843 2.791 7.271 15.032 9.33 27.336 4.604 12.31-4.73 20.022-14.456 17.231-21.723" fill="#808080" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 651 B |
1
web/app/themes/haiku-atelier-2024/assets/img/icons/cloud-penche.svg
Executable file
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="2.433 9.473 85.134 70.17"><path fill="#E7FFB4" d="M84.857 38.272c-2.238-3.079-6.335-4.365-11.182-3.978 6.131-6.94 8.302-14.885 4.751-19.772-4.576-6.298-16.933-5.12-27.595 2.63-2.749 1.998-5.11 4.235-7.031 6.565l-.041-.06c-4.577-6.299-16.937-5.12-27.597 2.632C5.498 34.041.565 45.429 5.143 51.729c2.068 2.845 5.73 4.16 10.101 4.038-5.506 6.701-7.337 14.156-3.945 18.821 4.577 6.3 16.935 5.12 27.596-2.63 2.666-1.939 4.974-4.103 6.866-6.36.147.255.303.504.478.745 4.578 6.301 16.935 5.121 27.596-2.628 10.667-7.755 15.599-19.146 11.022-25.443"/></svg>
|
||||
|
After Width: | Height: | Size: 598 B |
4
web/app/themes/haiku-atelier-2024/assets/img/icons/cloud-rouge.svg
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg viewBox="4.189 16.921 81.623 56.159" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M85.241 48.817c-1.365-3.553-4.989-5.856-9.771-6.737 7.718-5.116 11.871-12.229 9.706-17.868-2.79-7.268-15.031-9.329-27.335-4.602-3.173 1.218-6.032 2.768-8.491 4.521l-.024-.068c-2.791-7.269-15.035-9.329-27.338-4.601C9.681 24.19 1.969 33.914 4.76 41.184c1.262 3.283 4.458 5.501 8.712 6.514C6.419 52.746 2.721 59.473 4.79 64.857c2.791 7.27 15.033 9.329 27.337 4.602 3.077-1.183 5.866-2.676 8.278-4.366.076.284.162.565.269.843 2.791 7.271 15.032 9.33 27.336 4.604 12.31-4.73 20.022-14.456 17.231-21.723" style="fill: rgb(73, 9, 24);"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 665 B |
4
web/app/themes/haiku-atelier-2024/assets/img/icons/cloud.svg
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg viewBox="4.189 16.921 81.623 56.159" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#E7FFB4" d="M85.241 48.817c-1.365-3.553-4.989-5.856-9.771-6.737 7.718-5.116 11.871-12.229 9.706-17.868-2.79-7.268-15.031-9.329-27.335-4.602-3.173 1.218-6.032 2.768-8.491 4.521l-.024-.068c-2.791-7.269-15.035-9.329-27.338-4.601C9.681 24.19 1.969 33.914 4.76 41.184c1.262 3.283 4.458 5.501 8.712 6.514C6.419 52.746 2.721 59.473 4.79 64.857c2.791 7.27 15.033 9.329 27.337 4.602 3.077-1.183 5.866-2.676 8.278-4.366.076.284.162.565.269.843 2.791 7.271 15.032 9.33 27.336 4.604 12.31-4.73 20.022-14.456 17.231-21.723"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 650 B |
1
web/app/themes/haiku-atelier-2024/assets/img/icons/cross.svg
Executable file
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" class="icon line-color" data-name="Line Color" viewBox="0 0 24 24"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 19 5 5"/><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 5 5 19" data-name="primary"/></svg>
|
||||
|
After Width: | Height: | Size: 358 B |
1
web/app/themes/haiku-atelier-2024/assets/img/icons/dot.svg
Executable file
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="34.739 35.077 8.402 7.319"><path d="M39.895 41.075q-1.494.606-2.617.369-1.123-.239-1.597-1.406-.445-1.097.188-2.068.634-.97 2.128-1.576 1.553-.63 2.641-.379 1.088.253 1.556 1.409.44 1.086-.134 2.046-.576.961-2.165 1.605M38.4 37.387q-1.168.474-1.66 1.053-.492.58-.208 1.281.28.69 1.028.773.748.085 1.939-.398 1.18-.479 1.658-1.06.477-.581.198-1.27-.289-.712-1.032-.785-.743-.072-1.923.406"/></svg>
|
||||
|
After Width: | Height: | Size: 446 B |
1
web/app/themes/haiku-atelier-2024/assets/img/icons/fleche-droite.svg
Executable file
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w4.org/2000/svg" width="15" height="15" viewBox="0 0 15 15"><path d="M8.293 2.293a1 1 0 0 1 1.414 0l4.5 4.5a1 1 0 0 1 0 1.414l-4.5 4.5a1 1 0 0 1-1.414-1.414L11 8.5H1.5a1 1 0 0 1 0-2H11L8.293 3.707a1 1 0 0 1 0-1.414" fill="red"/></svg>
|
||||
|
After Width: | Height: | Size: 258 B |
1
web/app/themes/haiku-atelier-2024/assets/img/icons/fleche-gauche.svg
Executable file
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" transform="scale(-1 1)" viewBox="0 0 15 15"><path d="M8.293 2.293a1 1 0 0 1 1.414 0l4.5 4.5a1 1 0 0 1 0 1.414l-4.5 4.5a1 1 0 0 1-1.414-1.414L11 8.5H1.5a1 1 0 0 1 0-2H11L8.293 3.707a1 1 0 0 1 0-1.414" /></svg>
|
||||
|
After Width: | Height: | Size: 271 B |
151
web/app/themes/haiku-atelier-2024/assets/img/logos/logo-full.svg
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="330.107px" height="330.773px" viewBox="0 0 330.107 330.773" enable-background="new 0 0 330.107 330.773"
|
||||
xml:space="preserve">
|
||||
<g id="logo_x2F_colors">
|
||||
<ellipse fill="#EBFFB8" cx="165.872" cy="162.37" rx="164.236" ry="161.992"/>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M256.14,174.292c0.624,1.266,0.236,5.389,0.142,5.907
|
||||
c-0.165,0.873-0.366,5.486-0.339,6.494c0.03,0.981-0.037,5.803-0.067,6.871c-0.061,2.059-0.419,3.634-0.353,5.689
|
||||
c0.065,2.075-0.045,4.115-0.176,6.188c-0.064,0.991-0.149,5.077-0.266,6.136c-0.214,1.976-0.326,4.438-0.703,6.396
|
||||
c-0.18,0.946-0.581,5.088-0.84,6.161c-0.479,1.982-1.034,5.444-1.652,7.539c-0.396,1.344-2.98,6.876-6.584,9.736
|
||||
c-0.846,0.673-1.574,1.006-2.564,1.521c-0.94,0.489-1.906,0.73-3.013,0.883c-1.231,0.17-2.346,0.426-3.595,0.229
|
||||
c-2.072-0.325-4.112-0.837-5.931-1.694c-1.838-0.866-3.381-2.077-4.495-3.51c-0.598-0.765-2.314-5.062-2.592-6.104
|
||||
c-0.538-2.038-1.509-7.803-1.529-8.775c-0.027-1.084-0.255-2.892-0.326-3.978c-0.19-3.009-0.632-9.749-0.718-11.853
|
||||
c-0.044-1.009-0.507-8.058-0.516-9.022c-0.012-1.088,0.005-2.174,0.022-3.261c0.032-1.964,0.349-3.895,0.496-5.851
|
||||
c0.148-1.976,0.499-7.81,0.55-8.77c0.052-0.972,0.009-2.19,0.402-3.124c0.611-1.444,4.905-2.956,5.326-3.182
|
||||
c0.343-0.183,0.722-0.342,1.133-0.412c0.784-0.132,2.33-0.121,2.709,0.41c0.54,0.75-0.93,10.881-1.03,11.898
|
||||
c-0.207,2.056-0.365,4.11-0.477,6.172c-0.114,2.09-0.017,10.391,0.027,12.458c0.021,0.975,0.171,5.19,0.251,5.752
|
||||
c0.299,2.018,0.173,4.049,0.187,6.077c0.014,2.065,1.825,15.725,2.931,17.501c0.835,1.34,3.688,3.269,5.552,3.414
|
||||
c0.75,0.059,1.964-0.274,2.469-0.804c0.314-0.333,1.6-1.845,2.161-2.56c0.754-0.963,1.086-1.943,1.684-3.887
|
||||
c0.283-0.925,0.844-3.277,0.982-4.224c0.158-1.088,0.746-4.319,0.843-5.301c0.136-1.396,0.497-9.892,0.645-10.94
|
||||
c0.278-2.004,0.508-7.808,0.473-9.878c-0.019-1.023,0.288-3.498,0.264-4.521c-0.025-1.097,0.062-7.451-0.08-9.534
|
||||
c-0.137-2.058,0.086-4.604-0.083-6.658c-0.052-0.637,0.005-1.417,0.323-2.033c0.3-0.585,0.672-0.698,1.31-0.966
|
||||
c0.867-0.366,1.639-0.822,2.529-1.164C252.635,175.333,255.338,174.318,256.14,174.292z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M95.368,240.441c-0.003-0.45-0.282-2.143-0.28-2.598
|
||||
c0.002-0.916-0.063-1.613,0-2.526c0.067-1.018-0.075-2.626,0-3.789c0.028-0.469,0.139-0.42,0.139-1.402
|
||||
c0-1.013,0.026-3.481,0-4.491c-0.052-2.035,0.133-3.676,0.106-5.721c-0.054-4.137,0.167-8.312-0.134-12.442
|
||||
c-0.151-2.07-0.123-4.101,0.006-6.17c0.062-0.968,0.126-0.463,0.149-1.431c0.025-1.058-0.081-0.694-1.558-0.598
|
||||
c-1.177,0.072-2.309,0.132-3.492,0.105c-1.359-0.03-2.67,0.272-4.027,0.317c-1.237,0.041-2.477,0.039-3.71,0.118
|
||||
c-1.093,0.068-2.679-0.308-3.606,0.208c-0.757,0.422-0.453-0.317-0.453,0.297c0.002,1.086-0.03,2.167-0.084,3.252
|
||||
c-0.049,0.997-0.096,1.997-0.069,2.993c0.025,0.986-0.066,1.782-0.126,2.947c-0.049,0.959-0.087,1.794-0.003,2.741
|
||||
c0.094,1.015-0.052,2.041-0.121,3.052c-0.067,0.965,0.021,1.937,0.008,2.898c-0.015,1.099-0.132,2.193-0.23,3.289
|
||||
c-0.086,0.994,0.155,5.111,0.107,6.195c-0.044,0.984,0.115,4.467,0.115,5.528c0.003,1.692,0.423,5.233-0.175,7.165
|
||||
c-0.235,0.757-0.188,1.873-0.806,2.492c-0.599,0.6-2.155,1.116-3.001,1.451c-1.412,0.557-3.41,0.354-3.75-1.023
|
||||
c-0.195-0.778-0.009-2.041-0.013-2.83c-0.002-1.062-0.07-2.967-0.06-4.031c0.014-2.105,0.136-4.211,0.087-6.322
|
||||
c-0.05-2.12-0.014-3.904-0.123-6.022c-0.041-0.8,0.034-4.426,0.036-5.413c0-2.055-0.007-4.104,0.058-6.157
|
||||
c0.125-4.183-0.14-8.346-0.163-12.525c-0.026-4.222,0.023-8.432,0.29-12.648c0.066-1.014,0.131-2.028,0.189-3.043
|
||||
c0.061-1.045,0.003-1.885,0.072-2.956c0.031-0.465,0.067-2.013,0.235-2.413c0.146-0.351,0.546-0.648,0.931-0.939
|
||||
c0.621-0.467,1.002-0.896,1.615-1.263c0.967-0.579,1.946-1.144,2.898-1.738c1.002-0.626,1.672-1.007,2.858-0.403
|
||||
c0.742,0.378,0.537,0.563,0.377,1.263c-0.09,0.405,0,1.084,0,1.499c0,0.429-0.104,1.023-0.067,1.553
|
||||
c0.034,0.449-0.324,2.527-0.344,2.976c-0.018,0.44-0.016,0.953-0.067,1.393c-0.069,0.587-0.163,1.605-0.273,2.624
|
||||
c-0.048,0.453,0.019,1.029-0.113,1.466c-0.127,0.44-0.173,0.89-0.186,1.337c-0.03,0.982-0.052,1.971,0.017,2.952
|
||||
c0.031,0.433-0.145,2.863,0.655,2.945c0.435,0.045,0.896,0.152,1.326,0.113c0.734-0.062,1.469-0.086,2.205-0.122
|
||||
c1.279-0.064,2.549-0.211,3.816-0.351c1.3-0.145,2.833-0.17,4.146-0.118c1.156,0.045,2.217,0.032,3.385-0.043
|
||||
c0.46-0.029,0.968,0.003,1.216-0.347c0.284-0.402,0.339-2.753,0.406-3.203c0.309-2.05,0.538-4.114,0.69-6.176
|
||||
c0.072-0.963,0.12-1.929,0.203-2.891c0.082-0.952,0.313-2.784,0.766-3.681c0.388-0.767,1.381-1.289,2.25-1.704
|
||||
c1.003-0.479,2.092-0.986,3.168-1.357c2.245-0.772,2.659,0.498,2.522,1.66c-0.113,0.953-0.435,4.021-0.43,4.974
|
||||
c0.005,1.073-0.159,2.128-0.207,3.198c-0.188,4.196-0.437,8.356-0.873,12.537c-0.433,4.156-0.514,8.289-0.494,12.461
|
||||
c0.014,2.109-0.104,4.51-0.25,6.616c-0.144,2.054-0.141,3.588-0.136,5.622c0.003,2.27-0.221,4.759-0.171,7.032
|
||||
c0.048,2.271,0.13,4.554,0.098,6.824c-0.017,1.136-0.113,2.694-0.163,3.826c-0.017,0.426,0.068,1.238-0.175,1.636
|
||||
c-0.256,0.411-1.326,0.97-1.795,1.238c-1.447,0.833-2.262,1.34-3.496,1.82c-0.37,0.146-0.939-0.022-1.236-0.319
|
||||
c-0.147-0.15-0.511-0.832-0.549-1.019C95.301,241.81,95.375,241.513,95.368,240.441z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M133.788,243.492c-0.473-0.146-0.111-10.932-0.105-11.157
|
||||
c-0.003,0.12,0.004-3.417-0.024-4.714c-0.031-1.412-0.125-2.748-0.186-4.158c-0.062-1.408-0.096-2.819-0.134-4.229
|
||||
c-0.037-1.438-0.025-2.886,0.001-4.322c0.059-2.86,0.245-5.72,0.39-8.579c0.145-2.88,0.111-4.506,0.111-7.389
|
||||
c-0.998,0.313-1.975,0.225-2.996,0.501c-0.503,0.138-3.559,0.098-4.185,0.159c-1.162,0.111-2.771-0.142-3.083,0.349
|
||||
c-0.368,0.578-0.693,3.362-0.652,4.426c0.076,1.918-0.486,10.661-0.542,11.715c-0.052,0.989-0.371,5.674-0.421,6.173
|
||||
c-0.195,1.982-0.023,3.389-0.13,5.372c-0.055,0.988-0.091,2.623-0.218,3.61c-0.059,0.438,0.042,1.21,0.042,2.317
|
||||
c0,1.721-0.049,6.916-0.392,7.507c-0.459,0.796-1.721,1.088-2.572,1.574c-0.812,0.464-2.47,1.163-3.639,1.163
|
||||
c-0.315,0-0.707-0.336-0.945-1.58c-0.158-0.815-0.363-5.711-0.198-6.723c0.154-0.939-0.025-1.885-0.002-2.834
|
||||
c0.013-0.494,0.315-4.94,0.365-5.894c0.056-1.054,0.183-4.995,0.312-5.938c0.139-1.002,0.459-8.058,0.416-9.095
|
||||
c-0.04-0.993,0.652-10.098,0.926-12.114c0.125-0.933,0.248-1.87,0.427-2.8c0.19-0.987,0.649-2.778,0.914-3.751
|
||||
c0.519-1.916,1.082-2.956,1.688-4.877c0.603-1.912,1.541-3.795,2.341-5.661c0.312-0.728,1.203-2.604,1.861-3.222
|
||||
c2.116-1.99,3.484-2.73,5.288-3.537c0.977-0.434,2.521-1.086,3.639-1.262c0.536-0.083,1.714-0.323,2.261-0.366
|
||||
c0.555-0.046,1.418-0.13,1.968-0.067c0.936,0.106,1.594,0.928,2.027,1.489c0.606,0.779,1.078,1.619,1.419,2.487
|
||||
c0.665,1.708,0.746,4.656,0.736,6.425c-0.005,0.943,0.141,1.881,0.202,2.821c0.065,1.045,0.018,2.095-0.007,3.14
|
||||
c-0.052,2.011-0.119,4.02-0.227,6.029c-0.111,2.062-0.245,4.124-0.356,6.188c-0.111,2.025,0.161,4.081-0.101,6.099
|
||||
c-0.117,0.907-0.126,2.009-0.169,2.923c-0.047,1.061-0.066,3.095-0.073,4.155c-0.011,2.084,0.041,3.484,0.067,5.57
|
||||
c0.034,2.206,0.117,4.001,0.136,6.205c0.012,1.05,0.007,2.528,0.004,3.574c-0.005,1.147,0.157,2.117,0.069,3.26
|
||||
c-0.039,0.492,0.069,1.789,0.134,2.524c0.084,0.864,0.334,4.029-0.195,4.89c-0.517,0.847-1.518,1.104-2.547,1.421
|
||||
C136.24,243.656,135.161,243.914,133.788,243.492z M133.932,192.823c-0.111-2.553-0.137-5.758-0.532-8.168
|
||||
c-0.184-1.136-0.433-3.177-1.091-4.207c-0.205-0.32-0.477-0.714-1.575-0.988c-1.123-0.281-1.547,0.266-1.946,0.372
|
||||
c-2.615,0.696-2.825,3.775-3.449,5.563c-0.922,2.628-1.214,5.829-1.893,8.21c0.804,0,1.529,0.134,2.324,0.058
|
||||
c0.932-0.091,1.7,0.077,2.607-0.018C130.454,193.426,132.048,193.397,133.932,192.823z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M208.743,178.101c-0.564,0.717-5.647,6.054-6.142,6.852
|
||||
c-0.49,0.79-2.506,2.904-2.761,3.294c-0.19,0.286-2.529,3.547-3.214,4.512c-0.35,0.494-1.129,1.836-1.186,2.396
|
||||
c-0.094,0.941-0.302,1.752,0.275,2.639c0.242,0.374,0.496,0.946,0.694,1.34c0.205,0.406,4.422,9.228,4.639,9.625
|
||||
c0.259,0.471,5.928,12.979,6.146,13.883c0.233,0.98,2.601,6.334,3.644,8.222c1.016,1.844,2.092,3.97,3.22,5.776
|
||||
c0.483,0.776,1.476,2.986,1.064,3.516c-0.597,0.761-1.53,1.477-2.408,2.021c-1.564,0.966-3.048,1.277-4.507-0.113
|
||||
c-0.712-0.678-1.12-1.798-1.609-2.58c-0.592-0.94-3.889-6.89-4.527-8.8c-1.298-3.887-2.77-6.743-4.39-10.556
|
||||
c-0.39-0.915-1.095-2.844-1.505-3.752c-0.42-0.92-0.957-1.804-1.37-2.72c-0.854-1.907-2.103-4.56-2.916-6.475
|
||||
c-1.568-3.705-2.947-5.791-4.01-9.153c-0.127-0.399-0.166-1.336-0.056-1.75c0.105-0.392,0.621-1.737,0.758-2.125
|
||||
c0.292-0.815,1.361-2.113,1.624-2.447c0.268-0.336,1.851-2.58,2.42-3.308c0.553-0.703,1.856-2.596,2.341-3.325
|
||||
c0.484-0.729,4.608-5.682,6.583-7.556c0.803-0.762,4.247-4.194,5.252-4.09c1.033,0.107,1.478,2.067,1.667,2.72
|
||||
C208.606,176.621,209.252,177.455,208.743,178.101z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M183.833,175.865c0.031,0.313,0.395,7.007,0.33,7.995
|
||||
c-0.027,0.414-0.22,3.441-0.132,4.419c0.086,0.953,0.01,5.818-0.057,6.771c-0.023,0.31,0.121,3.432,0.126,3.902
|
||||
c0.007,1-0.165,3.777-0.207,4.753c-0.046,1.034-0.039,3.636,0,4.104c0.035,0.44,0.098,3.667,0.104,4.209
|
||||
c0.023,2.042-0.047,4.101,0.031,6.138c0.079,2.019-0.144,4.786-0.241,6.81c-0.105,2.21-0.021,10.085-0.105,11.158
|
||||
c-0.069,0.873,0.077,3.067-0.318,3.892c-0.386,0.817-2.291,1.859-3.162,2.346c-0.697,0.387-1.742,0.95-2.658,0.91
|
||||
c-0.807-0.035-1.401-1.633-1.263-2.791c0.041-0.343,0.054-2.939,0.063-3.34c0.117-4.103,0.244-13.325,0.283-14.316
|
||||
c0.018-0.471,0.194-5.161,0.141-5.894c-0.03-0.395,0.007-4.662,0.007-5.555c-0.001-1.058,0.002-2.117,0.004-3.172
|
||||
c0.002-1.984-0.249-3.995-0.044-5.974c0.05-0.499-0.107-4.751-0.227-5.766c-0.242-2.041-0.191-4.09-0.295-6.138
|
||||
c-0.103-2.011-0.047-4.012,0.131-6.013c0.084-0.969,0.18-5.238,0.294-6.25c0.117-1.076,1.048-1.555,1.899-2.098
|
||||
c1.242-0.794,4.192-2.041,5.014-2.146C183.825,174.873,183.764,175.179,183.833,175.865z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M163.603,202.786c-0.327,1.961-0.003,4.088-0.327,6.051
|
||||
c-0.153,0.913-0.331,3.709-0.331,4.727c0,1.826-0.416,5.138-0.282,7.158c0.142,2.104-0.01,4.69-0.141,6.735
|
||||
c-0.132,2.099-0.14,3.929-0.14,6.035c0,1.009,0.076,5.682-0.28,6.666c-0.511,1.408-3.76,2.572-5.318,3.204
|
||||
c-0.928,0.376-1.852,0.286-2.623-0.283c-0.746-0.547-0.653-1.295-0.536-2.018c0.146-0.922,0.243-2.868,0.477-3.778
|
||||
c0.256-0.989,0.029-5.816,0.18-6.151c0.18-0.4,0.132-2.234,0.168-2.729c0.031-0.428,0.06-5.578,0.071-6.138
|
||||
c0.053-1.972,0.034-8.552,0.096-10.551c0.059-2.027,0.42-4.048,0.451-6.074c0.033-2.093-0.106-4.188-0.186-6.28
|
||||
c-0.028-0.744-0.072-1.49-0.067-2.236c0.008-0.719-0.163-1.542-0.03-2.25c0.111-0.6,0.873-0.85,1.476-1.122
|
||||
c0.88-0.397,1.753-0.805,2.62-1.215c1.111-0.526,2.591-1.208,3.646-0.179c0.527,0.517,0.551,1.356,0.675,1.979
|
||||
C163.361,195.148,163.769,201.799,163.603,202.786z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M158.061,188.91c-1.36,0.13-3.944,0.762-4.253-0.85
|
||||
c-0.118-0.616,0.837-1.216,1.345-1.625c0.746-0.603,1.592-1.134,2.547-1.53c0.395-0.161,0.902-0.395,1.357-0.424
|
||||
c0.467-0.029,0.935,0.163,1.361,0.281c0.545,0.149,1.135,0.223,1.706,0.298c0.448,0.058,1.194-0.014,1.571,0.211
|
||||
c0.593,0.354-0.886,1.479-1.165,1.734c-0.8,0.729-1.517,1.293-2.582,1.774c-0.035-0.048-0.413,0.074-0.448,0.025
|
||||
C158.361,188.914,158.097,188.958,158.061,188.91z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M155.311,183.014c-1.12-0.002-0.427-0.802,0.003-1.173
|
||||
c0.68-0.582,4.113-2.3,5.148-2.56c1.005-0.254,2.154-0.189,3.191-0.109c1.102,0.086,2.107,0.288,1.062,1.136
|
||||
c-0.776,0.629-1.587,1.238-2.521,1.727c-1.057,0.552-1.993,0.719-3.231,0.859C158.961,182.873,156.52,183.014,155.311,183.014z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M154.77,177.503c0.293-0.291,0.844-0.653,1.253-0.86
|
||||
c0.483-0.245,0.571-0.458,1.08-0.672c1.113-0.468,1.478-1.019,2.51-1.581c0.393-0.214,0.591-0.433,1.063-0.536
|
||||
c0.601-0.134,3.981-0.078,4.499-0.098c0.503-0.022,1.013,0.03,1.516,0.051C164.062,176.816,163.687,177.607,154.77,177.503z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path fill="#202020" d="M75,149.773c15.5,2.5,165.69,0,175.47,0s9.028-6.834,9.028-6.834s1.959-4.05-31.998-5.666
|
||||
c-33.958-1.617-60.152,2.646-76.576,5.573s-65.882-0.384-71.424-0.601S59.5,147.273,75,149.773z"/>
|
||||
<path fill="#202020" d="M250.495,123.773c-87.74-1.097-128.746,6.052-159.245,4.25c-20.582-1.216-20.922-7.918-21.211-11.084
|
||||
s0-6.406,33.957-8.022c33.958-1.617,54.865,5.762,77.504,6.606c22.638,0.846,63.45,0.664,68.995,0.784
|
||||
C260.5,116.523,270.5,124.023,250.495,123.773z"/>
|
||||
<path fill="#202020" d="M80.75,89.329c0,0,121.5-1.806,166.72,1.444c9.754,0.701,8.53,8,8.53,8s-4.541,6.668-33,6.5
|
||||
c-33.996-0.201-52.361-8.656-75-9.5c-22.638-0.846-67.416,2.225-72.958,2.442S63.612,89.329,80.75,89.329z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="home_loading">
|
||||
</g>
|
||||
<g id="home_scroll">
|
||||
</g>
|
||||
<g id="home_menu">
|
||||
</g>
|
||||
<g id="shop_w_x2F_menu">
|
||||
</g>
|
||||
<g id="shop_scroll">
|
||||
</g>
|
||||
<g id="shop_bottom">
|
||||
</g>
|
||||
<g id="prod_small_info">
|
||||
</g>
|
||||
<g id="prod_big_info">
|
||||
</g>
|
||||
<g id="prod_earrings">
|
||||
</g>
|
||||
<g id="prod_bottom">
|
||||
</g>
|
||||
<g id="about">
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
|
|
@ -0,0 +1 @@
|
|||
<svg viewBox="29.047 55.883 209.764 80.943" xmlns="http://www.w3.org/2000/svg"><path d="M38.421 133.462c16.438 3.1 175.723 0 186.094 0 10.372 0 9.575-8.475 9.575-8.475s2.077-5.022-33.935-7.026c-36.015-2.005-63.796 3.282-81.213 6.912-17.419 3.628-69.872-.477-75.749-.747-5.878-.269-21.211 6.234-4.772 9.336m6.099-74.953S173.376 56.27 221.333 60.3c10.344.87 9.046 9.92 9.046 9.92s-4.816 8.269-34.997 8.06c-36.054-.25-55.531-10.734-79.542-11.78-24.007-1.049-71.499 2.759-77.374 3.029-5.878.268-12.123-11.02 6.054-11.02m180.022 42.712c-93.052-1.36-136.54 7.504-168.887 5.27-21.829-1.507-22.188-9.818-22.495-13.744s0-7.943 36.014-9.948c36.013-2.005 58.187 7.146 82.195 8.191 24.01 1.049 67.293.823 73.173.972 10.61.268 21.215 9.568 0 9.259" fill="#2B2B2B"/></svg>
|
||||
|
After Width: | Height: | Size: 760 B |
151
web/app/themes/haiku-atelier-2024/assets/img/logos/logo-text.svg
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="330.107px" height="330.773px" viewBox="0 0 330.107 330.773" enable-background="new 0 0 330.107 330.773"
|
||||
xml:space="preserve">
|
||||
<g id="logo_x2F_colors">
|
||||
<ellipse display="none" fill="#DEFDB5" cx="165.872" cy="162.37" rx="164.236" ry="161.992"/>
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M256.14,137.243c0.624,1.266,0.236,5.389,0.142,5.907
|
||||
c-0.165,0.873-0.366,5.486-0.339,6.494c0.03,0.981-0.037,5.803-0.067,6.871c-0.061,2.059-0.419,3.634-0.353,5.689
|
||||
c0.065,2.075-0.045,4.115-0.176,6.188c-0.064,0.991-0.149,5.077-0.266,6.136c-0.214,1.976-0.326,4.438-0.703,6.396
|
||||
c-0.18,0.946-0.581,5.088-0.84,6.161c-0.479,1.982-1.034,5.444-1.652,7.539c-0.396,1.344-2.98,6.876-6.584,9.736
|
||||
c-0.846,0.673-1.574,1.006-2.564,1.521c-0.94,0.489-1.906,0.73-3.013,0.883c-1.231,0.17-2.346,0.426-3.595,0.229
|
||||
c-2.072-0.325-4.112-0.837-5.931-1.694c-1.838-0.866-3.381-2.077-4.495-3.51c-0.598-0.765-2.314-5.062-2.592-6.104
|
||||
c-0.538-2.038-1.509-7.803-1.529-8.775c-0.027-1.084-0.255-2.892-0.326-3.978c-0.19-3.009-0.632-9.749-0.718-11.853
|
||||
c-0.044-1.009-0.507-8.058-0.516-9.022c-0.012-1.088,0.005-2.174,0.022-3.261c0.032-1.964,0.349-3.895,0.496-5.851
|
||||
c0.148-1.976,0.499-7.81,0.55-8.77c0.052-0.972,0.009-2.19,0.402-3.124c0.611-1.444,4.905-2.956,5.326-3.182
|
||||
c0.343-0.183,0.722-0.342,1.133-0.412c0.784-0.132,2.33-0.121,2.709,0.41c0.54,0.75-0.93,10.881-1.03,11.898
|
||||
c-0.207,2.056-0.365,4.11-0.477,6.172c-0.114,2.09-0.017,10.391,0.027,12.458c0.021,0.975,0.171,5.19,0.251,5.752
|
||||
c0.299,2.018,0.173,4.049,0.187,6.077c0.014,2.065,1.825,15.725,2.931,17.501c0.835,1.34,3.688,3.269,5.552,3.414
|
||||
c0.75,0.059,1.964-0.274,2.469-0.804c0.314-0.333,1.6-1.845,2.161-2.56c0.754-0.963,1.086-1.943,1.684-3.887
|
||||
c0.283-0.925,0.844-3.277,0.982-4.224c0.158-1.088,0.746-4.319,0.843-5.301c0.136-1.396,0.497-9.892,0.645-10.94
|
||||
c0.278-2.004,0.508-7.808,0.473-9.878c-0.019-1.023,0.288-3.498,0.264-4.521c-0.025-1.097,0.062-7.451-0.08-9.534
|
||||
c-0.137-2.058,0.086-4.604-0.083-6.658c-0.052-0.637,0.005-1.417,0.323-2.033c0.3-0.585,0.672-0.698,1.31-0.966
|
||||
c0.867-0.366,1.639-0.822,2.529-1.164C252.635,138.285,255.338,137.27,256.14,137.243z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M95.368,203.393c-0.003-0.45-0.282-2.143-0.28-2.598
|
||||
c0.002-0.916-0.063-1.613,0-2.526c0.067-1.018-0.075-2.626,0-3.789c0.028-0.469,0.139-0.42,0.139-1.402
|
||||
c0-1.013,0.026-3.481,0-4.491c-0.052-2.035,0.133-3.676,0.106-5.721c-0.054-4.137,0.167-8.312-0.134-12.442
|
||||
c-0.151-2.07-0.123-4.101,0.006-6.17c0.062-0.968,0.126-0.463,0.149-1.431c0.025-1.058-0.081-0.694-1.558-0.598
|
||||
c-1.177,0.072-2.309,0.132-3.492,0.105c-1.359-0.03-2.67,0.272-4.027,0.317c-1.237,0.041-2.477,0.039-3.71,0.118
|
||||
c-1.093,0.068-2.679-0.308-3.606,0.208c-0.757,0.422-0.453-0.317-0.453,0.297c0.002,1.086-0.03,2.167-0.084,3.252
|
||||
c-0.049,0.997-0.096,1.997-0.069,2.993c0.025,0.986-0.066,1.782-0.126,2.947c-0.049,0.959-0.087,1.794-0.003,2.741
|
||||
c0.094,1.015-0.052,2.041-0.121,3.052c-0.067,0.965,0.021,1.937,0.008,2.898c-0.015,1.099-0.132,2.193-0.23,3.289
|
||||
c-0.086,0.994,0.155,5.111,0.107,6.195c-0.044,0.984,0.115,4.467,0.115,5.528c0.003,1.692,0.423,5.233-0.175,7.165
|
||||
c-0.235,0.757-0.188,1.873-0.806,2.492c-0.599,0.6-2.155,1.116-3.001,1.451c-1.412,0.557-3.41,0.354-3.75-1.023
|
||||
c-0.195-0.778-0.009-2.041-0.013-2.83c-0.002-1.062-0.07-2.967-0.06-4.031c0.014-2.105,0.136-4.211,0.087-6.322
|
||||
c-0.05-2.12-0.014-3.904-0.123-6.022c-0.041-0.8,0.034-4.426,0.036-5.413c0-2.055-0.007-4.104,0.058-6.157
|
||||
c0.125-4.183-0.14-8.346-0.163-12.525c-0.026-4.222,0.023-8.432,0.29-12.648c0.066-1.014,0.131-2.028,0.189-3.043
|
||||
c0.061-1.045,0.003-1.885,0.072-2.956c0.031-0.465,0.067-2.013,0.235-2.413c0.146-0.351,0.546-0.648,0.931-0.939
|
||||
c0.621-0.467,1.002-0.896,1.615-1.263c0.967-0.579,1.946-1.144,2.898-1.738c1.002-0.626,1.672-1.007,2.858-0.403
|
||||
c0.742,0.378,0.537,0.563,0.377,1.263c-0.09,0.405,0,1.084,0,1.499c0,0.429-0.104,1.023-0.067,1.553
|
||||
c0.034,0.449-0.324,2.527-0.344,2.976c-0.018,0.44-0.016,0.953-0.067,1.393c-0.069,0.587-0.163,1.605-0.273,2.624
|
||||
c-0.048,0.453,0.019,1.029-0.113,1.466c-0.127,0.44-0.173,0.89-0.186,1.337c-0.03,0.982-0.052,1.971,0.017,2.952
|
||||
c0.031,0.433-0.145,2.863,0.655,2.945c0.435,0.045,0.896,0.152,1.326,0.113c0.734-0.062,1.469-0.086,2.205-0.122
|
||||
c1.279-0.064,2.549-0.211,3.816-0.351c1.3-0.145,2.833-0.17,4.146-0.118c1.156,0.045,2.217,0.032,3.385-0.043
|
||||
c0.46-0.029,0.968,0.003,1.216-0.347c0.284-0.402,0.339-2.753,0.406-3.203c0.309-2.05,0.538-4.114,0.69-6.176
|
||||
c0.072-0.963,0.12-1.929,0.203-2.891c0.082-0.952,0.313-2.784,0.766-3.681c0.388-0.767,1.381-1.289,2.25-1.704
|
||||
c1.003-0.479,2.092-0.986,3.168-1.357c2.245-0.772,2.659,0.498,2.522,1.66c-0.113,0.953-0.435,4.021-0.43,4.974
|
||||
c0.005,1.073-0.159,2.128-0.207,3.198c-0.188,4.196-0.437,8.356-0.873,12.537c-0.433,4.156-0.514,8.289-0.494,12.461
|
||||
c0.014,2.109-0.104,4.51-0.25,6.616c-0.144,2.054-0.141,3.588-0.136,5.622c0.003,2.27-0.221,4.759-0.171,7.032
|
||||
c0.048,2.271,0.13,4.554,0.098,6.824c-0.017,1.136-0.113,2.694-0.163,3.826c-0.017,0.426,0.068,1.238-0.175,1.636
|
||||
c-0.256,0.411-1.326,0.97-1.795,1.238c-1.447,0.833-2.262,1.34-3.496,1.82c-0.37,0.146-0.939-0.022-1.236-0.319
|
||||
c-0.147-0.15-0.511-0.832-0.549-1.019C95.301,204.762,95.375,204.465,95.368,203.393z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M133.788,206.443c-0.473-0.146-0.111-10.932-0.105-11.157
|
||||
c-0.003,0.12,0.004-3.417-0.024-4.714c-0.031-1.412-0.125-2.748-0.186-4.158c-0.062-1.408-0.096-2.819-0.134-4.229
|
||||
c-0.037-1.438-0.025-2.886,0.001-4.322c0.059-2.86,0.245-5.72,0.39-8.579c0.145-2.88,0.111-4.506,0.111-7.389
|
||||
c-0.998,0.313-1.975,0.225-2.996,0.501c-0.503,0.138-3.559,0.098-4.185,0.159c-1.162,0.111-2.771-0.142-3.083,0.349
|
||||
c-0.368,0.578-0.693,3.362-0.652,4.426c0.076,1.918-0.486,10.661-0.542,11.715c-0.052,0.989-0.371,5.674-0.421,6.173
|
||||
c-0.195,1.982-0.023,3.389-0.13,5.372c-0.055,0.988-0.091,2.623-0.218,3.61c-0.059,0.438,0.042,1.21,0.042,2.317
|
||||
c0,1.721-0.049,6.916-0.392,7.507c-0.459,0.796-1.721,1.088-2.572,1.574c-0.812,0.464-2.47,1.163-3.639,1.163
|
||||
c-0.315,0-0.707-0.336-0.945-1.58c-0.158-0.815-0.363-5.711-0.198-6.723c0.154-0.939-0.025-1.885-0.002-2.834
|
||||
c0.013-0.494,0.315-4.94,0.365-5.894c0.056-1.054,0.183-4.995,0.312-5.938c0.139-1.002,0.459-8.058,0.416-9.095
|
||||
c-0.04-0.993,0.652-10.098,0.926-12.114c0.125-0.933,0.248-1.87,0.427-2.8c0.19-0.987,0.649-2.778,0.914-3.751
|
||||
c0.519-1.916,1.082-2.956,1.688-4.877c0.603-1.912,1.541-3.795,2.341-5.661c0.312-0.728,1.203-2.604,1.861-3.222
|
||||
c2.116-1.99,3.484-2.73,5.288-3.537c0.977-0.434,2.521-1.086,3.639-1.262c0.536-0.083,1.714-0.323,2.261-0.366
|
||||
c0.555-0.046,1.418-0.13,1.968-0.067c0.936,0.106,1.594,0.928,2.027,1.489c0.606,0.779,1.078,1.619,1.419,2.487
|
||||
c0.665,1.708,0.746,4.656,0.736,6.425c-0.005,0.943,0.141,1.881,0.202,2.821c0.065,1.045,0.018,2.095-0.007,3.14
|
||||
c-0.052,2.011-0.119,4.02-0.227,6.029c-0.111,2.062-0.245,4.124-0.356,6.188c-0.111,2.025,0.161,4.081-0.101,6.099
|
||||
c-0.117,0.907-0.126,2.009-0.169,2.923c-0.047,1.061-0.066,3.095-0.073,4.155c-0.011,2.084,0.041,3.484,0.067,5.57
|
||||
c0.034,2.206,0.117,4.001,0.136,6.205c0.012,1.05,0.007,2.528,0.004,3.574c-0.005,1.147,0.157,2.117,0.069,3.26
|
||||
c-0.039,0.492,0.069,1.789,0.134,2.524c0.084,0.864,0.334,4.029-0.195,4.89c-0.517,0.847-1.518,1.104-2.547,1.421
|
||||
C136.24,206.607,135.161,206.865,133.788,206.443z M133.932,155.774c-0.111-2.553-0.137-5.758-0.532-8.168
|
||||
c-0.184-1.136-0.433-3.177-1.091-4.207c-0.205-0.32-0.477-0.714-1.575-0.988c-1.123-0.281-1.547,0.266-1.946,0.372
|
||||
c-2.615,0.696-2.825,3.775-3.449,5.563c-0.922,2.628-1.214,5.829-1.893,8.21c0.804,0,1.529,0.134,2.324,0.058
|
||||
c0.932-0.091,1.7,0.077,2.607-0.018C130.454,156.377,132.048,156.349,133.932,155.774z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M208.743,141.052c-0.564,0.717-5.647,6.054-6.142,6.852
|
||||
c-0.49,0.79-2.506,2.904-2.761,3.294c-0.19,0.286-2.529,3.547-3.214,4.512c-0.35,0.494-1.129,1.836-1.186,2.396
|
||||
c-0.094,0.941-0.302,1.752,0.275,2.639c0.242,0.374,0.496,0.946,0.694,1.34c0.205,0.406,4.422,9.228,4.639,9.625
|
||||
c0.259,0.471,5.928,12.979,6.146,13.883c0.233,0.98,2.601,6.334,3.644,8.222c1.016,1.844,2.092,3.97,3.22,5.776
|
||||
c0.483,0.776,1.476,2.986,1.064,3.516c-0.597,0.761-1.53,1.477-2.408,2.021c-1.564,0.966-3.048,1.277-4.507-0.113
|
||||
c-0.712-0.678-1.12-1.798-1.609-2.58c-0.592-0.94-3.889-6.89-4.527-8.8c-1.298-3.887-2.77-6.743-4.39-10.556
|
||||
c-0.39-0.915-1.095-2.844-1.505-3.752c-0.42-0.92-0.957-1.804-1.37-2.72c-0.854-1.907-2.103-4.56-2.916-6.475
|
||||
c-1.568-3.705-2.947-5.791-4.01-9.153c-0.127-0.399-0.166-1.336-0.056-1.75c0.105-0.392,0.621-1.737,0.758-2.125
|
||||
c0.292-0.815,1.361-2.113,1.624-2.447c0.268-0.336,1.851-2.58,2.42-3.308c0.553-0.703,1.856-2.596,2.341-3.325
|
||||
c0.484-0.729,4.608-5.682,6.583-7.556c0.803-0.762,4.247-4.194,5.252-4.09c1.033,0.107,1.478,2.067,1.667,2.72
|
||||
C208.606,139.572,209.252,140.406,208.743,141.052z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M183.833,138.816c0.031,0.313,0.395,7.007,0.33,7.995
|
||||
c-0.027,0.414-0.22,3.441-0.132,4.419c0.086,0.953,0.01,5.818-0.057,6.771c-0.023,0.31,0.121,3.432,0.126,3.902
|
||||
c0.007,1-0.165,3.777-0.207,4.753c-0.046,1.034-0.039,3.636,0,4.104c0.035,0.44,0.098,3.667,0.104,4.209
|
||||
c0.023,2.042-0.047,4.101,0.031,6.138c0.079,2.019-0.144,4.786-0.241,6.81c-0.105,2.21-0.021,10.085-0.105,11.158
|
||||
c-0.069,0.873,0.077,3.067-0.318,3.892c-0.386,0.817-2.291,1.859-3.162,2.346c-0.697,0.387-1.742,0.95-2.658,0.91
|
||||
c-0.807-0.035-1.401-1.633-1.263-2.791c0.041-0.343,0.054-2.939,0.063-3.34c0.117-4.103,0.244-13.325,0.283-14.316
|
||||
c0.018-0.471,0.194-5.161,0.141-5.894c-0.03-0.395,0.007-4.662,0.007-5.555c-0.001-1.058,0.002-2.117,0.004-3.172
|
||||
c0.002-1.984-0.249-3.995-0.044-5.974c0.05-0.499-0.107-4.751-0.227-5.766c-0.242-2.041-0.191-4.09-0.295-6.138
|
||||
c-0.103-2.011-0.047-4.012,0.131-6.013c0.084-0.969,0.18-5.238,0.294-6.25c0.117-1.076,1.048-1.555,1.899-2.098
|
||||
c1.242-0.794,4.192-2.041,5.014-2.146C183.825,137.825,183.764,138.13,183.833,138.816z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M163.603,165.738c-0.327,1.961-0.003,4.088-0.327,6.051
|
||||
c-0.153,0.913-0.331,3.709-0.331,4.727c0,1.826-0.416,5.138-0.282,7.158c0.142,2.104-0.01,4.69-0.141,6.735
|
||||
c-0.132,2.099-0.14,3.929-0.14,6.035c0,1.009,0.076,5.682-0.28,6.666c-0.511,1.408-3.76,2.572-5.318,3.204
|
||||
c-0.928,0.376-1.852,0.286-2.623-0.283c-0.746-0.547-0.653-1.295-0.536-2.018c0.146-0.922,0.243-2.868,0.477-3.778
|
||||
c0.256-0.989,0.029-5.816,0.18-6.151c0.18-0.4,0.132-2.234,0.168-2.729c0.031-0.428,0.06-5.578,0.071-6.138
|
||||
c0.053-1.972,0.034-8.552,0.096-10.551c0.059-2.027,0.42-4.048,0.451-6.074c0.033-2.093-0.106-4.188-0.186-6.28
|
||||
c-0.028-0.744-0.072-1.49-0.067-2.236c0.008-0.719-0.163-1.542-0.03-2.25c0.111-0.6,0.873-0.85,1.476-1.122
|
||||
c0.88-0.397,1.753-0.805,2.62-1.215c1.111-0.526,2.591-1.208,3.646-0.179c0.527,0.517,0.551,1.356,0.675,1.979
|
||||
C163.361,158.1,163.769,164.75,163.603,165.738z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M158.061,151.862c-1.36,0.13-3.944,0.762-4.253-0.85
|
||||
c-0.118-0.616,0.837-1.216,1.345-1.625c0.746-0.603,1.592-1.134,2.547-1.53c0.395-0.161,0.902-0.395,1.357-0.424
|
||||
c0.467-0.029,0.935,0.163,1.361,0.281c0.545,0.149,1.135,0.223,1.706,0.298c0.448,0.058,1.194-0.014,1.571,0.211
|
||||
c0.593,0.354-0.886,1.479-1.165,1.734c-0.8,0.729-1.517,1.293-2.582,1.774c-0.035-0.048-0.413,0.074-0.448,0.025
|
||||
C158.361,151.865,158.097,151.91,158.061,151.862z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M155.311,145.966c-1.12-0.002-0.427-0.802,0.003-1.173
|
||||
c0.68-0.582,4.113-2.3,5.148-2.56c1.005-0.254,2.154-0.189,3.191-0.109c1.102,0.086,2.107,0.288,1.062,1.136
|
||||
c-0.776,0.629-1.587,1.238-2.521,1.727c-1.057,0.552-1.993,0.719-3.231,0.859C158.961,145.825,156.52,145.966,155.311,145.966z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#202020" d="M154.77,140.455c0.293-0.291,0.844-0.653,1.253-0.86
|
||||
c0.483-0.245,0.571-0.458,1.08-0.672c1.113-0.468,1.478-1.019,2.51-1.581c0.393-0.214,0.591-0.433,1.063-0.536
|
||||
c0.601-0.134,3.981-0.078,4.499-0.098c0.503-0.022,1.013,0.03,1.516,0.051C164.062,139.768,163.687,140.559,154.77,140.455z"/>
|
||||
</g>
|
||||
<g display="none">
|
||||
<path display="inline" fill="#202020" d="M75,149.773c15.5,2.5,165.69,0,175.47,0s9.028-6.834,9.028-6.834
|
||||
s1.959-4.05-31.998-5.666c-33.958-1.617-60.152,2.646-76.576,5.573s-65.882-0.384-71.424-0.601S59.5,147.273,75,149.773z"/>
|
||||
<path display="inline" fill="#202020" d="M250.495,123.773c-87.74-1.097-128.746,6.052-159.245,4.25
|
||||
c-20.582-1.216-20.922-7.918-21.211-11.084s0-6.406,33.957-8.022c33.958-1.617,54.865,5.762,77.504,6.606
|
||||
c22.638,0.846,63.45,0.664,68.995,0.784C260.5,116.523,270.5,124.023,250.495,123.773z"/>
|
||||
<path display="inline" fill="#202020" d="M80.75,89.329c0,0,121.5-1.806,166.72,1.444c9.754,0.701,8.53,8,8.53,8
|
||||
s-4.541,6.668-33,6.5c-33.996-0.201-52.361-8.656-75-9.5c-22.638-0.846-67.416,2.225-72.958,2.442S63.612,89.329,80.75,89.329z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="home_loading">
|
||||
</g>
|
||||
<g id="home_scroll">
|
||||
</g>
|
||||
<g id="home_menu">
|
||||
</g>
|
||||
<g id="shop_w_x2F_menu">
|
||||
</g>
|
||||
<g id="shop_scroll">
|
||||
</g>
|
||||
<g id="shop_bottom">
|
||||
</g>
|
||||
<g id="prod_small_info">
|
||||
</g>
|
||||
<g id="prod_big_info">
|
||||
</g>
|
||||
<g id="prod_earrings">
|
||||
</g>
|
||||
<g id="prod_bottom">
|
||||
</g>
|
||||
<g id="about">
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
|
@ -0,0 +1,9 @@
|
|||
<svg
|
||||
width="307.49"
|
||||
height="77.116"
|
||||
viewBox="0 0 307.49 77.116"
|
||||
xml:space="preserve"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
><path
|
||||
d="M32.444 37.183c-20.81 0-21.059 17.971-21.059 36.43 0 1.02-.949 2.25-2.183 2.25h-7.02C.949 75.863 0 74.884 0 73.613V2.52C0 1.249.948.271 2.182.271h7.59c1.526 0 2.181.767 2.181 1.858 0 8.244 2.358 26.106 20.49 26.106 18.816 0 20.491-16.657 20.491-26.106 0-1.092 1.043-1.858 2.182-1.858h7.59c1.232 0 2.181.978 2.181 2.249v71.093c0 1.271-.948 2.25-2.181 2.25h-7.021c-1.233 0-2.182-1.261-2.182-2.25.002-16.652.434-36.43-21.059-36.43M71.91 74.247c-.854-34.243 16.317-55.889 32.159-66.01 7.114-4.524 15.652-7.646 31.115-7.861 1.518 0 2.276 1.184 2.276 3.015v55.565c0 9.692-8.063 15.387-15.842 13.771-12.522-2.585-18.594-17.647-26.183-25.832-2.656-2.799-6.355-2.691-8.917.754-3.51 4.738-3.226 9.8-3.226 25.844 0 2.047-.189 2.263-1.992 2.37h-7.874c-.947 0-1.516-.431-1.516-1.616m55.116-22.506-.285-29.721c0-4.2-2.276-6.999-5.977-6.892-4.269.107-10.909 3.337-14.419 6.568-5.027 4.522-5.881 7.107-4.079 12.599 1.423 4.2 9.961 18.199 16.222 22.291 4.269 2.908 8.538.647 8.538-4.845m23.441 21.312V2.703c0-2.162.569-2.703 2.088-2.703h9.651c1.803 0 1.96.541 1.96 2.703l.095 70.35c0 2.053-.949 2.81-2.467 2.81h-8.955c-1.518 0-2.372-.649-2.372-2.81m26.796.878V2.459c0-1.395 1.183-1.717 2.131-1.717h8.539c1.138 0 2.226.322 2.226 1.717v24.716c0 1.54 1.606 1.54 1.606 1.54 3.875 0 11.305.032 11.305.032 18.014 0 19.026-16.768 19.026-25.858 0-1.621.569-2.146 1.993-2.146L233.09.64c1.233 0 2.092.841 2.092 2.249 0 15.577-1.188 29.832-16.069 29.832 17.291 0 16.543 20.726 16.543 41.102 0 1.186-.38 2.04-1.708 2.04h-9.29c-1.707 0-1.896-.858-1.896-2.254 0-21.024-1.217-35.922-20.182-35.922h-10.903c-1.138 0-1.518.429-1.518 1.824v34.42c0 1.181-1.088 1.932-2.226 1.932h-8.539c-.948 0-2.131-.751-2.131-1.932m114.835-31.974V3.248c0-1.847.398-2.607 2.093-2.607h11.205c1.895 0 2.094.761 2.094 2.607v41.275c0 16.075-13.059 33.021-30.801 32.585-17.741-.434-30.799-16.51-30.799-32.585V3.248c0-1.847.199-2.607 2.093-2.607h11.205c1.694 0 2.093.761 2.093 2.607v38.709c0 11.403 2.433 23.85 15.408 23.85 13.431-.001 15.409-12.447 15.409-23.85"
|
||||
/></svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
1
web/app/themes/haiku-atelier-2024/assets/img/paypal/logo-paypal.svg
Executable file
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="329.449 122.475 21.745 29"><path fill="#fff" d="M349.05 131.283c.28-2.099 0-3.499-1.124-4.898-1.217-1.4-3.37-2-6.085-2h-7.957c-.562 0-1.03.4-1.124 1l-3.276 22.192c-.094.499.187.899.655.899h4.962l-.375 2.299c-.093.3.281.7.562.7h4.213c.468 0 .842-.4.936-.899l.093-.2.749-5.198.094-.3c.094-.6.468-.9.936-.9h.655c4.026 0 7.115-1.799 8.052-6.698.374-2.099.187-3.898-.843-5.098-.374-.299-.749-.699-1.123-.899" opacity=".7"/><path fill="#fff" d="M349.05 131.283c.28-2.099 0-3.499-1.124-4.898-1.217-1.4-3.37-2-6.085-2h-7.957c-.562 0-1.03.4-1.124 1l-3.276 22.192c-.094.499.187.899.655.899h4.962l1.217-8.297-.094.3c.187-.599.562-.999 1.217-.999h2.34c4.588 0 8.145-2 9.175-7.697 0-.2 0-.4.094-.5" opacity=".7"/><path fill="#fff" d="M337.628 131.283c0-.3.188-.6.562-.8.094 0 .281-.1.374-.1h6.273c.749 0 1.404.1 2.059.2.188 0 .281 0 .562.1.094.1.281.1.468.2.094 0 .094 0 .281.1l.843.3c.28-2.099 0-3.499-1.124-4.798-1.217-1.4-3.37-2.1-6.085-2.1h-7.957c-.562 0-1.03.5-1.124 1l-3.276 22.192c-.094.499.187.899.655.899h4.962l1.217-8.297z"/><path fill="#231f20" d="M349.01 131.261c.448.263.846.579 1.145.947.498.579.796 1.316.946 2.157.149-1.683-.1-3.051-.946-4.103-.299-.369-.647-.632-1.045-.895 0 .579 0 1.21-.1 1.894m-19.362 14.995 3.136-20.835c.05-.578.548-.999 1.095-.999h7.964c2.737 0 4.878.631 6.072 2.052.598.736.946 1.578 1.095 2.525.199-1.894-.099-3.209-1.095-4.419-1.194-1.474-3.335-2.105-6.072-2.105h-7.964c-.547 0-1.045.421-1.145 1l-3.285 22.202c0 .21.05.421.199.579m5.127 2.209-.05.316c-.05.211.05.421.199.579l.15-.895z" opacity=".2"/></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
1
web/app/themes/haiku-atelier-2024/assets/img/paypal/titre-paypal.svg
Executable file
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="201.754 136.33 100.039 26.6"><path fill="#fff" d="M213.773 136.33h-7.8c-.5 0-1 .4-1.1.9l-3.1 20c-.1.4.2.7.6.7h3.7c.5 0 1-.4 1.1-.9l.8-5.4c.1-.5.5-.9 1.1-.9h2.5c5.1 0 8.1-2.5 8.9-7.4.3-2.1 0-3.8-1-5-1.1-1.3-3.1-2-5.7-2m.9 7.3c-.4 2.8-2.6 2.8-4.6 2.8h-1.2l.8-5.2c0-.3.3-.5.6-.5h.5c1.4 0 2.7 0 3.4.8.5.4.7 1.1.5 2.1m22.3-.1h-3.7c-.3 0-.6.2-.6.5l-.2 1-.3-.4c-.8-1.2-2.6-1.6-4.4-1.6-4.1 0-7.6 3.1-8.3 7.5-.4 2.2.1 4.3 1.4 5.7 1.1 1.3 2.8 1.9 4.7 1.9 3.3 0 5.2-2.1 5.2-2.1l-.2 1c-.1.4.2.8.6.8h3.4c.5 0 1-.4 1.1-.9l2-12.8c.1-.2-.3-.6-.7-.6m-5.1 7.2c-.4 2.1-2 3.6-4.2 3.6-1.1 0-1.9-.3-2.5-1s-.8-1.6-.6-2.6c.3-2.1 2.1-3.6 4.2-3.6 1.1 0 1.9.4 2.5 1 .5.7.7 1.6.6 2.6m25-7.2h-3.7c-.4 0-.7.2-.9.5l-5.2 7.6-2.2-7.3c-.1-.5-.6-.8-1-.8h-3.7c-.4 0-.8.4-.6.9l4.1 12.1-3.9 5.4c-.3.4 0 1 .5 1h3.7c.4 0 .7-.2.9-.5l12.5-18c.3-.3 0-.9-.5-.9m12.4-7.2h-7.8c-.5 0-1 .4-1.1.9l-3.1 19.9c-.1.4.2.7.6.7h4c.4 0 .7-.3.7-.6l.9-5.7c.1-.5.5-.9 1.1-.9h2.5c5.1 0 8.1-2.5 8.9-7.4.3-2.1 0-3.8-1-5-1.2-1.2-3.1-1.9-5.7-1.9m.9 7.3c-.4 2.8-2.6 2.8-4.6 2.8h-1.2l.8-5.2c0-.3.3-.5.6-.5h.5c1.4 0 2.7 0 3.4.8.5.4.6 1.1.5 2.1m22.3-.1h-3.7c-.3 0-.6.2-.6.5l-.2 1-.3-.4c-.8-1.2-2.6-1.6-4.4-1.6-4.1 0-7.6 3.1-8.3 7.5-.4 2.2.1 4.3 1.4 5.7 1.1 1.3 2.8 1.9 4.7 1.9 3.3 0 5.2-2.1 5.2-2.1l-.2 1c-.1.4.2.8.6.8h3.4c.5 0 1-.4 1.1-.9l2-12.8c0-.2-.3-.6-.7-.6m-5.2 7.2c-.4 2.1-2 3.6-4.2 3.6-1.1 0-1.9-.3-2.5-1s-.8-1.6-.6-2.6c.3-2.1 2.1-3.6 4.2-3.6 1.1 0 1.9.4 2.5 1 .6.7.8 1.6.6 2.6m9.6-13.9-3.2 20.3c-.1.4.2.7.6.7h3.2c.5 0 1-.4 1.1-.9l3.2-19.9c.1-.4-.2-.7-.6-.7h-3.6c-.4 0-.6.2-.7.5"/></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/BOROBORO-B-arg.jpg
Executable file
|
After Width: | Height: | Size: 40 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/BOROBORO-B-vrm.jpg
Executable file
|
After Width: | Height: | Size: 43 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/BOROBORO-BO-arg.jpg
Executable file
|
After Width: | Height: | Size: 58 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/BOROBORO-BO-vrm.jpg
Executable file
|
After Width: | Height: | Size: 56 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/HADOU/HADOU-B1-arg.jpg
Executable file
|
After Width: | Height: | Size: 44 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/HADOU/HADOU-B1-vrm.jpg
Executable file
|
After Width: | Height: | Size: 45 KiB |
|
After Width: | Height: | Size: 272 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/HADOU/HADOU-B1a-opti.jpg
Executable file
|
After Width: | Height: | Size: 128 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/HADOU/HADOU-BOP-arg.jpg
Executable file
|
After Width: | Height: | Size: 31 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/HADOU/HADOU-BOP-vrm.jpg
Executable file
|
After Width: | Height: | Size: 32 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/HADOU/HADOU-BR.jpg
Executable file
|
After Width: | Height: | Size: 55 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/HADOU/HADOU-CR2-arg.jpg
Executable file
|
After Width: | Height: | Size: 52 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/HADOU/HADOU-CR2-vrm.jpg
Executable file
|
After Width: | Height: | Size: 47 KiB |
BIN
web/app/themes/haiku-atelier-2024/assets/img/products/HADOU/HADOU-EC-arg.jpg
Executable file
|
After Width: | Height: | Size: 31 KiB |