From 2b25d4ea1cf77b5f8f39b2633012f62cd80c2a89 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Sun, 30 Dec 2018 19:36:56 +0100 Subject: [PATCH] custom --- site/data/custom.css | 127 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 126 insertions(+), 1 deletion(-) diff --git a/site/data/custom.css b/site/data/custom.css index 97b499cf..872f75c9 100644 --- a/site/data/custom.css +++ b/site/data/custom.css @@ -1 +1,126 @@ -{"theme":{"body":{"backgroundColor":"rgba(138, 187, 244, 1)","image":"","imageAttachment":"scroll","imagePosition":"top center","imageRepeat":"no-repeat","imageSize":"auto"},"button":{"backgroundColor":"rgba(71, 123, 184, 1)"},"footer":{"backgroundColor":"rgba(138, 187, 244, 1)","copyrightAlign":"center","height":"5px","loginLink":"1","margin":false,"position":"body","socialsAlign":"center","text":"A propos<\/a>","textAlign":"center","textColor":"rgba(33, 34, 35, 1)","copyrightPosition":"center","textPosition":"center","socialsPosition":"hide"},"header":{"backgroundColor":"rgba(255, 255, 255, 0)","font":"Marvel","fontSize":"1.6em","fontWeight":"bold","height":"150px","image":"","imagePosition":"center center","imageRepeat":"no-repeat","margin":false,"position":"site","textAlign":"center","textColor":"rgba(132, 68, 7, 1)","textHide":false,"textTransform":"none","linkHome":false,"imageContainer":"auto"},"link":{"textColor":"rgba(71, 123, 184, 1)"},"menu":{"backgroundColor":"rgba(138, 187, 244, 1)","font":"Arimo","fontSize":"1em","fontWeight":"normal","height":"10px","loginLink":"","margin":false,"position":"body-top","textAlign":"left","textColor":"rgba(117, 106, 98, 1)","textTransform":"none"},"site":{"backgroundColor":"rgba(9, 47, 91, 1)","radius":"15px","shadow":"1px 1px 10px","width":"1170px"},"text":{"font":"Arvo","fontSize":"14px","textColor":"rgba(33, 34, 35, 1)"},"title":{"font":"Oswald","textColor":"rgba(71, 123, 184, 1)","fontWeight":"normal","textTransform":"none"}}} \ No newline at end of file +/** + * Voici une feuille de style type, bien entendu vous pouvez ajouter + * ou supprimer des propriétés CSS en fonction de vos besoins. + */ + +/** + * Éléments principaux + */ + +/* Fond du site */ +body { +} + +/* Site */ +#site { +} + +/* Bannière */ +header { +} + +/* Titre de la bannière */ +header span { +} + +/* Menu */ +nav { +} + +/* Items du menu */ +nav a { +} + +/* Items au survol du menu */ +nav a:hover { +} + +/* Item courant du menu */ +nav a.active { +} + +/* Bas de page */ +#footersite, #footerbody { +} + +/* Liens du bas de page */ +#footersite, #footerbody a { +} + +/* footer bloc gauche */ +#footersiteLeft, #footerbodyLeft { +} + +/* footer bloc central */ +#footersiteCenter, #footerbodyCenter { +} + +/* footer bloc droite */ +#footersiteRight, #footerbodyRight { +} + +/** + * Éléments de contenu + */ + +/* Titres */ +h1, +h2, +h3, +h4 { +} + +/* Liens */ +a { +} + +/* Liens au survol */ +a:hover { +} + +/* Liens au clic */ +a:active { +} + +/* Boutons */ +.button, +button[type='submit'], +.pagination a { +} + +/* Boutons au survol */ +.button:hover, +button[type='submit']:hover, +.pagination a:hover { +} + +/* Boutons au clic */ +.button:active, +button[type='submit']:active, +.pagination a:active { +} + +/* Cases à cocher */ +input[type='checkbox']:checked + label:before { +} + +/* Cases à cocher au survol */ +input[type='checkbox']:not(:active):checked:hover + label:before, +input[type='checkbox']:active + label:before { +} + +/* Champs de formulaire */ +input[type='text'], +input[type='password'], +.inputFile, +select, +textarea { +} + +/* Champs de formulaire au survol */ +input[type='text']:hover, +input[type='password']:hover, +.inputFile:hover, +select:hover, +textarea:hover { +} \ No newline at end of file