diff options
Diffstat (limited to 'sass/src/common')
| -rw-r--r-- | sass/src/common/index.scss | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/sass/src/common/index.scss b/sass/src/common/index.scss index 1a47a11..f279240 100644 --- a/sass/src/common/index.scss +++ b/sass/src/common/index.scss @@ -2,6 +2,7 @@ $customColors: (    'caution': $error-color,    'info': $info-color,    'contrast': $off-black, +  'success': $success-color,  );  @each $name, $color in $customColors { @@ -16,3 +17,15 @@ $customColors: (  html {    background-color: $bg-color;  } + +a.unmarked { +  color: $off-black; +} + +.pagination { +  li { +    a { +      color: $off-black; +    } +  } +} | 
