mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-04 21:22:07 +00:00
## Summary Migrate the onboarding / login / sign-up / survey pieces from `rh-test` to `main`. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6564-WIP-Bring-Onboarding-in-from-rh-test-2a16d73d365081318483f993e3ca0f89) by [Unito](https://www.unito.io) --------- Co-authored-by: Jin Yi <jin12cc@gmail.com> Co-authored-by: GitHub Action <action@github.com>
33 lines
1005 B
CSS
33 lines
1005 B
CSS
/* ABC ROM Extended — full face mapping */
|
|
@font-face {
|
|
font-family: 'ABC ROM Extended';
|
|
src:
|
|
local('ABC ROM Extended Black Italic'),
|
|
local('ABCRom BlackItalic'),
|
|
url('../fonts/ABCROMExtended-BlackItalic.woff2') format('woff2'),
|
|
url('../fonts/ABCROMExtended-BlackItalic.woff') format('woff');
|
|
font-weight: 900;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* Prevent browser from synthesizing fake bold/italic which can cause mismatches */
|
|
.hero-title,
|
|
.font-abcrom {
|
|
font-family: 'ABC ROM Extended', sans-serif;
|
|
font-synthesis: none; /* no faux bold/italic */
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
/* Figma-like hero style */
|
|
.hero-title {
|
|
font-size: 32px;
|
|
font-weight: 900;
|
|
font-style: italic;
|
|
text-transform: uppercase;
|
|
text-shadow: 0 4px 4px rgb(0 0 0 / 0.25);
|
|
/* Figma has leading-trim/text-edge which CSS doesn't support; emulate with tight line-height */
|
|
line-height: 1.1;
|
|
} |