From 12be376975f55fe1ee118bca6d7ae5f699a881a4 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Sat, 16 Mar 2024 21:40:17 +0100 Subject: Add license page --- src/components/licenses.module.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/components/licenses.module.css (limited to 'src/components/licenses.module.css') diff --git a/src/components/licenses.module.css b/src/components/licenses.module.css new file mode 100644 index 0000000..ac6c4cc --- /dev/null +++ b/src/components/licenses.module.css @@ -0,0 +1,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); +} -- cgit v1.2.3-54-g00ecf