Decreases the column width and increases the line height to make the SQLite docs more readable.
Minima - SQLite by rednafi
Details
Authorrednafi
LicenseMIT
Categorysqlite.org
Created
Updated
Size663 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This theme applies the following CSS to the SQLite website:
body div {
width: 50rem;
margin: 0 auto;
line-height: 1.5;
}
Source code
/* ==UserStyle==
@name minima-sqlite
@namespace USO Archive
@author ahcox
@description SQLite has a text-heavy site. All the pages have really just a single column that
should be read from top to bottom. The default style lets all this text spill out
as wide as the window but sqlite-minima pulls the column into 50rem which is more
readable.
@version 1.0
@license CC0-1.0
@preprocessor uso
==/UserStyle== */
@-moz-document domain("sqlite.org") {
body {
width: 50rem !important;
margin: 0 auto !important;
line-height: 1.5 !important;
}
}