Adds just 200 bytes of CSS plus a light grayish yellow background
200 Bytes of CSS by vcg3rd
Details
Authorvcg3rd
LicenseNo License
Categoryuserstyles.world
Created
Updated
Size611 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
https://www.swyx.io/css-100-bytes plus my choice of background color
Source code
/* ==UserStyle==
@name ? - Feb 2024
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("example.com") {
html {
max-width: 70ch;
padding: 3em 1em;
margin: auto;
line-height: 1.75;
font-size: 1.25em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 3em 0 1em;
}
p,
ul,
ol {
margin-bottom: 2em;
color: #1d1d1d;
font-family: sans-serif;
}
body {
background-color: #F8F5EC;
}
}