Saved: 2018-03-09 09:11

Torey Heinz committed Mar 09, 2018
commit 47c645e30cb1a1dfdcb717a242519bf4c5245e5f
Showing 4 changed files with 4 additions and 8 deletions
app/views/pages/services/content_type_template.liquid +1 -1
@@ @@ -31,7 +31,7 @@ content_type: services
{% for image in service.images %}
<div class="column column-block">
<a href="{{ image.file.url | resize: '1200x', optimize: 80 }}">
- <img class="" height="400" width="300" data-src="{{ image.file.url | resize: '400x300#', optimize: 50, progressive: true }}">
+ <img class="thumbnail" height="400" width="300" src="/images/CanvasInnovations-logo.jpg" data-src="{{ image.file.url | resize: '400x300#', optimize: 50, progressive: true }}">
</a>
</div>
{% endfor %}
app/views/pages/testimonials.liquid +1 -1
@@ @@ -24,7 +24,7 @@ editable_elements:
<hr class="thin">
{% assign testimonials = contents.testimonials.all | shuffle %}
{% for testimonial in testimonials %}
- <p class="callout tan">
+ <p class="callout offwhite">
{{ testimonial.content }}<br>
-- <strong>{{ testimonial.who }}</strong>
</p>
public/stylesheets/_settings.scss +2 -2
@@ @@ -78,7 +78,7 @@ $medium-gray: #cacaca;
$dark-gray: #8a8a8a;
$black: #0a0a0a;
$white: #fefefe;
- $tan: #A18362;
+ $offwhite: #A18362;
$foundation-palette: (
primary: $blue,
secondary: $orange,
@@ @@ -89,7 +89,7 @@ $foundation-palette: (
medium-gray: $medium-gray,
dark-gray: $dark-gray,
light-orange: $light-orange,
- tan: $tan,
+ offwhite: $offwhite,
);
$body-background: $white;
$body-font-color: $black;
public/stylesheets/app.scss +0 -4
@@ @@ -87,10 +87,6 @@ hr.thin {
margin: 0.5rem auto;
}
- img:not([src]) {
- visibility: hidden;
- }
-
// .content {
// background-color: $light-gray;
// }