-
Notifications
You must be signed in to change notification settings - Fork 53
/
README.md.njk
71 lines (51 loc) · 2.23 KB
/
README.md.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Classless CSS
This is a list of classless CSS themes and frameworks.
"Classless" means a style sheet does not define special classes you must add to your HTML elements to style these elements.
As a result, you can style any plain-HTML page just by linking to the style sheet.
This is useful, for example, in prototyping.
## Contents
{{ toc }}
{% macro item(proj) %}
### {{ proj.name }}
{% if proj.note %}
{{ proj.note }}
{% endif %}
{% if proj.website %}
- [Website]({{ proj.website }})
{% endif %}
{% if proj.github %}
- [Repository](https://github.com/{{ proj.github }})
![GitHub stars](https://img.shields.io/github/stars/{{ proj.github }}?style=flat-square)
![GitHub contributors](https://img.shields.io/github/contributors-anon/{{ proj.github }}?style=flat-square)
![Last commit](https://img.shields.io/github/last-commit/{{ proj.github }}?style=flat-square)
![GitHub open issues](https://img.shields.io/github/issues-raw/{{ proj.github }}?style=flat-square)
![GitHub closed issues](https://img.shields.io/github/issues-closed-raw/{{ proj.github }}?style=flat-square)
{% endif %}
{% if proj.demo %}
- [Demo]({{ proj.demo }})
{% endif %}
{% for filename in proj.screenshots %}
[![{{ filename }}](thumbnail/{{ filename }})](screenshot/{{ filename }})
{% endfor %}
{% endmacro %}
## Classless
{% for proj in projects %}
{% if proj.tags.indexOf("classless") > -1 %}
{{ item(proj) }}
{% endif %}
{% endfor %}
## Class-light
These are frameworks that do not force you to apply their classes to many elements.
However,
they either require something like `<div class="container">` or a bit of your own CSS for a page to look right,
or offer optional classes to style your content—possibly both.
{% for proj in projects %}
{% if proj.tags.indexOf("class-light") > -1 %}
{{ item(proj) }}
{% endif %}
{% endfor %}
## See also
- [Drop-in switcher for previewing minimal CSS frameworks](https://github.com/dohliam/dropin-minimal-css)
## License
[![CC0](https://i.creativecommons.org/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/)
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.