summaryrefslogtreecommitdiff
path: root/styles/global/bootstrap.css
blob: 0d329574e790eaaa047d0ffc75afb959079f21c2 (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
.navbar {
  background: var(--transparent-background-dark) !important;
  backdrop-filter: var(--backdrop-blur);

  &:focus-within,
  &:hover {
    background: var(--color-bg) !important;
  }
}

.card,
.jumbotron,
.modal-content {
  background: var(--transparent-background) !important;
  color: var(--color-text) !important;
  border-radius: var(--border-radius);
}

.modal {
  background: var(--transparent-background) !important;
  backdrop-filter: var(--backdrop-blur);
}

.alert {
  border: 2px solid rgb(from var(--alert-color) r g b / 0.5) !important;
  color: var(--alert-color) !important;
}
.alert-success {
  --alert-color: var(--color-green);
}
.alert-danger {
  --alert-color: var(--color-red);
}
.alert-warning {
  --alert-color: var(--color-orange);
}
.alert-primary {
  --alert-color: var(--color-primary);
}
.alert-secondary {
  --alert-color: var(--color-secondary);
}
.alert-info {
  --alert-color: var(--color-blue);
}

.dropdown-menu {
  background: var(--transparent-background-dark) !important;

  .dropdown-item {
    color: var(--color-text) !important;

    &:hover {
      background: var(--color-primary) !important;
    }
  }
}