diff options
| author | marudor <marudor@marudor.de> | 2019-05-16 16:10:53 +0200 | 
|---|---|---|
| committer | marudor <marudor@marudor.de> | 2019-05-16 16:10:53 +0200 | 
| commit | 84b32b28e9f1da6576e4864a0f374b341a2c9920 (patch) | |
| tree | d6bd27263aa3117c9368d3005fe27519f4793247 /sass/src/common | |
| parent | 87e74ca90d4c13758461f380b00ed83b5a287da9 (diff) | |
Further color improvements
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; +    } +  } +} | 
