From f191cf55c114f0b7492e524f6bfebc288bc0a002 Mon Sep 17 00:00:00 2001 From: ouidade Date: Tue, 21 Dec 2021 21:16:21 +0100 Subject: [PATCH] =?UTF-8?q?css=20lien=20page=20mentions=20l=C3=A9gales?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/themes/custom/eql/css-compiled/styles.css | 16 +++++++++++----- .../custom/eql/scss/pages/_mentions-legales.scss | 7 +++++++ web/themes/custom/eql/scss/partials/_header.scss | 12 +++++++----- 3 files changed, 25 insertions(+), 10 deletions(-) diff --git a/web/themes/custom/eql/css-compiled/styles.css b/web/themes/custom/eql/css-compiled/styles.css index dc75478..af7b083 100644 --- a/web/themes/custom/eql/css-compiled/styles.css +++ b/web/themes/custom/eql/css-compiled/styles.css @@ -1196,6 +1196,11 @@ a { color: white; background-color: #009ee3; text-transform: uppercase; } + .node-id-6 a { + color: black; + text-decoration: underline; } + .node-id-6 a svg { + display: none; } .path-ressources.basededonnees .layout-content { width: 100vw; } @@ -1987,7 +1992,8 @@ a { list-style: none; display: flex; flex-direction: row; - justify-content: space-around; + justify-content: space-between; + background-color: white; width: 100%; padding: 1rem; } #header-top .region-header-top-left ul .is-active { @@ -2002,11 +2008,9 @@ a { flex-direction: column; background-color: white; padding-bottom: 0.8rem; - align-items: center; min-width: 25%; } #header-top .region-header-top-left ul li a { - color: black; - text-align: center; } + color: black; } #header-top .region-header-top-left ul li .is-active { color: #009ee3; } #header-top .region-header-top-left ul li :hover { @@ -2015,7 +2019,9 @@ a { display: none; } #header-top .region-header-top-left :hover ul ul { display: flex; - justify-content: space-around; } + justify-content: space-between; + padding: 1rem; + background-color: white; } #header-top .region-header-top-left :hover ul ul .is-active { color: #009ee3; } #header-top .region-header-top-left :hover ul ul a { diff --git a/web/themes/custom/eql/scss/pages/_mentions-legales.scss b/web/themes/custom/eql/scss/pages/_mentions-legales.scss index 343690f..ad55b0e 100644 --- a/web/themes/custom/eql/scss/pages/_mentions-legales.scss +++ b/web/themes/custom/eql/scss/pages/_mentions-legales.scss @@ -30,4 +30,11 @@ } } + a{ + color: $black; + text-decoration: underline; + svg{ + display: none; + } + } } \ No newline at end of file diff --git a/web/themes/custom/eql/scss/partials/_header.scss b/web/themes/custom/eql/scss/partials/_header.scss index 0f32cd5..cdd7136 100644 --- a/web/themes/custom/eql/scss/partials/_header.scss +++ b/web/themes/custom/eql/scss/partials/_header.scss @@ -77,7 +77,8 @@ list-style: none; display: flex; flex-direction: row; - justify-content: space-around; + justify-content: space-between; + background-color: white; width: 100%; padding: 1rem; @@ -98,11 +99,11 @@ flex-direction: column; background-color: $white; padding-bottom: 0.8rem; - align-items: center; + // align-items: center; min-width: 25%; a { color: $black; - text-align: center; + // text-align: center; } .is-active{ @@ -121,8 +122,9 @@ :hover ul{ ul{ display: flex; - justify-content: space-around; - // padding: 0.5rem; + justify-content: space-between; + padding: 1rem; + background-color: white; .is-active{ color:$blue-light; }