diff options
Diffstat (limited to 'design/sass/_global.scss')
-rw-r--r-- | design/sass/_global.scss | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/design/sass/_global.scss b/design/sass/_global.scss index 20f9056..bfbb50e 100644 --- a/design/sass/_global.scss +++ b/design/sass/_global.scss @@ -19,16 +19,17 @@ a, button, input, select, textarea, label, summary { touch-action: manipulation; } a { - color: $orange; + color: $body_font_color; -webkit-transition: all 0.1s ease; -moz-transition: all 0.1s ease; -ms-transition: all 0.1s ease; transition: all 0.1s ease; + text-decoration-color: $orange; &:hover { text-decoration: none; } &:visited { - color: $orange; + color: $body_font_color; } } p { @@ -198,7 +199,9 @@ h5 { } .bl { @include smcaps; - @include fontsize(11); + @include fontsize(12); + font-weight: 600; + color: $secondary-link-color; } .italic { font-style: italic; @@ -223,7 +226,9 @@ h5 { li { display: inline; } - a { color: $brown;} + a { + color: $secondary-link-color; + } @include breakpoint(gamma) { text-align: left; } |