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