diff --git a/piati/settings/default.py b/piati/settings/default.py index 42a3f6cf..927194e8 100644 --- a/piati/settings/default.py +++ b/piati/settings/default.py @@ -20,3 +20,7 @@ FEEDBACK_SMS_NUMBER = "" PROJECT_MODEL = "Project" CURRENCY_FORMAT = None +PARENT_SITE = { + "label": "xxx parent site", + "url": "http://osm.org" +} diff --git a/piati/settings/french_mfa_mali.py b/piati/settings/french_mfa_mali.py index 08b923b4..750eb9d0 100644 --- a/piati/settings/french_mfa_mali.py +++ b/piati/settings/french_mfa_mali.py @@ -17,3 +17,7 @@ FEEDBACK_SMS_NUMBER = "+22373013232" PROJECT_MODEL = "DataGouvFrProject" CURRENCY_FORMAT = '#,##0 \xa4' +PARENT_SITE = { + "label": "Ambassade de France au Mali", + "url": "http://www.ambafrance-ml.org/" +} diff --git a/piati/static/css/app.css b/piati/static/css/app.css index 26caedc2..1d50db0c 100644 --- a/piati/static/css/app.css +++ b/piati/static/css/app.css @@ -332,10 +332,13 @@ footer a:hover span { footer { height: 100px; line-height: 100px; - margin-top: 40px; + margin-top: 80px; text-align: center; border-top: 1px solid #eee; } +footer .internal { + background-color: #E0E0D1; +} footer .external { background-color: #222; } @@ -343,12 +346,28 @@ footer .external a { line-height: 30px; padding-right: 30px; display: inline-block; - color: #eee; + color: #666; +} +footer .external a:hover { + text-decoration: underline; +} +footer .parent-site img { + vertical-align: middle; + margin-right: 10px; + border: 1px solid #E0E0D1; + height: 20px; +} +footer .okfn { + background-color: #222; } footer .okfn a { background-image: url('../img/okf-logo-small.png'); background-repeat: no-repeat; background-position: right center; + padding-right: 32px; + line-height: 32px; + height: 32px; + display: inline-block; } footer .row { margin-top: 0; @@ -753,7 +772,7 @@ li a:hover { /* ************************************************* */ -/* ********************* CHARTS ******************** */ +/* ********************* MOBILE ******************** */ /* ************************************************* */ @media only screen and (max-width:770px) { .row { diff --git a/piati/static/img/facebook.png b/piati/static/img/facebook.png index ceca8c9a..3c9c570a 100644 Binary files a/piati/static/img/facebook.png and b/piati/static/img/facebook.png differ diff --git a/piati/static/img/logo_footer.png b/piati/static/img/logo_footer.png new file mode 100644 index 00000000..4d7a0290 Binary files /dev/null and b/piati/static/img/logo_footer.png differ diff --git a/piati/static/img/twitter.png b/piati/static/img/twitter.png index ce6f74a0..631e07aa 100644 Binary files a/piati/static/img/twitter.png and b/piati/static/img/twitter.png differ diff --git a/piati/templates/layout.html b/piati/templates/layout.html index 4fa45e45..03bca456 100644 --- a/piati/templates/layout.html +++ b/piati/templates/layout.html @@ -38,7 +38,7 @@ {% block content %} {% endblock %}