lightweight, simple, classless CSS framework inspired by new.css devcss.devins.page
framework lightweight css classless stylesheet
17
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 3886e43a0a1d8bb821c7f20dac9d0585ee5a0524 32 lines 1.2 kB view raw
1/* ==userstyle== 2@name boilerplate for dev.css 3@description a template that you can modify. copied from dev.css defaults. you can remove lines that you want to keep as the dev.css default, such as the font lines 4@namespace author 5@version 1.0.0 6@author author <author@example.com> (https://example.com) 7@homepageURL https://example.com 8@supportURL https://example.com/issues 9@license MIT 10==/userstyle== */ 11 12:root { 13 /* font families */ 14 --dc-font: "Geist", "Inter", system-ui, "Segoe UI", Roboto, Helvetica, Arial, 15 sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; 16 --dc-font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Consolas, 17 "Liberation Mono", Menlo, monospace; 18 19 /* colors */ 20 --dc-cs: light; /* light/dark scrollbars, inputs, etc */ 21 --dc-tx-1: #171717; /* primary text */ 22 --dc-tx-2: #666; /* secondary text */ 23 --dc-bg-1: #fff; /* primary background */ 24 --dc-bg-2: #fafafa; /* secondary background */ 25 --dc-bg-3: #ebebeb; /* border */ 26 --dc-lk-1: #005ff2; /* link text */ 27 --dc-lkb-1: #006bff; /* link button */ 28 --dc-lkb-2: #0059ec; /* link button hover */ 29 --dc-lkb-tx: #fff; /* text over link button */ 30 --dc-ac-1: #a000f8; /* accent color */ 31 --dc-ac-tx: #fff; /* text over accent color */ 32}