From 602d26fbcb919186e5392e746a5292cacaec7b79 Mon Sep 17 00:00:00 2001 From: "bruno@cubedesigners.com" Date: Wed, 22 Jan 2014 13:58:33 +0000 Subject: [PATCH] --- framework/application/configs/application.ini | 2 + framework/application/forms/CMS/Contact.php | 10 +- .../forms/CMS/Sub/Agence/Persons/Bloc.php | 24 +++ .../forms/CMS/Sub/Agence/Persons/Blocs.php | 16 ++ .../forms/CMS/Sub/Agence/Pictos/Bloc.php | 28 ++++ .../forms/CMS/Sub/Agence/Pictos/Blocs.php | 16 ++ .../application/forms/CMS/Sub/Contact.php | 6 +- .../forms/CMS/Sub/Contact/Office.php | 27 ++-- .../forms/CMS/Sub/Contact/Offices.php | 2 +- .../forms/CMS/Sub/ContactMarkers.php | 15 ++ .../application/forms/CMS/Sub/Coordonnees.php | 23 +++ .../application/forms/CMS/Sub/MapPoint.php | 15 ++ .../application/forms/CMS/Sub/MapSettings.php | 23 +++ framework/application/forms/Settings.php | 1 + .../views/helpers/ContactInfos.php | 40 +++++ .../views/helpers/FooterContact.php | 18 ++- .../views/scripts/templates/contact.phtml | 37 +++++ images/picto_footer_mail.svg | 10 +- images/picto_geoloc.svg | 14 ++ images/picto_tel.svg | 18 +++ js/contact.js | 148 ++++++++++++++++++ less/agence.less | 6 +- less/common.less | 15 ++ less/contact.less | 81 ++++++++++ less/footer.less | 23 +-- less/home.less | 6 - 26 files changed, 559 insertions(+), 65 deletions(-) create mode 100644 framework/application/forms/CMS/Sub/Agence/Persons/Bloc.php create mode 100644 framework/application/forms/CMS/Sub/Agence/Persons/Blocs.php create mode 100644 framework/application/forms/CMS/Sub/Agence/Pictos/Bloc.php create mode 100644 framework/application/forms/CMS/Sub/Agence/Pictos/Blocs.php create mode 100644 framework/application/forms/CMS/Sub/ContactMarkers.php create mode 100644 framework/application/forms/CMS/Sub/Coordonnees.php create mode 100644 framework/application/forms/CMS/Sub/MapPoint.php create mode 100644 framework/application/forms/CMS/Sub/MapSettings.php create mode 100644 framework/application/views/helpers/ContactInfos.php create mode 100644 framework/application/views/scripts/templates/contact.phtml create mode 100644 images/picto_geoloc.svg create mode 100644 images/picto_tel.svg create mode 100644 js/contact.js create mode 100644 less/contact.less diff --git a/framework/application/configs/application.ini b/framework/application/configs/application.ini index febcaa7..9f715db 100644 --- a/framework/application/configs/application.ini +++ b/framework/application/configs/application.ini @@ -44,6 +44,8 @@ navigation.containers[]=0; navigation.containers[]=-2; navigation.containers[]=-3; +googleapi=AIzaSyDKYIWGbAgnV0N9SVx0jb9lt1qqD4dSFmQ + locales.fr = locales.en = diff --git a/framework/application/forms/CMS/Contact.php b/framework/application/forms/CMS/Contact.php index dcf7ef7..c272d18 100644 --- a/framework/application/forms/CMS/Contact.php +++ b/framework/application/forms/CMS/Contact.php @@ -5,9 +5,17 @@ class Cubedesigners_Form_CMS_Contact extends Cubedesigners_Form_CMS { public function init() { parent::init(); - $titre = new Zend_Form_Element_Text('titre'); + $titre = new CubeIT_Form_Element_Markitup('titre'); $titre->setLabel('Titre'); $this->addElement($titre); + + $left = new CubeIT_Form_Element_Markitup('colonnegauche'); + $left->setLabel('Description colonne gauche'); + $this->addElement($left); + + $right = new CubeIT_Form_Element_Markitup('colonnedroite'); + $right->setLabel('Description colonne droite'); + $this->addElement($right); } } diff --git a/framework/application/forms/CMS/Sub/Agence/Persons/Bloc.php b/framework/application/forms/CMS/Sub/Agence/Persons/Bloc.php new file mode 100644 index 0000000..7dd6737 --- /dev/null +++ b/framework/application/forms/CMS/Sub/Agence/Persons/Bloc.php @@ -0,0 +1,24 @@ +setLabel('Prénom et nom'); + $this->addElement($titre); + + $texte = new CubeIT_Form_Element_Markitup_Basic('texte'); + $texte->setLabel('Texte'); + $this->addElement($texte); + + $photo = new CubeIT_Form_Element_File_Image('photo'); + $photo->setLabel('Photo'); + $photo->setMaxItems(1); + $this->addElement($photo); + } + +} + +?> diff --git a/framework/application/forms/CMS/Sub/Agence/Persons/Blocs.php b/framework/application/forms/CMS/Sub/Agence/Persons/Blocs.php new file mode 100644 index 0000000..0c6fe36 --- /dev/null +++ b/framework/application/forms/CMS/Sub/Agence/Persons/Blocs.php @@ -0,0 +1,16 @@ +setBaseSubForm($bloc); + $this->setBaseLegend('Edition de « $titre »'); + $this->setNewLegend('Nouvelle personne'); + } + +} + +?> diff --git a/framework/application/forms/CMS/Sub/Agence/Pictos/Bloc.php b/framework/application/forms/CMS/Sub/Agence/Pictos/Bloc.php new file mode 100644 index 0000000..35b5395 --- /dev/null +++ b/framework/application/forms/CMS/Sub/Agence/Pictos/Bloc.php @@ -0,0 +1,28 @@ +setLabel('Titre'); + $this->addElement($titre); + + $stitre = new Zend_Form_Element_Text('soustitre'); + $stitre->setLabel('Sous-titre'); + $this->addElement($stitre); */ + + $texte = new CubeIT_Form_Element_Markitup('texte'); + $texte->setLabel('Texte'); + $this->addElement($texte); + + $picto = new CubeIT_Form_Element_File_Image('picto'); + $picto->setLabel('Picto'); + $picto->setMaxItems(1); + $this->addElement($picto); + } + +} + +?> diff --git a/framework/application/forms/CMS/Sub/Agence/Pictos/Blocs.php b/framework/application/forms/CMS/Sub/Agence/Pictos/Blocs.php new file mode 100644 index 0000000..9cc921c --- /dev/null +++ b/framework/application/forms/CMS/Sub/Agence/Pictos/Blocs.php @@ -0,0 +1,16 @@ +setBaseSubForm($bloc); + $this->setBaseLegend('Edition du picto « $texte »'); + $this->setNewLegend('Nouveau picto'); + } + +} + +?> diff --git a/framework/application/forms/CMS/Sub/Contact.php b/framework/application/forms/CMS/Sub/Contact.php index 8cafaa1..daad21d 100644 --- a/framework/application/forms/CMS/Sub/Contact.php +++ b/framework/application/forms/CMS/Sub/Contact.php @@ -9,9 +9,9 @@ class Cubedesigners_Form_CMS_Sub_Contact extends CubeIT_Form_SubForm { $bloc->setLabel('Bloc "Nous Contacter"'); $this->addElement($bloc); - $bureau = new Cubedesigners_Form_CMS_Sub_Contact_Offices('bureaux'); - $bureau->setLegend('Bureaux'); - $this->addSubForm($bureau, 'bureau'); + $bureaux = new Cubedesigners_Form_CMS_Sub_Contact_Offices('bureaux'); + $bureaux->setLegend('Bureaux'); + $this->addSubForm($bureaux, 'bureaux'); } } diff --git a/framework/application/forms/CMS/Sub/Contact/Office.php b/framework/application/forms/CMS/Sub/Contact/Office.php index 6b01466..7dadfeb 100644 --- a/framework/application/forms/CMS/Sub/Contact/Office.php +++ b/framework/application/forms/CMS/Sub/Contact/Office.php @@ -5,21 +5,18 @@ class Cubedesigners_Form_CMS_Sub_Contact_Office extends CubeIT_Form_SubForm { public function init() { parent::init(); - $titre = new Zend_Form_Element_Text('titre'); - $titre->setLabel('Titre du bureau'); - $this->addElement($titre); - - $telephone = new CubeIT_Form_Element_Phone('telephone'); - $telephone->setLabel('Téléphone'); - $this->addElement($telephone); - - $fax = new CubeIT_Form_Element_Phone('fax'); - $fax->setLabel('Fax'); - $this->addElement($fax); - - $adresse = new CubeIT_Form_Adresse('adresse'); - $adresse->setLabel('Adresse'); - $this->addSubForm($adresse, 'adresse'); + /* BUREAUX */ + $coordonnees = new Cubedesigners_Form_CMS_Sub_MapPoint('coordonnees'); + $coordonnees->setLabel('Coordonnées'); + $this->addSubForm($coordonnees, 'coordonnees'); + + $map = new Cubedesigners_Form_CMS_Sub_MapSettings('map'); + $map->setLegend('Paramètre de la carte'); + $this->addSubForm($map, 'map'); + + $marqueurs = new Cubedesigners_Form_CMS_Sub_ContactMarkers('markers'); + $marqueurs->setLegend('Points d\'intérêts'); + $this->addSubForm($marqueurs, 'markers'); } } diff --git a/framework/application/forms/CMS/Sub/Contact/Offices.php b/framework/application/forms/CMS/Sub/Contact/Offices.php index f98d637..fbb1fa1 100644 --- a/framework/application/forms/CMS/Sub/Contact/Offices.php +++ b/framework/application/forms/CMS/Sub/Contact/Offices.php @@ -7,7 +7,7 @@ class Cubedesigners_Form_CMS_Sub_Contact_Offices extends CubeIT_Form_Multi_SubFo $office = new Cubedesigners_Form_CMS_Sub_Contact_Office(); $this->setBaseSubForm($office); - $this->setBaseLegend('Edition du bureau « $titre »'); + $this->setBaseLegend('Edition du bureau « $coordonnees »'); $this->setNewLegend('Nouveau bureau'); } diff --git a/framework/application/forms/CMS/Sub/ContactMarkers.php b/framework/application/forms/CMS/Sub/ContactMarkers.php new file mode 100644 index 0000000..f08e89b --- /dev/null +++ b/framework/application/forms/CMS/Sub/ContactMarkers.php @@ -0,0 +1,15 @@ +setBaseSubForm($bloc); + $this->setBaseLegend('Edition du point « $nom »'); + $this->setNewLegend('Nouveau point'); + } + +} + +?> diff --git a/framework/application/forms/CMS/Sub/Coordonnees.php b/framework/application/forms/CMS/Sub/Coordonnees.php new file mode 100644 index 0000000..dcf6cb8 --- /dev/null +++ b/framework/application/forms/CMS/Sub/Coordonnees.php @@ -0,0 +1,23 @@ +setLabel('Nom'); + $this->addElement($nom); + + parent::init(); + + $tel = new CubeIT_Form_Element_Phone('tel'); + $tel->setLabel('Téléphone'); + $this->addElement($tel); + + $fax = new CubeIT_Form_Element_Phone('fax'); + $fax->setLabel('Fax'); + $this->addElement($fax); + } + +} + +?> diff --git a/framework/application/forms/CMS/Sub/MapPoint.php b/framework/application/forms/CMS/Sub/MapPoint.php new file mode 100644 index 0000000..ebf68e2 --- /dev/null +++ b/framework/application/forms/CMS/Sub/MapPoint.php @@ -0,0 +1,15 @@ +setLabel('Icône'); + $this->addElement($icon); + } + +} + +?> diff --git a/framework/application/forms/CMS/Sub/MapSettings.php b/framework/application/forms/CMS/Sub/MapSettings.php new file mode 100644 index 0000000..73950cc --- /dev/null +++ b/framework/application/forms/CMS/Sub/MapSettings.php @@ -0,0 +1,23 @@ +setLabel('Niveau de zoom'); + $this->addElement($zoom); + + $centre = new CubeIT_Form_Adresse('centre'); + $centre->setLegend('Centrer la carte sur'); + $this->addSubForm($centre, 'centre'); + + $google = new CubeIT_Form_Element_Url('googleLink'); + $google->setLabel('Lien vers plan agrandi'); + $this->addElement($google); + } + +} + +?> diff --git a/framework/application/forms/Settings.php b/framework/application/forms/Settings.php index 0b4fb74..c161d5c 100644 --- a/framework/application/forms/Settings.php +++ b/framework/application/forms/Settings.php @@ -20,6 +20,7 @@ class Cubedesigners_Form_Settings extends CubeIT_Form_Settings { $contact->setLabel('Informations de contact'); $this->addSubFormLocalized($contact, 'contact'); + /* BLOC ACTUALITES */ $actus = new Cubedesigners_Form_CMS_Sub_News(); $actus->setLabel('Bloc Actualités'); diff --git a/framework/application/views/helpers/ContactInfos.php b/framework/application/views/helpers/ContactInfos.php new file mode 100644 index 0000000..e2f1503 --- /dev/null +++ b/framework/application/views/helpers/ContactInfos.php @@ -0,0 +1,40 @@ +' . $this->view->markupDotclear($texte) . ''; + + //$bureaux = $contact['bureaux']; + + foreach ($bureaux as $id => $bureau) { + + $res.='
'; + + $res.='

' . $bureau['coordonnees']['nom'] . '

'; + + $res.='

'; + $res.='

' . __('Cubedesigners') . '

'; + $res.='

' . $bureau['coordonnees']['adresse'] . '

'; + $res.='

' . $bureau['coordonnees']['code_postal'] . ' ' . $bureau['coordonnees']['ville'] . ' ' . Zend_Locale::getTranslation($bureau['coordonnees']['pays'], 'territory') . '

'; + $res.='
'; + + $res.='
'; + $res.='

' . __('Tel') . ' ' . $bureau['coordonnees']['tel'] . '

'; + $res.='

' . __('Fax') . ' ' . $bureau['coordonnees']['fax'] . '

'; + $res.='
'; + + /* $res.='
'; + $res.=$this->view->linkGeo(__("Plan d'accès"), $bureau['adresse']['adresse'] . ',' . $bureau['adresse']['ville'] . ',' . Zend_Locale::getTranslation($bureau['adresse']['pays'], 'territory')); + $res.='
'; */ + + $res.='
'; + } + + return $res; + } + +} + +?> diff --git a/framework/application/views/helpers/FooterContact.php b/framework/application/views/helpers/FooterContact.php index 59184e8..d710033 100644 --- a/framework/application/views/helpers/FooterContact.php +++ b/framework/application/views/helpers/FooterContact.php @@ -6,28 +6,30 @@ class Cubedesigners_View_Helper_FooterContact extends Zend_View_Helper_Abstract $res = '
' . $this->view->markupDotclear($contact['bloc']) . '
'; - $bureaux = $contact['bureau']; + //fb($contact['bureau']); + + $bureaux = $contact['bureaux']; foreach ($bureaux as $id => $bureau) { $res.='
'; - $res.='

' . $bureau['titre'] . '

'; + $res.='

' . $bureau['coordonnees']['nom'] . '

'; $res.='

'; - $res.='

' . __('Tel') . ' ' . $bureau['telephone'] . '

'; - $res.='

' . __('Fax') . ' ' . $bureau['fax'] . '

'; + $res.='

' . __('Tel') . ' ' . $bureau['coordonnees']['tel'] . '

'; + $res.='

' . __('Fax') . ' ' . $bureau['coordonnees']['fax'] . '

'; $res.='
'; $res.='
'; $res.='

' . __('Cubedesigners') . '

'; - $res.='

' . $bureau['adresse']['adresse'] . '

'; - $res.='

' . $bureau['adresse']['code_postal'] . ' ' . $bureau['adresse']['ville'] . '

'; - $res.='

' . Zend_Locale::getTranslation($bureau['adresse']['pays'], 'territory') . '

'; + $res.='

' . $bureau['coordonnees']['adresse'] . '

'; + $res.='

' . $bureau['coordonnees']['code_postal'] . ' ' . $bureau['coordonnees']['ville'] . '

'; + $res.='

' . Zend_Locale::getTranslation($bureau['coordonnees']['pays'], 'territory') . '

'; $res.='

'; $res.='
'; - $res.=$this->view->linkGeo(__("Plan d'accès"), $bureau['adresse']['adresse'] . ',' . $bureau['adresse']['ville'] . ',' . Zend_Locale::getTranslation($bureau['adresse']['pays'], 'territory')); + $res.=$this->view->linkGeo(__("Plan d'accès"), $bureau['coordonnees']['adresse'] . ',' . $bureau['coordonnees']['ville'] . ',' . Zend_Locale::getTranslation($bureau['coordonnees']['pays'], 'territory')); $res.='
'; $res.='
'; diff --git a/framework/application/views/scripts/templates/contact.phtml b/framework/application/views/scripts/templates/contact.phtml new file mode 100644 index 0000000..94b6ebb --- /dev/null +++ b/framework/application/views/scripts/templates/contact.phtml @@ -0,0 +1,37 @@ +headScript()->addGoogleMaps(array('key' => $this->options['googleapi'])); +$this->headScript()->addScriptAndStyle('contact'); + +$bureaux = $this->option('contact')['bureaux']; + +//fb($bureaux); + +$i = 1; +foreach ($bureaux as $bureau) { + $this->headScriptVariables()->setVariable('map' . $i, $bureaux[$i - 1]['map']); + $this->headScriptVariables()->setVariable('coordonnees' . $i, $bureaux[$i - 1]['coordonnees']); + $this->headScriptVariables()->setVariable('markers' . $i, $bureaux[$i - 1]['markers']); + $i++; +} +?> + +
markupDotclear($this->titre); ?>
+ +
+ contactInfos($this->option('contact')['bloc'], $bureaux); ?> +
+ +
+
'; + $j++; + } + ?> + + +
+
markupDotclear($this->colonnegauche); ?>
+
markupDotclear($this->colonnedroite); ?>
+
\ No newline at end of file diff --git a/images/picto_footer_mail.svg b/images/picto_footer_mail.svg index 553f11f..30fefa0 100644 --- a/images/picto_footer_mail.svg +++ b/images/picto_footer_mail.svg @@ -4,13 +4,13 @@ - + - - - + + + - + diff --git a/images/picto_geoloc.svg b/images/picto_geoloc.svg new file mode 100644 index 0000000..ffe1ed1 --- /dev/null +++ b/images/picto_geoloc.svg @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/images/picto_tel.svg b/images/picto_tel.svg new file mode 100644 index 0000000..f68b1b6 --- /dev/null +++ b/images/picto_tel.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/js/contact.js b/js/contact.js new file mode 100644 index 0000000..e48e241 --- /dev/null +++ b/js/contact.js @@ -0,0 +1,148 @@ +var markers=[]; + +var mapStyles =[ + { + stylers: [ + { + saturation: -100 + } + ] + }, + { + featureType: "road", + elementType: "labels.text.fill", + stylers: [ + { + color: "#000000" + } + ] + }, + { + featureType: "landscape.natural", + stylers: [ + { + color: "#000000" + } + ] + } + ]; + +function initMaps(){ + + var mapSettings=Application.map1; + var centre=mapSettings.centre; + var coder=new google.maps.Geocoder(); + coder.geocode({ + address:centre.adresse+' - '+centre.ville, + region:centre.pays + },function(res){ + var result=res[0]; + var center=result.geometry.location; + + var mapOptions = { + zoom:parseInt(mapSettings.zoom), + center: center, + mapTypeControlOptions: { + mapTypeIds: [google.maps.MapTypeId.ROADMAP] + }, + styles:mapStyles, + mapTypeId: google.maps.MapTypeId.ROADMAP + }; + + var map = new google.maps.Map(document.getElementById('map1'), + mapOptions); + + Application.markers1.unshift(Application.coordonnees1); + + for(var i=0;i
'; + } + if(c.adresse!=''){ + res+=c.adresse+'
'; + } + if(c.code_postal){ + res+=c.code_postal+' '; + } + if(c.ville!=''){ + res+=c.ville+'
'; + } + return res; + +} \ No newline at end of file diff --git a/less/agence.less b/less/agence.less index e1c905c..f5fb6d1 100644 --- a/less/agence.less +++ b/less/agence.less @@ -103,14 +103,10 @@ } .agency-persons .bloc-holder h1 { - font-family: 'roboto_condensedlight'; - font-weight: normal; font-size:56px; } .agency-persons .bloc-holder h2{ - font-family: 'roboto_condensedlight'; - font-weight: normal; font-size:32px; padding: 0 0 20px 0; } @@ -127,7 +123,7 @@ .agency-persons .bloc-holder .sousbloc { float:left; //width:50%; - width:47%; + width: 47.5%; margin-right: 20px; } diff --git a/less/common.less b/less/common.less index 21398c5..f39db4a 100644 --- a/less/common.less +++ b/less/common.less @@ -1,9 +1,24 @@ body { font-family: 'roboto_condensedlight'; font-size:16px; + font-weight: normal; color:#1b1b1b; } +h1, h2 { + font-weight: normal; +} + +a { + text-decoration: none; + color:#3885e0; +} + +a:hover, +a:active { + color:#3885e0; +} + #main { margin: 0 auto; //min-width: 1024px; diff --git a/less/contact.less b/less/contact.less new file mode 100644 index 0000000..4131adc --- /dev/null +++ b/less/contact.less @@ -0,0 +1,81 @@ +/* Contact Title */ +#contact-title { + min-width: 980px; + max-width: 980px; + margin: 0 auto; + padding: 50px 0 50px 0; +} + +#contact-title h1 { + text-align: left; + font-weight: normal; + font-size: 56px; +} + +/* Contact informations */ +#contact-informations .contact-texte { + background-image: url('../images/picto_footer_mail.svg'); + background-repeat: no-repeat; + background-position:0px 10px; + font-weight: normal; + padding-left:70px; + padding-bottom: 50px; +} + +#contact-informations .col .titre { + padding-bottom: 20px; + font-size: 32px; +} + +#contact-informations .col .adresse { + background-image: url('../images/picto_geoloc.svg'); + background-repeat: no-repeat; + background-position:0px 0px; + padding-left:70px; + padding-bottom: 50px; +} + +#contact-informations .col .numeros { + background-image: url('../images/picto_tel.svg'); + background-repeat: no-repeat; + background-position:0px 0px; + padding-left:70px; + padding-bottom: 50px; +} + +/* Contact maps */ +#contact-maps { + overflow:hidden; + padding: 0 0 50px 0; +} + +#map1 { + width: 47.5%; + float:left; + height: 390px; +} +#map2 { + width: 50.5%; + float:right; + height: 390px; +} + +/* Contact description */ +#contact-informations, +#contact-description { + min-width: 980px; + max-width: 980px; + margin: 0 auto; + overflow: hidden; + padding: 0 0 50px 0; +} + +.col { + float:left; + margin-right: 20px; + width: 47%; +} + +.col .dotclear { + width:95%; +} \ No newline at end of file diff --git a/less/footer.less b/less/footer.less index 00dd0b8..ce5697f 100644 --- a/less/footer.less +++ b/less/footer.less @@ -23,19 +23,15 @@ } #footer .footer-top .footer-top-content .bloc h1 { - font-family: 'roboto_condensedlight'; - font-weight: normal; color:#fff; - font-size:56px;; + font-size:56px; padding-top: 50px; padding-bottom: 50px; } #footer .footer-top .footer-top-content .bloc h2 { - font-family: 'roboto_condensedlight'; - font-weight: normal; color:#fff; - font-size:56px;; + font-size:56px; padding-top: 50px; padding-bottom: 20px; } @@ -45,8 +41,6 @@ background-image: url('../images/picto_footer_mail.svg'); background-repeat: no-repeat; background-position:0px 10px; - font-family: 'roboto_condensedlight'; - font-weight: normal; color:#fff; padding-left:70px; padding-bottom: 50px; @@ -81,8 +75,6 @@ /* Footer Actualites */ #footer .actu { - font-family: 'roboto_condensedlight'; - font-weight: normal; color:#6c6c6c; padding-bottom: 20px; } @@ -117,15 +109,4 @@ text-align: center; font-size: 12px; line-height: 30px; -} - -/* Footer Liens */ -#footer a{ - text-decoration: none; - color:#3885e0; -} - -#footer a:hover, -#footer .active a{ - color:#3885e0; } \ No newline at end of file diff --git a/less/home.less b/less/home.less index cf708b0..3a362ca 100644 --- a/less/home.less +++ b/less/home.less @@ -5,13 +5,11 @@ .home-title h1 { text-align: center; - font-weight: normal; font-size: 56px; } .home-title h2 { text-align: center; - font-weight: normal; font-size: 32px; } @@ -92,15 +90,11 @@ .home-agency .bloc-holder h1, .home-expertise .bloc-holder h1 { - font-family: 'roboto_condensedlight'; - font-weight: normal; font-size:56px; } .home-agency .bloc-holder h2, .home-expertise .bloc-holder h2 { - font-family: 'roboto_condensedlight'; - font-weight: normal; font-size:32px; padding: 0 0 20px 0; } -- 2.39.5