aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/licenses.module.css
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2024-03-16 21:40:17 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2024-03-16 22:01:52 +0100
commit12be376975f55fe1ee118bca6d7ae5f699a881a4 (patch)
tree1e43086d3e11638fa99d1640e4585bc64647e991 /src/components/licenses.module.css
parentUse pathname:// for internal file links (diff)
downloadblog-12be376975f55fe1ee118bca6d7ae5f699a881a4.tar.gz
blog-12be376975f55fe1ee118bca6d7ae5f699a881a4.tar.zst
blog-12be376975f55fe1ee118bca6d7ae5f699a881a4.zip
Add license page
Diffstat (limited to 'src/components/licenses.module.css')
-rw-r--r--src/components/licenses.module.css30
1 files changed, 30 insertions, 0 deletions
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 @@
1/*
2 * SPDX-FileCopyrightText: 2024 Kristóf Marussy
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7.link {
8 white-space: nowrap;
9 --ifm-link-color: var(--ifm-color-secondary-contrast-foreground);
10 --ifm-link-hover-color: var(--ifm-link-color);
11}
12
13[data-theme='dark'] .link {
14 --ifm-link-color: var(--ifm-color-emphasis-500);
15}
16
17.icon {
18 vertical-align: text-top;
19 width: 1em;
20 height: 1em;
21 margin-right: 0.125rem;
22}
23
24.text {
25 color: var(--ifm-color-secondary-contrast-foreground);
26}
27
28[data-theme='dark'] .text {
29 color: var(--ifm-color-emphasis-500);
30}