diff options
author | Dave Arter <davea@mysociety.org> | 2020-05-04 16:08:42 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2020-05-05 14:12:15 +0100 |
commit | 751e3b8d4ec26f29273f52d97e72402d11c62112 (patch) | |
tree | b9996a578068fd7631871362cec1e80192ec13e6 | |
parent | 6b081480fa0e21cd85745ac8a1eb3c3e0a23b13d (diff) |
[Peterborough] Add COVID-19 banner
For https://github.com/mysociety/fixmystreet-commercial/issues/1880
-rw-r--r-- | templates/web/peterborough/front/pre-steps.html | 8 | ||||
-rw-r--r-- | web/cobrands/peterborough/base.scss | 13 |
2 files changed, 20 insertions, 1 deletions
diff --git a/templates/web/peterborough/front/pre-steps.html b/templates/web/peterborough/front/pre-steps.html new file mode 100644 index 000000000..5973c83d2 --- /dev/null +++ b/templates/web/peterborough/front/pre-steps.html @@ -0,0 +1,8 @@ +<p class="covid-banner"> + <strong>Please note:</strong> + during the Coronavirus (COVID-19) pandemic it will not be possible for us to + action or respond to all reports within regular time-frames. While we are + working hard to ensure key services are maintained and focusing on high + priority issues, you can + <a href="https://www.peterborough.gov.uk/healthcare/public-health/coronavirus/coronavirus-covid-19-overview">find advice and information on our services online</a>. +</p> diff --git a/web/cobrands/peterborough/base.scss b/web/cobrands/peterborough/base.scss index 58b31c66b..67e199cca 100644 --- a/web/cobrands/peterborough/base.scss +++ b/web/cobrands/peterborough/base.scss @@ -134,4 +134,15 @@ a, margin: 0 0.5em; font-size: 1.1em; } -}
\ No newline at end of file +} + +.covid-banner { + background-color: #AF5412; + color: white; + padding: 2em; + font-size: 1.2em; + a { + text-decoration: underline; + color: white; + } +} |