A calm place to write long-form, and publish it to the open social web. skypress.blog/
0

Configure Feed

Select the types of activity you want to include in your feed.

Style the publish success pill with a sunrise gradient

+42
+42
src/styles/editor-chrome.css
··· 343 343 font-size: 0.8rem; 344 344 color: var(--ember); 345 345 } 346 + 347 + /* Publish success pill — sunrise callback, rises into view (Studio-owned) */ 348 + .studio__published { 349 + width: fit-content; 350 + max-width: var(--studio-measure); 351 + margin: 0.35rem auto 0; 352 + display: flex; 353 + align-items: center; 354 + gap: 0.6rem; 355 + padding: 0.5rem 1rem; 356 + border-radius: 999px; 357 + background: linear-gradient(100deg, var(--sun-tint), var(--sun)); 358 + color: var(--ink); 359 + font-size: 0.9rem; 360 + font-weight: 600; 361 + box-shadow: 0 1px 8px rgba(232, 146, 12, 0.3); 362 + animation: studio-published-rise 400ms ease-out; 363 + } 364 + 365 + .studio__published-link { 366 + color: var(--ink); 367 + font-weight: 700; 368 + text-decoration: underline; 369 + white-space: nowrap; 370 + } 371 + 372 + @keyframes studio-published-rise { 373 + from { 374 + opacity: 0; 375 + transform: translateY(0.5rem); 376 + } 377 + to { 378 + opacity: 1; 379 + transform: translateY(0); 380 + } 381 + } 382 + 383 + @media (prefers-reduced-motion: reduce) { 384 + .studio__published { 385 + animation: none; 386 + } 387 + }