-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathGetStartedContent.module.css
More file actions
58 lines (52 loc) · 1.14 KB
/
GetStartedContent.module.css
File metadata and controls
58 lines (52 loc) · 1.14 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
.root {
align-items: flex-start;
animation: slide-up 0.9s both, fade-in 0.9s both;
}
.text {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: var(--sp-7); /* 28px */
padding: 0 var(--sp-3); /* 0 12px */
align-self: stretch;
}
.title {
align-self: stretch;
}
.body {
font-family: var(--font-product);
font-size: calc(18 * var(--px-in-rem));
font-weight: 400;
line-height: calc(22 * var(--px-in-rem));
text-align: left;
color: var(--ds-text-primary);
word-wrap: break-word;
text-box-trim: trim-both;
text-box-edge: cap alphabetic;
white-space: pre-line;
margin: 0;
align-self: stretch;
}
@keyframes slide-up {
0%, 40.74% {
translate: 0 41px;
animation-timing-function: cubic-bezier(0.66, 0.00, 0.34, 1.00);
}
77.78%, 100% {
translate: 0 0;
}
}
@keyframes fade-in {
0%, 51.85% {
opacity: 0;
animation-timing-function: cubic-bezier(0.66, 0.00, 0.34, 1.00);
}
81.48%, 100% {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.root {
animation: none;
}
}