From 5d22f3e2ae413e88c2dc96f5f57c58b6bc90508c Mon Sep 17 00:00:00 2001 From: Johan GIRAUD Date: Fri, 6 Feb 2015 15:00:24 +0100 Subject: [PATCH] [CSS+HTML] + lien accueil --- css/habillage.css | 21 ++++++++++++++++++--- css/habillage.scss | 18 +++++++++++++++++- rubrique.html | 7 +++++-- 3 files changed, 40 insertions(+), 6 deletions(-) diff --git a/css/habillage.css b/css/habillage.css index 765c06e..b03b2c9 100644 --- a/css/habillage.css +++ b/css/habillage.css @@ -87,11 +87,21 @@ header .spip_logos { margin: 0 auto; } a { - text-decoration: none; } + text-decoration: none; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -ms-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; } a:focus, a:hover, a:active { background: none; - color: #1a0583; } + color: #e1702e; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -ms-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; } h1 { margin: 0; @@ -103,7 +113,12 @@ h1 { font-weight: bold; } h1:hover { - text-decoration: underline; } + text-decoration: underline; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -ms-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; } h2 { margin: 15px 15px; diff --git a/css/habillage.scss b/css/habillage.scss index 26e271b..d2b439d 100644 --- a/css/habillage.scss +++ b/css/habillage.scss @@ -103,11 +103,21 @@ header .spip_logos{ } a{ text-decoration:none; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -ms-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; } a:focus, a:hover, a:active{ background:none; - color:#1a0583; + color:#e1702e; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -ms-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; } h1{ @@ -122,8 +132,14 @@ h1{ h1:hover{ text-decoration: underline; + -webkit-transition: all 0.3s ease 0s; + -moz-transition: all 0.3s ease 0s; + -ms-transition: all 0.3s ease 0s; + -o-transition: all 0.3s ease 0s; + transition: all 0.3s ease 0s; } + h2{ margin: 15px 15px; font-size:1.3em; diff --git a/rubrique.html b/rubrique.html index 3c52540..78a0283 100644 --- a/rubrique.html +++ b/rubrique.html @@ -27,9 +27,12 @@ -
+
#LOGO_SITE -
+ + -- 2.20.1