(attempted) pleroma clone for bluesky pl.hexmani.ac
bluesky pleroma social-media
2

Configure Feed

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

bluroma / static / styles / nojs.css
1.3 kB 55 lines
1:root { 2 --background: rgba(12, 17, 24, 1); 3 --foreground: rgba(21, 30, 43, 1); 4 --text: #b9b9ba; 5 --radius: 5px; 6} 7 8body { 9 display: flex; 10 flex-direction: column; 11 align-items: center; 12 justify-content: center; 13 gap: 1rem; 14 text-align: center; 15 color: var(--text); 16 background-color: var(--background); 17 font-family: Arial, Helvetica, sans-serif; 18 margin: 0; 19 overflow: hidden; 20} 21 22.nojs { 23 grid-column: 2; 24 25 .container { 26 background-color: rgba(15, 22, 30, 1); 27 border-radius: var(--radius); 28 margin: 1em; 29 padding-bottom: 1rem; 30 max-height: 100%; 31 max-width: 350px; 32 box-shadow: 33 0px 0px 3px 0px rgba(0, 0, 0, 0.5), 34 0px 4px 6px 3px rgba(0, 0, 0, 0.3); 35 } 36 37 .container-header { 38 font-weight: 500; 39 background-color: var(--foreground); 40 text-align: left; 41 padding: 1em; 42 height: 1rem; 43 border-radius: var(--radius) var(--radius) 0 0; 44 margin-bottom: 1em; 45 box-shadow: 46 0px 1px 3px 0px rgba(0, 0, 0, 0.4), 47 0px 1px 0px 0px rgba(255, 255, 255, 0.2) inset; 48 } 49 50 img { 51 margin-top: 0.5rem; 52 max-width: 50px; 53 filter: grayscale(1); 54 } 55}