-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisual-fixes.css
More file actions
64 lines (64 loc) · 1.37 KB
/
Copy pathvisual-fixes.css
File metadata and controls
64 lines (64 loc) · 1.37 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
63
64
/* Visual QA overrides for Klar actions/facts and Bodoni glyph crop. */
.case-actions {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.85rem 1.6rem;
}
.case-actions .project-link,
.case-actions .text-link {
margin-top: 0;
line-height: 1;
}
.text-link {
display: inline-flex;
align-items: center;
color: var(--ink);
font: 700 .7rem/1 var(--sans);
letter-spacing: .12em;
text-decoration: none;
text-transform: uppercase;
padding-bottom: .12rem;
border-bottom: 1px solid var(--ink);
transition: color .2s ease, border-color .2s ease, transform .3s var(--ease);
}
.text-link span {
display: inline-block;
margin-left: .35rem;
color: var(--signal);
transition: transform .35s var(--ease);
}
.text-link:hover {
color: var(--signal);
border-color: var(--signal);
}
.text-link:hover span {
transform: translateX(.35rem);
}
.case-facts > div {
display: grid;
grid-template-columns: max-content minmax(0, 1fr);
column-gap: 1.25rem;
align-items: baseline;
}
.case-facts dt {
min-width: 0;
}
.case-facts dd {
margin: 0;
justify-self: end;
text-align: right;
}
.gsap-title .line {
display: block;
overflow: visible;
padding: 0.16em 0.1em 0.28em;
margin: -0.08em -0.06em -0.16em;
will-change: transform, opacity;
}
.case-hero h1 {
line-height: 0.94;
letter-spacing: -0.06em;
overflow: visible;
padding-block: 0.1em 0.2em;
}