forked from innovaccer/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlink.module.css
More file actions
62 lines (51 loc) · 1.23 KB
/
link.module.css
File metadata and controls
62 lines (51 loc) · 1.23 KB
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
.Link {
text-decoration: none;
font-weight: var(--font-weight-medium);
transition: var(--duration--fast-01) var(--standard-productive-curve);
box-sizing: border-box;
border-bottom: var(--border-width-2-5) solid transparent;
}
.Link:focus {
outline: var(--border-width-05) solid var(--primary-focus);
outline-offset: var(--spacing-05);
border-radius: var(--border-radius-10);
}
.Link--regular {
font-size: var(--font-size);
height: var(--font-height);
}
.Link--tiny {
font-size: var(--font-size-s);
height: var(--font-height-s);
line-height: var(--font-height-s);
}
.Link--default {
color: var(--text-link);
}
.Link--subtle {
color: var(--inverse-lighter);
}
.Link--default:hover {
border-bottom: var(--border-width-2-5) solid var(--primary-dark);
color: var(--primary-dark);
}
.Link--subtle:hover {
border-bottom: var(--border-width-2-5) solid var(--inverse-light);
color: var(--inverse-light);
}
.Link--default:active {
color: var(--primary-darker);
border: none;
}
.Link--subtle:active {
color: var(--inverse);
border: none;
}
.Link--default-disabled {
color: var(--primary-lighter);
pointer-events: none;
}
.Link--subtle-disabled {
color: var(--inverse-lightest);
pointer-events: none;
}