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 6bdee7c0f2b6404e41e397b8aded3f990a43b6d3 22 lines 861 B view raw
1/* theme for dev.css v3, a classless CSS framework - https://github.com/intergrav/dev.css */ 2/* about: a template that you can modify */ 3/* note: you can remove lines that you want to keep as the dev.css default, such as the font lines */ 4 5:root { 6 /* font families */ 7 --dc-font-sans: sans-serif; /* sans serif */ 8 --dc-font-mono: monospace; /* monospace */ 9 10 /* colors */ 11 --dc-tx-1: #000000; /* primary text */ 12 --dc-tx-2: #1a1a1a; /* secondary text */ 13 --dc-bg-1: #fafafa; /* main background */ 14 --dc-bg-2: #fff; /* secondary background */ 15 --dc-bg-3: #ebebeb; /* outlines */ 16 --dc-lk-1: #0068d6; /* link text */ 17 --dc-lkb-1: #0072f5; /* link button background */ 18 --dc-lkb-2: #0062d1; /* link button background (hover) */ 19 --dc-lkb-tx: #ededed; /* link button text */ 20 --dc-ac-1: #8e4ec6; /* accent color */ 21 --dc-ac-tx: #ededed; /* accent color text */ 22}