@use "./container"; @use "./routes/login"; @use "./vars"; @use "./button"; @use "./nav"; /* Core page format */ body { text-align: center; color: vars.$textColor; background-color: rgba(12, 17, 24, 1); font-family: Arial, Helvetica, sans-serif; margin: 0; overflow: hidden; } main { display: flex; flex-direction: row; justify-content: center; margin: 0 auto; max-width: 75%; } @media (max-width: 768px) { main { flex-direction: column; max-width: 90%; margin: 0 1rem; } } a { text-decoration: none; color: #1185fe; } a:hover { font-weight: bold; font-style: italic; } /* Dashboard */ .post-form { display: flex; flex-direction: column; place-content: center; button { } } #post-textbox { background-color: vars.$foregroundColor; border: 0; border-radius: containerBorderRadius; box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2) inset, 0px -1px 0px 0px rgba(255, 255, 255, 0.2) inset, 0px 0px 2px 0px rgba(0, 0, 0, 1) inset; color: vars.$textColor; font-family: inherit; font-size: 14px; resize: none; max-width: 90%; } .dashboard-feed { p { color: #8d8d8d; } }