summaryrefslogtreecommitdiff
path: root/sass/src/common/index.scss
blob: 9ceca2cee7b47afb161a46a5aa70134b32c6a426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
$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;
    }
  }
}

.collection-item {
  color: $off-black;
  .secondary-content {
    color: $off-black;
  }
  &.disabled {
    color: $inactive-color;
  }
}