aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/licenses.module.css
blob: ac6c4cc224ccdcd2c5a99037e48bb05f97980ee5 (plain) (blame)
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
/*
 * SPDX-FileCopyrightText: 2024 Kristóf Marussy
 *
 * SPDX-License-Identifier: MIT
 */

.link {
  white-space: nowrap;
  --ifm-link-color: var(--ifm-color-secondary-contrast-foreground);
  --ifm-link-hover-color: var(--ifm-link-color);
}

[data-theme='dark'] .link {
  --ifm-link-color: var(--ifm-color-emphasis-500);
}

.icon {
  vertical-align: text-top;
  width: 1em;
  height: 1em;
  margin-right: 0.125rem;
}

.text {
  color: var(--ifm-color-secondary-contrast-foreground);
}

[data-theme='dark'] .text {
  color: var(--ifm-color-emphasis-500);
}