Skip to content

Commit

Permalink
Added more contrast to blockquote text.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanbohacek committed Oct 12, 2022
1 parent 3184709 commit d037474
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion css-critical/styles.css

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -7994,16 +7994,17 @@ blockquote {
font-size: 0.9rem;
color: #9aadc5; }
blockquote a {
color: #9aadc5; }
color: #566981;
text-decoration: underline; }
blockquote a:hover {
color: #788ba3; }
color: #566981; }
blockquote ul, blockquote ol {
padding: 0 50px; }
@media (max-width: 900px) {
blockquote ul, blockquote ol {
padding: 0 20px; } }
blockquote p {
color: #788ba3;
color: #566981;
font-size: 1.25rem; }
blockquote p:first-child {
margin-top: -3rem; }
Expand Down
2 changes: 1 addition & 1 deletion css/styles.min.css

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/styles/typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,8 @@ blockquote{
}

a{
color: $color-ternary;
color: $color-ternary-dark;
text-decoration: underline;
&:hover{
color: $color-ternary-dark;
}
Expand Down
2 changes: 1 addition & 1 deletion src/styles/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $button-font-family: 'Source Code Pro', monospace;
$color-primary: #3c3c3c;
$color-secondary: $color-primary + #666;
$color-ternary: #9aadc5;
$color-ternary-dark: $color-ternary - #222;
$color-ternary-dark: $color-ternary - #444;
$background-ternary: #edf6ff;

$background-primary: #fff;
Expand Down

0 comments on commit d037474

Please sign in to comment.