-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
26 lines (24 loc) · 1.61 KB
/
Copy pathstyles.css
File metadata and controls
26 lines (24 loc) · 1.61 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
@import "./tokens/fonts.css?v=b7f5bba7f91c";
@import "./tokens/colors.css?v=b7f5bba7f91c";
@import "./tokens/typography.css?v=b7f5bba7f91c";
@import "./tokens/spacing.css?v=b7f5bba7f91c";
@import "./tokens/elevation.css?v=b7f5bba7f91c";
@import "./tokens/motion.css?v=b7f5bba7f91c";
@import "./tokens/animation.css?v=b7f5bba7f91c";
@import "./tokens/interaction.css?v=b7f5bba7f91c";
@import "./tokens/surfaces.css?v=b7f5bba7f91c";
@import "./tokens/document.css?v=b7f5bba7f91c";
@import "./tokens/case.css?v=b7f5bba7f91c";
@import "./tokens/shell.css?v=b7f5bba7f91c";
/* Every element sizes by its border box. Without this, a component that sets both a width and
padding is oversized by its padding — which is what made stage copy overlap the character art
at every width. Must sit AFTER the @imports: the CSS spec discards any @import that follows a
style rule, and putting this first silently disabled every token file above. */
*, *::before, *::after { box-sizing: border-box; }
/* The About cover's "I design ____" line. JS types and erases the word; this block opts the line
out of the h1's balanced wrapping (balance re-shuffles lines on every keystroke) and reserves
two lines so the copy below never bounces as words change length. The caret blinks in step;
reduced-motion renders the settled line with no caret at all (enforced in JS and here). */
[data-ds="design-rotator"] { display: block; text-wrap: wrap; min-height: calc(var(--display-xl-leading) * 2em); }
@keyframes rotator-caret-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { [data-ds="design-rotator-caret"] { display: none; } }