bring back online status and set selection color

This commit is contained in:
2023-03-11 14:30:24 +01:00
parent 421a7b4c87
commit 405283dd4a
3 changed files with 36 additions and 3 deletions
+29
View File
@@ -4,6 +4,15 @@
padding: 0;
--max-width: 40rem;
}
::-moz-selection {
background: rgba(255,255,255, 0.2);
}
::selection {
background: rgba(255,255,255, 0.2);
}
html {
font-family: 'Open Sans', sans-serif;
color: white;
@@ -86,6 +95,26 @@ main article {
height: 100%;
}
.status {
max-width: var(--max-width);
width: min(100%, 16rem);
border: 2px solid #000;
border-radius: 0.2rem;
background-color: rgba(0,0,0, 0.5);
backdrop-filter: blur(4px);
box-sizing: border-box;
min-height: 5rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0.5rem;
}
.status #status-action:empty {
display: none;
}
.bio {
padding: 1rem;
max-width: var(--max-width);