aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/landing/sections/Publications.module.css
blob: c9a39bab5a664c919c623e7d1b068e8b9c1e18a8 (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
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
73
74
75
76
/*
 * SPDX-FileCopyrightText: 2023-2024 Kristóf Marussy
 *
 * SPDX-License-Identifier: MIT
 */

.publications__item {
  margin-top: 1rem;
}

.link {
  white-space: nowrap;
}

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

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

.link--lower {
  text-transform: lowercase;
}

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

.elsewhere {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 0.25rem;
}

.elsewhere__text {
  margin: 0;
}

.elsewhere__list {
  display: flex;
  margin: 0;
  padding: 0;
}

.elsewhere__item {
  display: flex;
  align-items: center;
  margin: 0;
  list-style-type: none;
}

.elsewhere__icon {
  display: flex;
  padding: 0.375rem;
  --ifm-link-color: var(--ifm-color-secondary-contrast-foreground);
  --ifm-link-hover-color: var(--ifm-color-emphasis-700);
  --ifm-link-text-decoration: none;
}

[data-theme='dark'] .elsewhere__icon {
  --ifm-link-color: var(--ifm-color-secondary);
  --ifm-link-hover-color: var(--ifm-color-secondary-dark);
}

.elsewhere__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}