this repo has no description
0
fork

Configure Feed

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

at 23e2f59033cebc3e9a956065a53d8a95cd52df61 72 lines 1.2 kB view raw
1.account-block { 2 display: flex; 3 align-items: center; 4 gap: 8px; 5 color: var(--text-color); 6 text-decoration: none; 7 8 .account-block-acct { 9 display: inline-block; 10 } 11} 12.account-block:hover b { 13 text-decoration: underline; 14} 15 16.account-block.skeleton { 17 color: var(--bg-faded-color); 18} 19 20.account-block .verified-field { 21 display: inline-flex; 22 align-items: baseline; 23 gap: 2px; 24 25 * { 26 -webkit-box-orient: vertical; 27 display: -webkit-box; 28 -webkit-line-clamp: 1; 29 line-clamp: 1; 30 text-overflow: ellipsis; 31 overflow: hidden; 32 unicode-bidi: isolate; 33 direction: initial; 34 } 35 36 a { 37 pointer-events: none; 38 color: color-mix( 39 in lch, 40 var(--green-color) 20%, 41 var(--text-insignificant-color) 80% 42 ) !important; 43 } 44 45 .icon { 46 color: var(--green-color); 47 transform: translateY(1px); 48 } 49 50 .invisible { 51 display: none; 52 } 53 .ellipsis:after { 54 content: '…'; 55 } 56} 57 58.account-block .account-block-stats { 59 line-height: 1.25; 60 margin-top: 2px; 61 font-size: 0.9em; 62 color: var(--text-insignificant-color); 63 display: flex; 64 flex-wrap: wrap; 65 align-items: center; 66 column-gap: 4px; 67 68 a { 69 color: inherit; 70 text-decoration: none; 71 } 72}