Commit 35763b5cbf21546b2687a1f6d46c8cc103d16d88
Exists in
master
and in
6 other branches
Merge branch 'master' into staging
Showing
1 changed file
with
15 additions
and
11 deletions
Show diff stats
src/app/layout.scss
@@ -336,26 +336,30 @@ a.link-black { | @@ -336,26 +336,30 @@ a.link-black { | ||
336 | 336 | ||
337 | blockquote { | 337 | blockquote { |
338 | border-left: medium none; | 338 | border-left: medium none; |
339 | - padding: 60px 0 0 65px; | 339 | + padding: 60px 0 0 0px; |
340 | position: relative; | 340 | position: relative; |
341 | margin: 0px; | 341 | margin: 0px; |
342 | border-left: none; | 342 | border-left: none; |
343 | 343 | ||
344 | - &:before { | ||
345 | - content: "\231C"; | ||
346 | - font-size: 300px; | ||
347 | - line-height: 200px; | ||
348 | - position: absolute; | ||
349 | - top: 25px; | ||
350 | - left: -25px; | ||
351 | - font-weight: bolder; | ||
352 | - opacity: 0.5; | 344 | + .content-highlight-icon { |
353 | @each $category, | 345 | @each $category, |
354 | $color in $categories { | 346 | $color in $categories { |
355 | .#{$category} & { | 347 | .#{$category} & { |
356 | - color: $color; | 348 | + border-left: 34px solid $color; |
349 | + border-top: 33px solid $color; | ||
357 | } | 350 | } |
358 | } | 351 | } |
352 | + width: 110px; | ||
353 | + height: 112px; | ||
354 | + position: absolute; | ||
355 | + display: inline-block; | ||
356 | + opacity: .5; | ||
357 | + } | ||
358 | + | ||
359 | + .content-highlight-text { | ||
360 | + position: relative; | ||
361 | + left: 60px; | ||
362 | + top: 65px; | ||
359 | } | 363 | } |
360 | } | 364 | } |
361 | 365 |