Makes the paragraph width maximum 40em, which gives much more readable text.
Readable paragraph width by dbosk
Details
Authordbosk
LicenseNo License
CategoryAll pages, e.g. Wikipedia
Created
Updated
Size320 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 Decent paragraph width
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Sets an upper limit for paragraph width, to improve readability.
@author Daniel Bosk
==/UserStyle== */
@-moz-document regexp(".*") {
p {
max-width: 40em;
}
}