The 1st decentralized social network for sharing when you're on the toilet. Post a "flush" today! Powered by the AT Protocol.
at main 44 lines 777 B view raw
1.container { 2 display: flex; 3 flex-direction: column; 4 align-items: center; 5 justify-content: center; 6 min-height: 70vh; 7 padding: 2rem; 8} 9 10.loaderContainer, .errorContainer { 11 text-align: center; 12 max-width: 500px; 13} 14 15.loader { 16 border: 5px solid #f3f3f3; 17 border-top: 5px solid var(--primary-color); 18 border-radius: 50%; 19 width: 50px; 20 height: 50px; 21 animation: spin 1s linear infinite; 22 margin: 0 auto 20px; 23} 24 25@keyframes spin { 26 0% { transform: rotate(0deg); } 27 100% { transform: rotate(360deg); } 28} 29 30.error { 31 color: var(--error-color); 32 margin: 1rem 0; 33 word-break: break-word; 34} 35 36.button { 37 margin-top: 1rem; 38 background-color: var(--primary-color); 39 color: white; 40 border: none; 41 border-radius: 4px; 42 padding: 0.5rem 1rem; 43 cursor: pointer; 44}