summaryrefslogtreecommitdiff
path: root/scss/modules/link.scss
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-10-19 23:13:30 +0100
committerGitHub <noreply@github.com>2023-10-19 23:13:30 +0100
commita1cabdeaaf3bade1bd0872bcafc52c81f1c31ce8 (patch)
treecd9c075bbd590a65081cf2f97052a4087897cf55 /scss/modules/link.scss
parentd26ea8906e2a2c96ecfdea48ab4f0c8343eabf50 (diff)
Optimise CSS (#17)
* Installs Sass * installs concurrently * Ports CSS to SCSS * Gitignores CSS build output * Moves public/main.css to scss/index.scss * Fixes port to SCSS * Use-ifies base styles * Use-ifies layout styles * Use-ifies modules styles * Use-ifies variables * Use-ifies utils * Moves normalize to scss * Implements a CSS minifying step with CSSO --------- Co-authored-by: Joe Carstairs <jcarstairs@scottlogic.com>
Diffstat (limited to 'scss/modules/link.scss')
-rw-r--r--scss/modules/link.scss42
1 files changed, 42 insertions, 0 deletions
diff --git a/scss/modules/link.scss b/scss/modules/link.scss
new file mode 100644
index 0000000..d225e9d
--- /dev/null
+++ b/scss/modules/link.scss
@@ -0,0 +1,42 @@
+.link {
+ color: var(--special-text-color);
+ text-decoration-line: underline;
+ text-decoration-color: var(--special-text-color);
+ text-decoration-thickness: var(--relative-eighth-rem);
+ text-underline-offset: var(--relative-eighth-rem);
+ border: dotted transparent var(--relative-eighth-rem);
+ border-radius: calc(3 * var(--relative-eighth-rem));
+ transition:
+ color 100ms,
+ text-decoration-color 100ms,
+ text-decoration-thickness 100ms,
+ text-underline-offset 100ms,
+ border-color 100ms,
+ text-shadow 100ms;
+}
+
+.link:is(:hover, :focus, :focus-visible, :focus-within),
+.group-hover:is(:hover, :focus, :focus-visible, :focus-within) .link {
+ text-decoration-color: currentColor;
+ text-decoration-thickness: calc(4 * var(--relative-eighth-rem));
+ text-underline-offset: calc(3 * var(--relative-eighth-rem));
+ text-shadow:
+ 0 1px 0 currentColor,
+ 1px 0 0 currentColor,
+ 1px 0 0 currentColor,
+ 0 1px 0 currentColor;
+ transition:
+ color 300ms,
+ text-decoration-color 300ms,
+ text-decoration-thickness 300ms,
+ text-underline-offset 300ms,
+ border-color 300ms,
+ text-shadow 300ms;
+}
+
+.link:focus, .link:focus-visible {
+ box-shadow: none;
+ outline: none;
+ border-color: var(--special-text-color);
+}
+