this repo has no description
0
fork

Configure Feed

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

at main 70 lines 1.4 kB view raw
1.status-deck { 2 header { 3 white-space: nowrap; 4 } 5 header h1 { 6 min-width: 0; 7 flex-grow: 1; 8 text-overflow: ellipsis; 9 overflow: hidden; 10 white-space: nowrap; 11 align-self: stretch; 12 } 13 header h1 .deck-back { 14 margin-inline-start: -16px; 15 } 16 17 .button-refresh .icon { 18 animation: spin 1s linear; 19 } 20 .button-refresh:is(:hover, :focus) .icon { 21 transition: transform 1s linear; 22 transform: rotate(360deg); 23 } 24} 25 26.hero-heading { 27 font-size: var(--text-size); 28 display: inline-block; 29} 30.hero-heading .icon { 31 vertical-align: middle; 32 color: var(--text-insignificant-color); 33} 34.hero-heading .insignificant { 35 font-weight: normal; 36} 37 38.ancestors-indicator { 39 font-size: 70% !important; 40 41 & > .avatar ~ .avatar { 42 margin-inline-start: -4px; 43 } 44} 45.ancestors-indicator:not([hidden]) { 46 animation: slide-up-smooth 0.3s both var(--spring-timing-funtion) 0.3s; 47} 48.ancestors-indicator[hidden] { 49 opacity: 0; 50 pointer-events: none; 51} 52 53.post-status-banner { 54 position: sticky; 55 bottom: 16px; 56 bottom: max(16px, env(safe-area-inset-bottom)); 57 font-size: 90%; 58 background-color: var(--bg-faded-color); 59 padding: 16px; 60 margin: 0 16px; 61 border-radius: 16px; 62 white-space: pre-wrap; 63 line-height: 1.2; 64 max-width: var(--main-width); 65 z-index: 1; 66} 67.post-status-banner > p:first-of-type { 68 margin-top: 0; 69 padding-top: 0; 70}