1
0
mirror of https://koodu.h-i.works/projects/thebadspace synced 2025-06-25 16:04:37 -05:00

Added Trusted Sources Count, added meta to links

Plugged in noted counts that detail how many times an instance as been
suspended or silenced by members of the Trusted Sources.

https://writer.oliphant.social/oliphant/trusted-source-membership

Also added some additional meta data to links displaying instances lists
so status and counts can be identified at a glance
This commit is contained in:
Ro
2023-08-28 18:01:43 -07:00
parent c087d00a2b
commit 65229edbab
8 changed files with 44 additions and 8 deletions

View File

@ -34,3 +34,10 @@ section[role="listings"] div[role="paginate"] span {
font-weight: bold;
font-size: 1.5em;
}
a.list-link {
display: grid;
grid-template-columns: 40px 450px 230px;
width: 80%;
height: 45px;
}

View File

@ -7,5 +7,7 @@
--grey: #abb7b7;
--black: #32302f;
--error: #b62520;
--silence: #ea6010;
--suspend: #fb263a;
--primary-rgb: 20 13 13;
}

View File

@ -7,7 +7,7 @@ html {
html body {
background: var(--primary);
color: var(--secondary);
color: var(--white);
margin: 0;
padding: 0;
height: 100%;
@ -26,6 +26,10 @@ a {
*/
}
strong {
color: var(--secondary);
}
header {
width: 100%;
color: var(--primary);

View File

@ -58,7 +58,7 @@ h2 {
font-size: 1.5em;
font-weight: 500;
line-height: 0.8em;
color: var(--white);
color: var(--secondary);
margin: 30px 0;
}