aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/landing/sections/Publications.module.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/landing/sections/Publications.module.css')
-rw-r--r--src/components/landing/sections/Publications.module.css76
1 files changed, 76 insertions, 0 deletions
diff --git a/src/components/landing/sections/Publications.module.css b/src/components/landing/sections/Publications.module.css
new file mode 100644
index 0000000..c9a39ba
--- /dev/null
+++ b/src/components/landing/sections/Publications.module.css
@@ -0,0 +1,76 @@
1/*
2 * SPDX-FileCopyrightText: 2023-2024 Kristóf Marussy
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7.publications__item {
8 margin-top: 1rem;
9}
10
11.link {
12 white-space: nowrap;
13}
14
15.link--license {
16 --ifm-link-color: var(--ifm-color-secondary-contrast-foreground);
17 --ifm-link-hover-color: var(--ifm-link-color);
18}
19
20[data-theme='dark'] .link--license {
21 --ifm-link-color: var(--ifm-color-emphasis-500);
22}
23
24.link--lower {
25 text-transform: lowercase;
26}
27
28.link__icon {
29 vertical-align: text-top;
30 width: 1em;
31 height: 1em;
32 margin-right: 0.125rem;
33}
34
35.elsewhere {
36 display: flex;
37 flex-direction: row;
38 align-items: center;
39 flex-wrap: wrap;
40 column-gap: 0.25rem;
41}
42
43.elsewhere__text {
44 margin: 0;
45}
46
47.elsewhere__list {
48 display: flex;
49 margin: 0;
50 padding: 0;
51}
52
53.elsewhere__item {
54 display: flex;
55 align-items: center;
56 margin: 0;
57 list-style-type: none;
58}
59
60.elsewhere__icon {
61 display: flex;
62 padding: 0.375rem;
63 --ifm-link-color: var(--ifm-color-secondary-contrast-foreground);
64 --ifm-link-hover-color: var(--ifm-color-emphasis-700);
65 --ifm-link-text-decoration: none;
66}
67
68[data-theme='dark'] .elsewhere__icon {
69 --ifm-link-color: var(--ifm-color-secondary);
70 --ifm-link-hover-color: var(--ifm-color-secondary-dark);
71}
72
73.elsewhere__icon svg {
74 width: 1.75rem;
75 height: 1.75rem;
76}