Fixes basic color contrast accessibility issues on Pinboard, whose proprietor can't be bothered.
Unsuck Pinboard by stephanieleary
Details
Authorstephanieleary
LicenseMIT
Categorypinboard.in
Created
Updated
Size773 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Unsuck Pinboard
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Fixes basic color contrast accessibility issues on Pinboard, whose proprietor can't be bothered.
@author Stephanie Leary
==/UserStyle== */
@-moz-document domain("pinboard.in") {
/* For the love of god just use the system font */
body {
font-family: sans-serif;
}
.private {
background: #f0f0f0;
}
.bookmark {
padding: .5ch;
margin-bottom: 1rem;
}
.bookmark_title {
line-height: 1.4;
font-size: 130%;
font-weight: 400;
}
.url_link {
padding: .3ch;
}
.description {
line-height: 1.4;
color: #303030;
}
.url_link {
color: #222;
}
#tag_cloud_header a,
a.edit,
a.delete,
.when {
color: #777;
}
}