pleroma-like client for Bluesky pl.hexmani.ac
bluesky pleroma social-media
at main 782 B view raw
1@use "./button"; 2@use "./container"; 3@use "./components/post"; 4@use "./nav"; 5@use "./profile"; 6@use "./routes/dashboard"; 7@use "./routes/login"; 8@use "./vars"; 9 10body { 11 text-align: center; 12 color: vars.$textColor; 13 background-color: rgba(12, 17, 24, 1); 14 font-family: Arial, Helvetica, sans-serif; 15 margin: 0; 16} 17 18main { 19 display: flex; 20 flex-direction: row; 21 justify-content: center; 22 margin: 0 auto; 23 max-width: 75%; 24 min-width: 0; 25 width: 100%; 26} 27 28@media (max-width: 768px) { 29 main { 30 flex-direction: column; 31 max-width: 100%; 32 margin: 0; 33 padding: 0 0.5rem; 34 box-sizing: border-box; 35 } 36} 37 38a { 39 text-decoration: none; 40 color: #1185fe; 41} 42 43a:hover { 44 font-weight: bold; 45 font-style: italic; 46}