Adds Covid-19 info
Torey Heinz
committed Apr 19, 2020
commit e56f0ddd05a92c77aeabf12f4cd484bdf3042555
Showing 2
changed files with
27 additions
and 0 deletions
app/views/pages/index.liquid
+7
-0
| @@ | @@ -21,7 +21,14 @@ editable_elements: |
| </p> | |
| </div> | |
| </header> | |
| + | <blockquote class="highlight"> |
| + | <p>COVID-19 - What Are We Doing Now And Why? Visit <a href="https://www.anchorrockfoundation.org/covid-19/" target="_blank">https://www.AnchorRockFoundation.org/COVID-19/</a> to find out more!</p> |
| + | <small>Holland Sentinel Article <a href="https://www.hollandsentinel.com/news/20200419/holland-company-creates-mask-making-task-force" target="_blank">https://www.hollandsentinel.com/news/20200419/holland-company-creates-mask-making-task-force</a></small> |
| + | </blockquote> |
| {% include 'featured-services' %} | |
| {% include 'standard-services' %} | |
| <script async src='https://tag.simpli.fi/sifitag/6c7d2bd0-fe7e-0137-61fe-06659b33d47c'></script> | |
| {% endblock %} | |
| + | |
| + | |
| + | https://www.hollandsentinel.com/news/20200419/holland-company-creates-mask-making-task-force |
public/stylesheets/app.scss
+20
-0
| @@ | @@ -122,3 +122,23 @@ hr.thin { |
| cursor: pointer; | |
| } | |
| + | |
| + | blockquote.highlight { |
| + | margin-top: 1rem; |
| + | background-color: whitesmoke; |
| + | border-left: 5px solid #C01B28; |
| + | box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); |
| + | padding: 1.25em 1.5em; |
| + | |
| + | p { |
| + | color: #000000; |
| + | margin: 0; |
| + | font-size: 1.1rem; |
| + | } |
| + | |
| + | a { |
| + | color: #C01B28; |
| + | cursor: pointer; |
| + | text-decoration: none; |
| + | } |
| + | } |