` or a bit of your own CSS for a page to look right,
616 | or offer optional classes to style your content—possibly both.
617 |
618 |
619 | ### Barrel.css
620 |
621 | - [Repository](https://github.com/EternityForest/barrel.css)
622 | 
623 | 
624 | 
625 | 
626 | 
627 | - [Demo](https://eternityforest.github.io/barrel.css/)
628 |
629 | [](screenshot/barrel.css-0-barrel.png)
630 | [](screenshot/barrel.css-1-fugit.png)
631 | [](screenshot/barrel.css-2-banderole.png)
632 | [](screenshot/barrel.css-3-scrapbook-green.png)
633 | [](screenshot/barrel.css-4-nord.png)
634 | [](screenshot/barrel.css-5-blast.png)
635 | [](screenshot/barrel.css-6-lair.png)
636 | [](screenshot/barrel.css-7-steam.png)
637 |
638 |
639 | ### Chota
640 |
641 | - [Repository](https://github.com/jenil/chota)
642 | 
643 | 
644 | 
645 | 
646 | 
647 | - [Demo](https://jenil.github.io/chota/)
648 |
649 | [](screenshot/chota.png)
650 |
651 |
652 | ### Fylgja
653 |
654 | [Classless setup guide](https://fylgja.dev/guides/classless-setup/).
655 |
656 | - [Website](https://fylgja.dev/features/native-styles/)
657 | - [Repository](https://github.com/fylgja/fylgja)
658 | 
659 | 
660 | 
661 | 
662 | 
663 | - [Demo](https://codepen.io/Fylgja/pen/ExGOZaE)
664 |
665 | [](screenshot/fylgja.png)
666 |
667 |
668 | ### matcha.css
669 |
670 | - [Repository](https://github.com/lowlighter/matcha)
671 | 
672 | 
673 | 
674 | 
675 | 
676 | - [Demo](https://matcha.mizu.sh/)
677 |
678 | [](screenshot/matcha.css.png)
679 |
680 |
681 | ### Milligram
682 |
683 | - [Repository](https://github.com/milligram/milligram)
684 | 
685 | 
686 | 
687 | 
688 | 
689 | - [Demo](https://milligram.io/)
690 |
691 | [](screenshot/milligram.png)
692 |
693 |
694 | ### mini.css
695 |
696 | - [Repository](https://github.com/Chalarangelo/mini.css)
697 | 
698 | 
699 | 
700 | 
701 | 
702 | - [Demo](https://minicss.org/docs)
703 |
704 | [](screenshot/minicss.png)
705 |
706 |
707 | ### mono
708 |
709 | - [Repository](https://github.com/artalar/mono)
710 | 
711 | 
712 | 
713 | 
714 | 
715 | - [Demo](https://monocss.vercel.app/)
716 |
717 | [](screenshot/mono.png)
718 |
719 |
720 | ### Picnic CSS
721 |
722 | Caution: Picnic CSS requires specific HTML structure to display certain elements. For example, it hides vanilla checkboxes and radio buttons. The structure serves as the effective class of the element. This means an existing project will have to modify its HTML markup for, e.g., every checkbox and radio button to start using Picnic.
723 |
724 | - [Repository](https://github.com/franciscop/picnic)
725 | 
726 | 
727 | 
728 | 
729 | 
730 | - [Demo](http://picnicss.com/)
731 |
732 | [](screenshot/picnic.png)
733 |
734 |
735 | ### SASS-ZERO (Breadboard)
736 |
737 | A class-light variant of a CSS framework with classes. Made for Ruby on Rails.
738 |
739 | - [Repository](https://github.com/lazaronixon/sass-zero)
740 | 
741 | 
742 | 
743 | 
744 | 
745 |
746 | [](screenshot/sass-zero.png)
747 |
748 |
749 | ### Wing
750 |
751 | - [Repository](https://github.com/kbrsh/wing)
752 | 
753 | 
754 | 
755 | 
756 | 
757 | - [Demo](https://kbrsh.github.io/wing/)
758 |
759 | [](screenshot/wing.png)
760 |
761 |
762 | ## See also
763 |
764 | - [Drop-in switcher for previewing minimal CSS frameworks](https://github.com/dohliam/dropin-minimal-css)
765 |
766 |
767 | ## License
768 |
769 | [](https://creativecommons.org/publicdomain/zero/1.0/)
770 |
771 | To the extent possible under law, D. Bohdan has waived all copyright and related or neighboring rights to this work. By contributing, you agree to release your contribution under the same terms.
772 |
--------------------------------------------------------------------------------
/README.md.njk:
--------------------------------------------------------------------------------
1 | # Classless CSS
2 |
3 | This is a list of classless CSS themes and frameworks.
4 | "Classless" means a style sheet does not define special classes you must add to your HTML elements to style these elements.
5 | As a result, you can style any plain-HTML page just by linking to the style sheet.
6 | This is useful, for example, in prototyping.
7 |
8 |
9 | ## Contents
10 |
11 | {{ toc }}
12 |
13 | {% macro item(proj) %}
14 | ### {{ proj.name }}
15 |
16 | {% if proj.note %}
17 | {{ proj.note }}
18 |
19 | {% endif %}
20 | {% if proj.website %}
21 | - [Website]({{ proj.website }})
22 | {% endif %}
23 | {% if proj.github %}
24 | - [Repository](https://github.com/{{ proj.github }})
25 | 
26 | 
27 | 
28 | 
29 | 
30 | {% endif %}
31 | {% if proj.demo %}
32 | - [Demo]({{ proj.demo }})
33 | {% endif %}
34 |
35 | {% for filename in proj.screenshots %}
36 | [](screenshot/{{ filename }})
37 | {% endfor %}
38 | {% endmacro %}
39 |
40 | ## Classless
41 |
42 | {% for proj in projects %}
43 | {% if proj.tags.indexOf("classless") > -1 %}
44 | {{ item(proj) }}
45 |
46 | {% endif %}
47 | {% endfor %}
48 | ## Class-light
49 |
50 | These are frameworks that do not force you to apply their classes to many elements.
51 | However,
52 | they either require something like `
` or a bit of your own CSS for a page to look right,
53 | or offer optional classes to style your content—possibly both.
54 |
55 | {% for proj in projects %}
56 | {% if proj.tags.indexOf("class-light") > -1 %}
57 |
58 | {{ item(proj) }}
59 | {% endif %}
60 | {% endfor %}
61 |
62 | ## See also
63 |
64 | - [Drop-in switcher for previewing minimal CSS frameworks](https://github.com/dohliam/dropin-minimal-css)
65 |
66 |
67 | ## License
68 |
69 | [](https://creativecommons.org/publicdomain/zero/1.0/)
70 |
71 | To the extent possible under law, D. Bohdan has waived all copyright and related or neighboring rights to this work. By contributing, you agree to release your contribution under the same terms.
72 |
--------------------------------------------------------------------------------
/data/projects.toml:
--------------------------------------------------------------------------------
1 | ### Classless
2 |
3 | ["Almond.CSS"]
4 | demo = "https://alvaromontoro.github.io/almond.css/demo/"
5 | github = "alvaromontoro/almond.css"
6 | note = ""
7 | website = ""
8 | screenshots = ["almond-css.png"]
9 | tags = ["classless"]
10 |
11 | [attriCSS]
12 | demo = "https://raj457036.github.io/attriCSS/"
13 | github = "raj457036/attriCSS"
14 | note = ""
15 | website = ""
16 | screenshots = [
17 | "attricss-0-brightlight-green.png",
18 | "attricss-1-midnight-green.png",
19 | "attricss-2-darkforest-green.png",
20 | "attricss-3-darkfairy-pink.png",
21 | "attricss-4-lightfairy-pink.png",
22 | ]
23 | tags = ["classless"]
24 |
25 | ["awsm.css"]
26 | demo = "https://igoradamenko.com/awsm.css/v2/elements.html"
27 | github = ""
28 | note = ""
29 | website = "https://igoradamenko.com/awsm.css/v2/"
30 | screenshots = [
31 | "awsm.css-0.png",
32 | "awsm.css-1-gondola.png",
33 | "awsm.css-2-mischka.png",
34 | "awsm.css-3-big-stone.png",
35 | "awsm.css-4-black.png",
36 | "awsm.css-5-tasman.png",
37 | "awsm.css-6-pastel-pink.png",
38 | "awsm.css-7-pearl-lusta.png",
39 | ]
40 | tags = ["classless"]
41 |
42 | [axist]
43 | demo = "https://ruanmartinelli.github.io/axist/"
44 | github = "ruanmartinelli/axist"
45 | note = ""
46 | website = ""
47 | screenshots = ["axist.png"]
48 | tags = ["classless"]
49 |
50 | [Bahunya]
51 | demo = "https://kimeiga.github.io/bahunya/"
52 | github = "Kimeiga/bahunya"
53 | note = ""
54 | website = ""
55 | screenshots = ["bahunya.png"]
56 | tags = ["classless"]
57 |
58 | ["Bamboo CSS"]
59 | demo = "https://rilwis.github.io/bamboo/demo/"
60 | github = "rilwis/bamboo"
61 | note = ""
62 | website = ""
63 | screenshots = ["bamboo-css.png"]
64 | tags = ["classless"]
65 |
66 | [BareCSS]
67 | demo = "https://web.archive.org/web/20191010034508/http://barecss.com/"
68 | github = "longsien/BareCSS"
69 | note = ""
70 | website = ""
71 | screenshots = ["barecss.png"]
72 | tags = ["classless"]
73 |
74 | ["Basic.css"]
75 | demo = "https://vladocar.github.io/Basic.css/"
76 | github = "vladocar/Basic.css"
77 | note = ""
78 | website = ""
79 | screenshots = ["basic.css.png"]
80 | tags = ["classless"]
81 |
82 | ["Bolt.css"]
83 | demo = "https://boltcss.com/"
84 | github = "tbolt/boltcss"
85 | note = ""
86 | website = ""
87 | screenshots = ["bolt.css.png"]
88 | tags = ["classless"]
89 |
90 | [ChimeraCSS]
91 | demo = "https://chimera-demo.vercel.app/"
92 | github = "ChimeraCSS/ChimeraCSS"
93 | note = ""
94 | website = ""
95 | screenshots = [
96 | "chimeracss-0.png",
97 | "chimeracss-1-dark.png",
98 | "chimeracss-2-autumn.png",
99 | "chimeracss-3-blues.png",
100 | "chimeracss-4-golden.png",
101 | "chimeracss-5-nightsky.png",
102 | "chimeracss-6-plain.png",
103 | ]
104 | tags = ["classless"]
105 |
106 | ["Classless.css"]
107 | demo = "http://classless.de/"
108 | github = "emareg/classlesscss"
109 | note = ""
110 | website = ""
111 | screenshots = ["classless.css.png"]
112 | tags = ["classless"]
113 |
114 | ["concrete.css"]
115 | demo = "https://concrete.style/"
116 | github = "louismerlin/concrete.css"
117 | note = ""
118 | website = ""
119 | screenshots = ["concrete.css.png"]
120 | tags = ["classless"]
121 |
122 | [Downstyler]
123 | demo = "https://waldyrious.github.io/downstyler"
124 | github = "waldyrious/downstyler"
125 | note = ""
126 | website = ""
127 | screenshots = ["downstyler.png"]
128 | tags = ["classless"]
129 |
130 | ["holiday.css"]
131 | demo = "https://holidaycss.js.org/"
132 | github = "EvgenyOrekhov/holiday.css"
133 | note = ""
134 | website = ""
135 | screenshots = ["holiday.css.png"]
136 | tags = ["classless"]
137 |
138 | [LatexCSS]
139 | demo = "https://davidrzs.github.io/latexcss/"
140 | github = "davidrzs/latexcss"
141 | note = ""
142 | website = ""
143 | screenshots = ["latex.png"]
144 | tags = ["classless"]
145 |
146 | ["magick.css"]
147 | demo = "https://css.winterveil.net/"
148 | github = "wintermute-cell/magick.css"
149 | note = ""
150 | website = ""
151 | screenshots = ["magick.css.png"]
152 | tags = ["classless"]
153 |
154 | ["Markdown CSS — Air"]
155 | demo = "https://markdowncss.github.io/air/"
156 | github = "markdowncss/air"
157 | note = ""
158 | website = ""
159 | screenshots = ["markdowncss-air.png"]
160 | tags = ["classless"]
161 |
162 | ["Markdown CSS — Modest"]
163 | demo = "https://markdowncss.github.io/modest/"
164 | github = "markdowncss/modest"
165 | note = ""
166 | website = ""
167 | screenshots = ["markdowncss-modest.png"]
168 | tags = ["classless"]
169 |
170 | ["Markdown CSS — Retro"]
171 | demo = "https://markdowncss.github.io/retro/"
172 | github = "markdowncss/retro"
173 | note = ""
174 | website = ""
175 | screenshots = ["markdowncss-retro.png"]
176 | tags = ["classless"]
177 |
178 | ["Markdown CSS — Splendor"]
179 | demo = "https://markdowncss.github.io/splendor/"
180 | github = "markdowncss/splendor"
181 | note = ""
182 | website = ""
183 | screenshots = ["markdowncss-splendor.png"]
184 | tags = ["classless"]
185 |
186 | [Marx]
187 | demo = "https://codepen.io/mblode/details/JdYbJj"
188 | github = "mblode/marx"
189 | note = ""
190 | website = ""
191 | screenshots = ["marx.png"]
192 | tags = ["classless"]
193 |
194 | [MercuryCSS]
195 | demo = "https://wmeredith.github.io/MercuryCSS/"
196 | github = "wmeredith/MercuryCSS"
197 | note = ""
198 | website = ""
199 | screenshots = ["mercurycss.png"]
200 | tags = ["classless"]
201 |
202 | ["MVP.css"]
203 | demo = "https://andybrewer.github.io/mvp/"
204 | github = "andybrewer/mvp"
205 | note = ""
206 | website = ""
207 | screenshots = ["mvp.css.png"]
208 | tags = ["classless"]
209 |
210 | ["new.css"]
211 | demo = "https://newcss.net/demo/"
212 | github = "xz/new.css"
213 | note = ""
214 | website = ""
215 | screenshots = ["new.css.png"]
216 | tags = ["classless"]
217 |
218 | ["no-class.css"]
219 | demo = "https://davidpaulsson.github.io/no-class/"
220 | github = "davidpaulsson/no-class"
221 | note = ""
222 | website = ""
223 | screenshots = ["no-class.css.png"]
224 | tags = ["classless"]
225 |
226 | ["Pico.css"]
227 | demo = "https://picocss.com/examples/preview/"
228 | github = "picocss/pico"
229 | note = ""
230 | website = ""
231 | screenshots = ["pico-css.png"]
232 | tags = ["classless"]
233 |
234 | ["ridge.css"]
235 | demo = "https://ridgecss.com/"
236 | github = "swlkr/ridgecss"
237 | note = ""
238 | website = ""
239 | screenshots = ["ridge.css-light.png", "ridge.css-dark.png"]
240 | tags = ["classless"]
241 |
242 | [sakura]
243 | demo = "https://oxal.org/projects/sakura/demo/"
244 | github = "oxalorg/sakura"
245 | note = ""
246 | website = ""
247 | screenshots = [
248 | "sakura-normalize-0.png",
249 | "sakura-normalize-1-earthly.png",
250 | "sakura-normalize-2-vader.png",
251 | "sakura-normalize-3-dark.png",
252 | "sakura-normalize-4-dark-solarized.png",
253 | ]
254 | tags = ["classless"]
255 |
256 | ["Simple.css"]
257 | demo = "https://simplecss.org/demo"
258 | github = "kevquirk/simple.css"
259 | note = ""
260 | website = ""
261 | screenshots = ["simple-css.png"]
262 | tags = ["classless"]
263 |
264 | [SPCSS]
265 | demo = "https://susam.github.io/spcss/"
266 | github = "susam/spcss"
267 | note = ""
268 | website = ""
269 | screenshots = ["spcss.png"]
270 | tags = ["classless"]
271 |
272 | ["style.css"]
273 | demo = "https://css-pkg.github.io/style.css/"
274 | github = "css-pkg/style.css"
275 | note = ""
276 | website = ""
277 | screenshots = ["style.css.png"]
278 | tags = ["classless"]
279 |
280 | ["Stylize.css"]
281 | demo = "https://vasanthv.github.io/stylize.css/demo.html"
282 | github = "vasanthv/stylize.css"
283 | note = ""
284 | website = ""
285 | screenshots = ["stylize.css.png"]
286 | tags = ["classless"]
287 |
288 | [tacit]
289 | demo = "https://yegor256.github.io/tacit/"
290 | github = "yegor256/tacit"
291 | note = ""
292 | website = ""
293 | screenshots = ["tacit.png"]
294 | tags = ["classless"]
295 |
296 | ["Tiny.css"]
297 | demo = "https://ihsan6133.github.io/tinycss"
298 | github = "ihsan6133/tiny.css"
299 | note = ""
300 | website = ""
301 | screenshots = ["tiny.css-0-light.png", "tiny.css-1-dark.png"]
302 | tags = ["classless"]
303 |
304 | ["tty.css"]
305 | demo = "https://piranna.github.io/tty.css/"
306 | github = "piranna/tty.css"
307 | note = ""
308 | website = ""
309 | screenshots = ["tty.css.png"]
310 | tags = ["classless"]
311 |
312 | ["Tufte CSS"]
313 | demo = "https://edwardtufte.github.io/tufte-css/"
314 | github = "edwardtufte/tufte-css"
315 | note = ""
316 | website = ""
317 | screenshots = ["tufte-css.png"]
318 | tags = ["classless"]
319 |
320 | ["W3C Core Styles"]
321 | demo = "https://www.w3.org/StyleSheets/Core/preview"
322 | github = ""
323 | note = ""
324 | website = "https://www.w3.org/StyleSheets/Core/Overview"
325 | screenshots = [
326 | "w3c-core-styles-0-oldstyle.png",
327 | "w3c-core-styles-1-modernist.png",
328 | "w3c-core-styles-2-midnight.png",
329 | "w3c-core-styles-3-ultramarine.png",
330 | "w3c-core-styles-4-swiss.png",
331 | "w3c-core-styles-5-chocolate.png",
332 | "w3c-core-styles-6-traditional.png",
333 | "w3c-core-styles-7-steely.png",
334 | ]
335 | tags = ["classless"]
336 |
337 | ["water.css"]
338 | demo = "https://kognise.github.io/water.css/"
339 | github = "kognise/water.css"
340 | note = ""
341 | website = ""
342 | screenshots = ["water.css-0-dark.png", "water.css-1-light.png"]
343 | tags = ["classless"]
344 |
345 | [Writ]
346 | demo = "https://writ.cmcenroe.me/"
347 | github = "programble/writ"
348 | note = ""
349 | website = ""
350 | screenshots = ["writ.png"]
351 | tags = ["classless"]
352 |
353 | [YoRHa]
354 | demo = "https://metakirby5.github.io/yorha/"
355 | github = "metakirby5/yorha"
356 | note = ""
357 | website = ""
358 | screenshots = ["yorha.png"]
359 | tags = ["classless"]
360 |
361 | ### Class-light
362 |
363 | ["Barrel.css"]
364 | demo = "https://eternityforest.github.io/barrel.css/"
365 | github = "EternityForest/barrel.css"
366 | note = ""
367 | website = ""
368 | screenshots = [
369 | "barrel.css-0-barrel.png",
370 | "barrel.css-1-fugit.png",
371 | "barrel.css-2-banderole.png",
372 | "barrel.css-3-scrapbook-green.png",
373 | "barrel.css-4-nord.png",
374 | "barrel.css-5-blast.png",
375 | "barrel.css-6-lair.png",
376 | "barrel.css-7-steam.png",
377 | ]
378 | tags = ["class-light"]
379 |
380 | [Chota]
381 | demo = "https://jenil.github.io/chota/"
382 | github = "jenil/chota"
383 | note = ""
384 | website = ""
385 | screenshots = ["chota.png"]
386 | tags = ["class-light"]
387 |
388 | [Fylgja]
389 | demo = "https://codepen.io/Fylgja/pen/ExGOZaE"
390 | github = "fylgja/fylgja"
391 | note = "[Classless setup guide](https://fylgja.dev/guides/classless-setup/)."
392 | website = "https://fylgja.dev/features/native-styles/"
393 | screenshots = ["fylgja.png"]
394 | tags = ["class-light"]
395 |
396 | ["matcha.css"]
397 | demo = "https://matcha.mizu.sh/"
398 | github = "lowlighter/matcha"
399 | note = ""
400 | website = ""
401 | screenshots = ["matcha.css.png"]
402 | tags = ["class-light"]
403 |
404 | [Milligram]
405 | demo = "https://milligram.io/"
406 | github = "milligram/milligram"
407 | note = ""
408 | website = ""
409 | screenshots = ["milligram.png"]
410 | tags = ["class-light"]
411 |
412 | ["mini.css"]
413 | demo = "https://minicss.org/docs"
414 | github = "Chalarangelo/mini.css"
415 | note = ""
416 | website = ""
417 | screenshots = ["minicss.png"]
418 | tags = ["class-light"]
419 |
420 | [mono]
421 | demo = "https://monocss.vercel.app/"
422 | github = "artalar/mono"
423 | note = ""
424 | website = ""
425 | screenshots = ["mono.png"]
426 | tags = ["class-light"]
427 |
428 |
429 | ["Picnic CSS"]
430 | demo = "http://picnicss.com/"
431 | github = "franciscop/picnic"
432 | note = "Caution: Picnic CSS requires specific HTML structure to display certain elements. For example, it hides vanilla checkboxes and radio buttons. The structure serves as the effective class of the element. This means an existing project will have to modify its HTML markup for, e.g., every checkbox and radio button to start using Picnic."
433 | website = ""
434 | screenshots = ["picnic.png"]
435 | tags = ["class-light"]
436 |
437 | ["SASS-ZERO (Breadboard)"]
438 | demo = ""
439 | github = "lazaronixon/sass-zero"
440 | note = "A class-light variant of a CSS framework with classes. Made for Ruby on Rails."
441 | website = ""
442 | screenshots = ["sass-zero.png"]
443 | tags = ["class-light"]
444 |
445 | [Wing]
446 | demo = "https://kbrsh.github.io/wing/"
447 | github = "kbrsh/wing"
448 | note = ""
449 | website = ""
450 | screenshots = ["wing.png"]
451 | tags = ["class-light"]
452 |
--------------------------------------------------------------------------------
/gen-screenshot.ts:
--------------------------------------------------------------------------------
1 | #! /usr/bin/env -S deno run --allow-env --allow-net --allow-read --allow-run --allow-write --check
2 | // Generate the screenshot and its thumbnail for a project.
3 | // To install the dependencies on Debian/Ubuntu:
4 | // $ sudo apt install imagemagick optipng
5 |
6 | import { launch } from "https://deno.land/x/astral@0.3.5/mod.ts";
7 |
8 | const templateFile = "screenshot-page.html";
9 | const temporaryFile = "temp.html";
10 |
11 | const slugify = (str: string) =>
12 | str
13 | .toLowerCase()
14 | .replace(/[^a-z0-9.]+/g, "-")
15 | .replace(/(^-|-$)/g, "");
16 |
17 | const saveScreenshot = async (src: string, dest: string) => {
18 | const browser = await launch();
19 |
20 | const page = await browser.newPage(src);
21 | await page.setViewportSize({ width: 1024, height: 1024 });
22 |
23 | const screenshot = await page.screenshot({ captureBeyondViewport: true });
24 | await Deno.writeFile(dest, screenshot);
25 |
26 | await browser.close();
27 | };
28 |
29 | if (Deno.args.length < 1 || Deno.args.length > 2) {
30 | console.error(
31 | "usage: gen-screenshot.ts project-name [css-file]\n\n" +
32 | "The image filename will be derived from the project name.",
33 | );
34 | Deno.exit(1);
35 | }
36 |
37 | const screenshotFile = `${slugify(Deno.args[0])}.png`;
38 | const cssFile = Deno.args[1] || "";
39 |
40 | try {
41 | const htmlTemplate = await Deno.readTextFile(templateFile);
42 | const css = cssFile === "" ? "" : await Deno.readTextFile(cssFile);
43 | const html = htmlTemplate.replace(/%CSS_HERE%/, css);
44 | await Deno.writeTextFile(temporaryFile, html);
45 |
46 | const tempFilePath = await Deno.realPath(temporaryFile);
47 | await saveScreenshot(
48 | `file://${tempFilePath}`,
49 | `screenshot/${screenshotFile}`,
50 | );
51 |
52 | await (new Deno.Command(
53 | "convert",
54 | {
55 | args: [
56 | "-resize",
57 | "25%",
58 | "-adaptive-sharpen",
59 | "10",
60 | `screenshot/${screenshotFile}`,
61 | `thumbnail/${screenshotFile}`,
62 | ],
63 | stderr: "inherit",
64 | stdout: "inherit",
65 | },
66 | )).output();
67 |
68 | await (new Deno.Command("optipng", {
69 | args: [
70 | "-o",
71 | "5",
72 | "-strip",
73 | "all",
74 | `screenshot/${screenshotFile}`,
75 | `thumbnail/${screenshotFile}`,
76 | ],
77 | stderr: "inherit",
78 | stdout: "inherit",
79 | })).output();
80 | } catch (err) {
81 | console.error(err);
82 | } finally {
83 | Deno.remove(temporaryFile);
84 | }
85 |
--------------------------------------------------------------------------------
/render-template.ts:
--------------------------------------------------------------------------------
1 | #! /usr/bin/env -S deno run --allow-read --allow-env --check
2 |
3 | import markdownTOC from "npm:markdown-toc@1";
4 | import nunjucks from "npm:nunjucks@3";
5 | import TOML from "npm:@iarna/toml@3";
6 |
7 | if (Deno.args.length !== 2) {
8 | console.error("usage: render-template.ts template.njk data.toml");
9 | Deno.exit(1);
10 | }
11 | const [templatePath, dataPath] = Deno.args;
12 |
13 | interface INamedProject {
14 | name: string;
15 | [key: string]: string;
16 | }
17 |
18 | interface IProjects {
19 | [key: string]: {
20 | [key: string]: string;
21 | };
22 | }
23 |
24 | const projList = (projects: IProjects): INamedProject[] =>
25 | Object.entries(projects)
26 | .map(([name, info]) =>
27 | Object.assign({
28 | name,
29 | }, info)
30 | );
31 |
32 | try {
33 | const template = (await Deno.readTextFile(templatePath)).trim();
34 | const data = TOML.parse(await Deno.readTextFile(dataPath));
35 |
36 | const tocToken = `%TOC-${Math.random()}%`;
37 | const env = new nunjucks.configure({
38 | lstripBlocks: true,
39 | trimBlocks: true,
40 | }).addGlobal("toc", tocToken);
41 | const doc = env.renderString(template, {
42 | projects: projList(
data),
43 | });
44 |
45 | const headingFilter = (str: string) => !str.match(/Contents/);
46 | const toc = markdownTOC(doc, {
47 | filter: headingFilter,
48 | }).content;
49 | const docWithTOC = doc.replace(tocToken, toc);
50 |
51 | console.log(docWithTOC);
52 | } catch (err) {
53 | console.error(err);
54 | }
55 |
--------------------------------------------------------------------------------
/screenshot-page.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Lorem ipsum dolor sit amet
6 |
7 |
8 |
11 |
12 |
13 |
14 |
19 |
20 |
21 |
22 |
23 | Lorem ipsum dolor sit amet
24 | Element demos
25 |
26 | This is supposed to be a demo page so we need more elements!
27 |
28 |
29 | Form elements
30 |
92 |
93 | Code
94 |
95 | Below is some code, you can copy it with Ctrl-C.
96 | Did you know, alert(1)
can show an alert in JavaScript!
97 |
98 | // This logs a message to the console
console.log('Hello, world!')
99 |
100 | Other
101 | Here's a horizontal rule and image because I don't know where else to put them.
102 |
103 |
104 |
105 | And here's a nicely marked up table!
106 |
107 |
108 |
109 | Name |
110 | Quantity |
111 | Price |
112 |
113 |
114 |
115 |
116 | Godzilla |
117 | 2 |
118 | $299.99 |
119 |
120 |
121 | Mozilla |
122 | 10 |
123 | $100,000.00 |
124 |
125 |
126 | Quesadilla |
127 | 1 |
128 | $2.22 |
129 |
130 |
131 |
132 |
133 | Typography
134 |
135 | This is a blockquote. Maecenas blandit, quam vel sodales facilisis, urna erat fringilla sem, sed egestas quam erat a ipsum. Morbi fermentum odio felis, ultricies faucibus purus mattis tristique.
136 |
137 |
138 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque dictum hendrerit velit, quis ullamcorper sem congue ac. Quisque id magna rhoncus, sodales massa vel, vestibulum elit. Duis ornare accumsan egestas. Proin maximus lacus interdum leo molestie convallis. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut iaculis risus eu felis feugiat, eu mollis neque elementum. Donec interdum, nisl id dignissim iaculis, felis dui aliquet dui, non fermentum velit lectus ac quam. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
139 | This is strong, this is normal, this is just bold, and this is emphasized! And heck, here's a link.
140 |
141 |
142 | - Unordered list item 1
143 | - Unordered list item 2
144 | - Unordered list item 3
145 |
146 |
147 | - Ordered list item 1
148 | - Ordered list item 2
149 | - Ordered list item 3
150 |
151 | Heading 1
152 | Heading 2
153 | Heading 3
154 | Heading 4
155 | Heading 5
156 | Heading 6
157 |
158 |
159 |
160 |
161 |
162 |
--------------------------------------------------------------------------------
/screenshot/almond-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/almond-css.png
--------------------------------------------------------------------------------
/screenshot/attricss-0-brightlight-green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/attricss-0-brightlight-green.png
--------------------------------------------------------------------------------
/screenshot/attricss-1-midnight-green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/attricss-1-midnight-green.png
--------------------------------------------------------------------------------
/screenshot/attricss-2-darkforest-green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/attricss-2-darkforest-green.png
--------------------------------------------------------------------------------
/screenshot/attricss-3-darkfairy-pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/attricss-3-darkfairy-pink.png
--------------------------------------------------------------------------------
/screenshot/attricss-4-lightfairy-pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/attricss-4-lightfairy-pink.png
--------------------------------------------------------------------------------
/screenshot/awsm.css-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/awsm.css-0.png
--------------------------------------------------------------------------------
/screenshot/awsm.css-1-gondola.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/awsm.css-1-gondola.png
--------------------------------------------------------------------------------
/screenshot/awsm.css-2-mischka.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/awsm.css-2-mischka.png
--------------------------------------------------------------------------------
/screenshot/awsm.css-3-big-stone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/awsm.css-3-big-stone.png
--------------------------------------------------------------------------------
/screenshot/awsm.css-4-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/awsm.css-4-black.png
--------------------------------------------------------------------------------
/screenshot/awsm.css-5-tasman.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/awsm.css-5-tasman.png
--------------------------------------------------------------------------------
/screenshot/awsm.css-6-pastel-pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/awsm.css-6-pastel-pink.png
--------------------------------------------------------------------------------
/screenshot/awsm.css-7-pearl-lusta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/awsm.css-7-pearl-lusta.png
--------------------------------------------------------------------------------
/screenshot/axist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/axist.png
--------------------------------------------------------------------------------
/screenshot/bahunya.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/bahunya.png
--------------------------------------------------------------------------------
/screenshot/bamboo-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/bamboo-css.png
--------------------------------------------------------------------------------
/screenshot/barecss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/barecss.png
--------------------------------------------------------------------------------
/screenshot/barrel.css-0-barrel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/barrel.css-0-barrel.png
--------------------------------------------------------------------------------
/screenshot/barrel.css-1-fugit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/barrel.css-1-fugit.png
--------------------------------------------------------------------------------
/screenshot/barrel.css-2-banderole.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/barrel.css-2-banderole.png
--------------------------------------------------------------------------------
/screenshot/barrel.css-3-scrapbook-green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/barrel.css-3-scrapbook-green.png
--------------------------------------------------------------------------------
/screenshot/barrel.css-4-nord.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/barrel.css-4-nord.png
--------------------------------------------------------------------------------
/screenshot/barrel.css-5-blast.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/barrel.css-5-blast.png
--------------------------------------------------------------------------------
/screenshot/barrel.css-6-lair.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/barrel.css-6-lair.png
--------------------------------------------------------------------------------
/screenshot/barrel.css-7-steam.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/barrel.css-7-steam.png
--------------------------------------------------------------------------------
/screenshot/basic.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/basic.css.png
--------------------------------------------------------------------------------
/screenshot/bolt.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/bolt.css.png
--------------------------------------------------------------------------------
/screenshot/chimeracss-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/chimeracss-0.png
--------------------------------------------------------------------------------
/screenshot/chimeracss-1-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/chimeracss-1-dark.png
--------------------------------------------------------------------------------
/screenshot/chimeracss-2-autumn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/chimeracss-2-autumn.png
--------------------------------------------------------------------------------
/screenshot/chimeracss-3-blues.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/chimeracss-3-blues.png
--------------------------------------------------------------------------------
/screenshot/chimeracss-4-golden.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/chimeracss-4-golden.png
--------------------------------------------------------------------------------
/screenshot/chimeracss-5-nightsky.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/chimeracss-5-nightsky.png
--------------------------------------------------------------------------------
/screenshot/chimeracss-6-plain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/chimeracss-6-plain.png
--------------------------------------------------------------------------------
/screenshot/chota.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/chota.png
--------------------------------------------------------------------------------
/screenshot/classless.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/classless.css.png
--------------------------------------------------------------------------------
/screenshot/concrete.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/concrete.css.png
--------------------------------------------------------------------------------
/screenshot/downstyler.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/downstyler.png
--------------------------------------------------------------------------------
/screenshot/fylgja.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/fylgja.png
--------------------------------------------------------------------------------
/screenshot/holiday.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/holiday.css.png
--------------------------------------------------------------------------------
/screenshot/latex.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/latex.png
--------------------------------------------------------------------------------
/screenshot/magick.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/magick.css.png
--------------------------------------------------------------------------------
/screenshot/markdowncss-air.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/markdowncss-air.png
--------------------------------------------------------------------------------
/screenshot/markdowncss-modest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/markdowncss-modest.png
--------------------------------------------------------------------------------
/screenshot/markdowncss-retro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/markdowncss-retro.png
--------------------------------------------------------------------------------
/screenshot/markdowncss-splendor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/markdowncss-splendor.png
--------------------------------------------------------------------------------
/screenshot/marx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/marx.png
--------------------------------------------------------------------------------
/screenshot/matcha.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/matcha.css.png
--------------------------------------------------------------------------------
/screenshot/mercurycss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/mercurycss.png
--------------------------------------------------------------------------------
/screenshot/milligram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/milligram.png
--------------------------------------------------------------------------------
/screenshot/minicss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/minicss.png
--------------------------------------------------------------------------------
/screenshot/mono.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/mono.png
--------------------------------------------------------------------------------
/screenshot/mvp.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/mvp.css.png
--------------------------------------------------------------------------------
/screenshot/new.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/new.css.png
--------------------------------------------------------------------------------
/screenshot/no-class.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/no-class.css.png
--------------------------------------------------------------------------------
/screenshot/picnic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/picnic.png
--------------------------------------------------------------------------------
/screenshot/pico-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/pico-css.png
--------------------------------------------------------------------------------
/screenshot/ridge.css-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/ridge.css-dark.png
--------------------------------------------------------------------------------
/screenshot/ridge.css-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/ridge.css-light.png
--------------------------------------------------------------------------------
/screenshot/sakura-normalize-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/sakura-normalize-0.png
--------------------------------------------------------------------------------
/screenshot/sakura-normalize-1-earthly.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/sakura-normalize-1-earthly.png
--------------------------------------------------------------------------------
/screenshot/sakura-normalize-2-vader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/sakura-normalize-2-vader.png
--------------------------------------------------------------------------------
/screenshot/sakura-normalize-3-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/sakura-normalize-3-dark.png
--------------------------------------------------------------------------------
/screenshot/sakura-normalize-4-dark-solarized.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/sakura-normalize-4-dark-solarized.png
--------------------------------------------------------------------------------
/screenshot/sass-zero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/sass-zero.png
--------------------------------------------------------------------------------
/screenshot/simple-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/simple-css.png
--------------------------------------------------------------------------------
/screenshot/spcss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/spcss.png
--------------------------------------------------------------------------------
/screenshot/style.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/style.css.png
--------------------------------------------------------------------------------
/screenshot/stylize.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/stylize.css.png
--------------------------------------------------------------------------------
/screenshot/tacit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/tacit.png
--------------------------------------------------------------------------------
/screenshot/tiny.css-0-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/tiny.css-0-light.png
--------------------------------------------------------------------------------
/screenshot/tiny.css-1-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/tiny.css-1-dark.png
--------------------------------------------------------------------------------
/screenshot/tty.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/tty.css.png
--------------------------------------------------------------------------------
/screenshot/tufte-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/tufte-css.png
--------------------------------------------------------------------------------
/screenshot/w3c-core-styles-0-oldstyle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/w3c-core-styles-0-oldstyle.png
--------------------------------------------------------------------------------
/screenshot/w3c-core-styles-1-modernist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/w3c-core-styles-1-modernist.png
--------------------------------------------------------------------------------
/screenshot/w3c-core-styles-2-midnight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/w3c-core-styles-2-midnight.png
--------------------------------------------------------------------------------
/screenshot/w3c-core-styles-3-ultramarine.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/w3c-core-styles-3-ultramarine.png
--------------------------------------------------------------------------------
/screenshot/w3c-core-styles-4-swiss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/w3c-core-styles-4-swiss.png
--------------------------------------------------------------------------------
/screenshot/w3c-core-styles-5-chocolate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/w3c-core-styles-5-chocolate.png
--------------------------------------------------------------------------------
/screenshot/w3c-core-styles-6-traditional.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/w3c-core-styles-6-traditional.png
--------------------------------------------------------------------------------
/screenshot/w3c-core-styles-7-steely.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/w3c-core-styles-7-steely.png
--------------------------------------------------------------------------------
/screenshot/water.css-0-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/water.css-0-dark.png
--------------------------------------------------------------------------------
/screenshot/water.css-1-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/water.css-1-light.png
--------------------------------------------------------------------------------
/screenshot/wing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/wing.png
--------------------------------------------------------------------------------
/screenshot/writ.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/writ.png
--------------------------------------------------------------------------------
/screenshot/yorha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/screenshot/yorha.png
--------------------------------------------------------------------------------
/thumbnail/almond-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/almond-css.png
--------------------------------------------------------------------------------
/thumbnail/attricss-0-brightlight-green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/attricss-0-brightlight-green.png
--------------------------------------------------------------------------------
/thumbnail/attricss-1-midnight-green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/attricss-1-midnight-green.png
--------------------------------------------------------------------------------
/thumbnail/attricss-2-darkforest-green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/attricss-2-darkforest-green.png
--------------------------------------------------------------------------------
/thumbnail/attricss-3-darkfairy-pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/attricss-3-darkfairy-pink.png
--------------------------------------------------------------------------------
/thumbnail/attricss-4-lightfairy-pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/attricss-4-lightfairy-pink.png
--------------------------------------------------------------------------------
/thumbnail/awsm.css-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/awsm.css-0.png
--------------------------------------------------------------------------------
/thumbnail/awsm.css-1-gondola.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/awsm.css-1-gondola.png
--------------------------------------------------------------------------------
/thumbnail/awsm.css-2-mischka.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/awsm.css-2-mischka.png
--------------------------------------------------------------------------------
/thumbnail/awsm.css-3-big-stone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/awsm.css-3-big-stone.png
--------------------------------------------------------------------------------
/thumbnail/awsm.css-4-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/awsm.css-4-black.png
--------------------------------------------------------------------------------
/thumbnail/awsm.css-5-tasman.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/awsm.css-5-tasman.png
--------------------------------------------------------------------------------
/thumbnail/awsm.css-6-pastel-pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/awsm.css-6-pastel-pink.png
--------------------------------------------------------------------------------
/thumbnail/awsm.css-7-pearl-lusta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/awsm.css-7-pearl-lusta.png
--------------------------------------------------------------------------------
/thumbnail/axist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/axist.png
--------------------------------------------------------------------------------
/thumbnail/bahunya.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/bahunya.png
--------------------------------------------------------------------------------
/thumbnail/bamboo-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/bamboo-css.png
--------------------------------------------------------------------------------
/thumbnail/barecss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/barecss.png
--------------------------------------------------------------------------------
/thumbnail/barrel.css-0-barrel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/barrel.css-0-barrel.png
--------------------------------------------------------------------------------
/thumbnail/barrel.css-1-fugit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/barrel.css-1-fugit.png
--------------------------------------------------------------------------------
/thumbnail/barrel.css-2-banderole.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/barrel.css-2-banderole.png
--------------------------------------------------------------------------------
/thumbnail/barrel.css-3-scrapbook-green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/barrel.css-3-scrapbook-green.png
--------------------------------------------------------------------------------
/thumbnail/barrel.css-4-nord.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/barrel.css-4-nord.png
--------------------------------------------------------------------------------
/thumbnail/barrel.css-5-blast.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/barrel.css-5-blast.png
--------------------------------------------------------------------------------
/thumbnail/barrel.css-6-lair.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/barrel.css-6-lair.png
--------------------------------------------------------------------------------
/thumbnail/barrel.css-7-steam.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/barrel.css-7-steam.png
--------------------------------------------------------------------------------
/thumbnail/basic.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/basic.css.png
--------------------------------------------------------------------------------
/thumbnail/bolt.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/bolt.css.png
--------------------------------------------------------------------------------
/thumbnail/chimeracss-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/chimeracss-0.png
--------------------------------------------------------------------------------
/thumbnail/chimeracss-1-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/chimeracss-1-dark.png
--------------------------------------------------------------------------------
/thumbnail/chimeracss-2-autumn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/chimeracss-2-autumn.png
--------------------------------------------------------------------------------
/thumbnail/chimeracss-3-blues.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/chimeracss-3-blues.png
--------------------------------------------------------------------------------
/thumbnail/chimeracss-4-golden.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/chimeracss-4-golden.png
--------------------------------------------------------------------------------
/thumbnail/chimeracss-5-nightsky.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/chimeracss-5-nightsky.png
--------------------------------------------------------------------------------
/thumbnail/chimeracss-6-plain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/chimeracss-6-plain.png
--------------------------------------------------------------------------------
/thumbnail/chota.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/chota.png
--------------------------------------------------------------------------------
/thumbnail/classless.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/classless.css.png
--------------------------------------------------------------------------------
/thumbnail/concrete.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/concrete.css.png
--------------------------------------------------------------------------------
/thumbnail/downstyler.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/downstyler.png
--------------------------------------------------------------------------------
/thumbnail/fylgja.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/fylgja.png
--------------------------------------------------------------------------------
/thumbnail/holiday.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/holiday.css.png
--------------------------------------------------------------------------------
/thumbnail/latex.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/latex.png
--------------------------------------------------------------------------------
/thumbnail/magick.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/magick.css.png
--------------------------------------------------------------------------------
/thumbnail/markdowncss-air.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/markdowncss-air.png
--------------------------------------------------------------------------------
/thumbnail/markdowncss-modest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/markdowncss-modest.png
--------------------------------------------------------------------------------
/thumbnail/markdowncss-retro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/markdowncss-retro.png
--------------------------------------------------------------------------------
/thumbnail/markdowncss-splendor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/markdowncss-splendor.png
--------------------------------------------------------------------------------
/thumbnail/marx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/marx.png
--------------------------------------------------------------------------------
/thumbnail/matcha.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/matcha.css.png
--------------------------------------------------------------------------------
/thumbnail/mercurycss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/mercurycss.png
--------------------------------------------------------------------------------
/thumbnail/milligram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/milligram.png
--------------------------------------------------------------------------------
/thumbnail/minicss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/minicss.png
--------------------------------------------------------------------------------
/thumbnail/mono.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/mono.png
--------------------------------------------------------------------------------
/thumbnail/mvp.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/mvp.css.png
--------------------------------------------------------------------------------
/thumbnail/new.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/new.css.png
--------------------------------------------------------------------------------
/thumbnail/no-class.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/no-class.css.png
--------------------------------------------------------------------------------
/thumbnail/picnic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/picnic.png
--------------------------------------------------------------------------------
/thumbnail/pico-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/pico-css.png
--------------------------------------------------------------------------------
/thumbnail/ridge.css-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/ridge.css-dark.png
--------------------------------------------------------------------------------
/thumbnail/ridge.css-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/ridge.css-light.png
--------------------------------------------------------------------------------
/thumbnail/sakura-normalize-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/sakura-normalize-0.png
--------------------------------------------------------------------------------
/thumbnail/sakura-normalize-1-earthly.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/sakura-normalize-1-earthly.png
--------------------------------------------------------------------------------
/thumbnail/sakura-normalize-2-vader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/sakura-normalize-2-vader.png
--------------------------------------------------------------------------------
/thumbnail/sakura-normalize-3-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/sakura-normalize-3-dark.png
--------------------------------------------------------------------------------
/thumbnail/sakura-normalize-4-dark-solarized.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/sakura-normalize-4-dark-solarized.png
--------------------------------------------------------------------------------
/thumbnail/sass-zero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/sass-zero.png
--------------------------------------------------------------------------------
/thumbnail/simple-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/simple-css.png
--------------------------------------------------------------------------------
/thumbnail/spcss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/spcss.png
--------------------------------------------------------------------------------
/thumbnail/style.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/style.css.png
--------------------------------------------------------------------------------
/thumbnail/stylize.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/stylize.css.png
--------------------------------------------------------------------------------
/thumbnail/tacit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/tacit.png
--------------------------------------------------------------------------------
/thumbnail/tiny.css-0-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/tiny.css-0-light.png
--------------------------------------------------------------------------------
/thumbnail/tiny.css-1-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/tiny.css-1-dark.png
--------------------------------------------------------------------------------
/thumbnail/tty.css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/tty.css.png
--------------------------------------------------------------------------------
/thumbnail/tufte-css.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/tufte-css.png
--------------------------------------------------------------------------------
/thumbnail/w3c-core-styles-0-oldstyle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/w3c-core-styles-0-oldstyle.png
--------------------------------------------------------------------------------
/thumbnail/w3c-core-styles-1-modernist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/w3c-core-styles-1-modernist.png
--------------------------------------------------------------------------------
/thumbnail/w3c-core-styles-2-midnight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/w3c-core-styles-2-midnight.png
--------------------------------------------------------------------------------
/thumbnail/w3c-core-styles-3-ultramarine.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/w3c-core-styles-3-ultramarine.png
--------------------------------------------------------------------------------
/thumbnail/w3c-core-styles-4-swiss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/w3c-core-styles-4-swiss.png
--------------------------------------------------------------------------------
/thumbnail/w3c-core-styles-5-chocolate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/w3c-core-styles-5-chocolate.png
--------------------------------------------------------------------------------
/thumbnail/w3c-core-styles-6-traditional.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/w3c-core-styles-6-traditional.png
--------------------------------------------------------------------------------
/thumbnail/w3c-core-styles-7-steely.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/w3c-core-styles-7-steely.png
--------------------------------------------------------------------------------
/thumbnail/water.css-0-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/water.css-0-dark.png
--------------------------------------------------------------------------------
/thumbnail/water.css-1-light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/water.css-1-light.png
--------------------------------------------------------------------------------
/thumbnail/wing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/wing.png
--------------------------------------------------------------------------------
/thumbnail/writ.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/writ.png
--------------------------------------------------------------------------------
/thumbnail/yorha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dbohdan/classless-css/414b049cd2c497eacfcca7ead8379e7dacc14f61/thumbnail/yorha.png
--------------------------------------------------------------------------------