tangled
alpha
login
or
join now
devins.page
/
dev.css
tiny, simple, classless CSS framework inspired by new.css
devcss.devins.page
framework
lightweight
css
classless
stylesheet
1
fork
atom
overview
issues
pulls
pipelines
feat: accent color for input and progress
devins.page
2 years ago
2e7e13f3
78a13139
+7
-2
1 changed file
expand all
collapse all
unified
split
dev.css
+7
-2
dev.css
···
2
/* about: tiny, simple, classless CSS framework in the style of Vercel's Geist design system */
3
4
/* table of contents
5
-
1. configuration
6
2. dark mode handling
7
3. root color scheme
8
4. css reset
···
23
19. lists
24
*/
25
26
-
/* 1. configuration */
27
:root {
28
/* font families */
29
--dc-font-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont,
···
376
377
textarea {
378
max-width: 100%;
0
0
0
0
0
379
}
380
381
/* 13. code and keyboards */
···
2
/* about: tiny, simple, classless CSS framework in the style of Vercel's Geist design system */
3
4
/* table of contents
5
+
1. default configuration
6
2. dark mode handling
7
3. root color scheme
8
4. css reset
···
23
19. lists
24
*/
25
26
+
/* 1. default configuration */
27
:root {
28
/* font families */
29
--dc-font-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont,
···
376
377
textarea {
378
max-width: 100%;
379
+
}
380
+
381
+
input,
382
+
progress {
383
+
accent-color: var(--dc-ac-1);
384
}
385
386
/* 13. code and keyboards */