diff options
Diffstat (limited to 'sass/src/common')
-rw-r--r-- | sass/src/common/_variables.scss | 0 | ||||
-rw-r--r-- | sass/src/common/index.scss | 31 |
2 files changed, 31 insertions, 0 deletions
diff --git a/sass/src/common/_variables.scss b/sass/src/common/_variables.scss new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/sass/src/common/_variables.scss diff --git a/sass/src/common/index.scss b/sass/src/common/index.scss new file mode 100644 index 0000000..f279240 --- /dev/null +++ b/sass/src/common/index.scss @@ -0,0 +1,31 @@ +$customColors: ( + 'caution': $error-color, + 'info': $info-color, + 'contrast': $off-black, + 'success': $success-color, +); + +@each $name, $color in $customColors { + .#{$name}-color { + background-color: $color; + } + .#{$name}-color-text { + color: $color; + } +} + +html { + background-color: $bg-color; +} + +a.unmarked { + color: $off-black; +} + +.pagination { + li { + a { + color: $off-black; + } + } +} |