news.ycombinator.com - 8/31/2022, 10:16:18 PM
by egello
Details
Authoregello
LicenseNo License
Categorynews.ycombinator.com
Created
Updated
Size949 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Make hackernews more readable and give it a little ~s p a c e~
- Reduce the line length so that long paragraphs are more readable in comments.
- Change the colors of the links so it's easier to keep track of which links you have visited before.
- Increase the font size for better readability.
Notes
Userstyle doesn't have notes.
Source code
/* ==UserStyle==
@name news.ycombinator.com - 8/31/2022, 10:16:18 PM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document url-prefix("https://news.ycombinator.com/") {
/* Insert code here... */
#hnmain {
max-width: 50em;
padding: 0em 1em;
background-color: #ffecd5
}
body {
font-family: Verdana, 'Open Sans', sans-serif;
background-color: #b79c7a;
}
* {
font-family: Verdana, 'Open Sans', sans-serif;
}
.title {
font-size: 13pt;
padding-top: 5px;
}
.subtext {
font-size: 12pt;
padding-top: 3px;
}
.subtext a:link {
color: black;
}
.subtext a:visited {
color: #bbb;
}
.comment {
font-size: 12pt;
}
.hnmore a:link,
a:visited {
color: #bbb;
}
}