diff --git a/public/assets/css/global/frame.css b/public/assets/css/global/frame.css index 8c17c24..173b313 100644 --- a/public/assets/css/global/frame.css +++ b/public/assets/css/global/frame.css @@ -68,6 +68,17 @@ a:hover { border-bottom: 1px solid var(--secondary); } +pre { + white-space: pre; + background: var(--secondary); +} + +code { + background: var(--secondary); + color: var(--primary); + padding: 3px; +} + sup { background: var(--black); color: var(--white); diff --git a/templates/front/about.twig b/templates/front/about.twig index 08bc052..9d2d840 100644 --- a/templates/front/about.twig +++ b/templates/front/about.twig @@ -1,4 +1,5 @@ {% extends "base/frame.twig" %} + {% block stylesheets %} {% endblock %} @@ -9,20 +10,52 @@
The Bad Space project was born from a need to effectively identify instances that house bad actors and are poorly moderated, which puts marginalized communities at risk. -
- It is an extension of the - #fediblock - hashtag created by - Artist Marcia X - with additional support from - Ginger - to provide a catalog of instances that seek to cause harm and reduce the quality of experience in the fediverse. -
- + ++ It is an extension of the + #fediblock + hashtag created by + Artist Marcia X + with additional support from + Ginger + to provide a catalog of instances that seek to cause harm and reduce the quality of experience in the fediverse.
Technical support provided by Ro.
++ The Bad Space is meant to be a resource for anyone looking to improve the quality of their online experience by creating a tool that catalogs sources for harassment and abuse. There are several options for how it can be used. +
https://thebad.space/api/v1/search
+ by posting a JSON object with the following format:
+ {"url":"search.url"}
+{
+"listingCount":1,
+ "locations":
+ [
+ {
+ "url":"search.url",
+ "name":"Instance Name",
+ "description":"instance description",
+ "link":"bad-space-instance-link"
+ }
+ ]
+}
+
+
{% endblock %}