summaryrefslogtreecommitdiff
path: root/sass/src/common/index.scss
blob: b2d31876c039061c28926db3e54657cb382dd705 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
$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;
}

.white-text a {
  color: #eeeeff;
}

div.targetlist {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  > a.nonflex {
    padding-left: 1em;
    padding-top: 1em;
    padding-bottom: 1em;
    display: inline-block;
  }
}

a.tablerow {
  display: flex;
  justify-content: space-between;
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  .material-icons {
    vertical-align: bottom;
    margin-bottom: 0.2em;
  }
  span {
    display: inline-block;
  }
}

.pagination {
  li {
    a {
      color: $off-black;
    }
  }
}

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