Simple style to make it a bit more pleasant to read on a 15" FHD laptop screen
Make dodbook more readable by al-arz
Details
Authoral-arz
LicenseMIT
Categorydataorienteddesign.com
Created
Updated
Size615 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 dataorienteddesign.com
@version 20230806.14.50
@namespace ?
==/UserStyle== */
@-moz-document domain("dataorienteddesign.com") {
/* Random CSS to make HTML version of Data-Oriented Design book (https://www.dataorienteddesign.com/dodbook/) a bit more pleasant to read on my 15" FHD laptop */
body {
font-family: 'Lato', "Verdana", sans-serif;
font-size: 1.4em;
line-height: 1.5em;
padding: 20px;
background-color: #eee;
color: #222
}
body > * {
display: block;
width: 50%;
margin: 2em auto 1em auto;
}
body > p {
margin: 1em auto 1.5em auto;
}
}