mirror of
https://github.com/jgthms/bulma
synced 2026-03-19 03:44:31 -07:00
Init v1
This commit is contained in:
34
docs/_includes/library/elements/buttons.html
Normal file
34
docs/_includes/library/elements/buttons.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<div class="buttons" style="margin-bottom: 1em">
|
||||
<button class="button dn">
|
||||
<span>Button</span>
|
||||
</button>
|
||||
{% for status in site.data.colors.status %}
|
||||
<button class="button is-{{ status }}">
|
||||
<span>{{ status | capitalize }}</span>
|
||||
</button>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div class="buttons" style="margin-bottom: 1em">
|
||||
{% for status in site.data.colors.status %}
|
||||
<button class="button is-{{ status }} is-outlined">
|
||||
<span>{{ status | capitalize }}</span>
|
||||
</button>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div class="buttons" style="margin-bottom: 1em">
|
||||
{% for status in site.data.colors.status %}
|
||||
<button class="button is-{{ status }} is-light">
|
||||
<span>{{ status | capitalize }}</span>
|
||||
</button>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div class="buttons" style="margin-bottom: 1em">
|
||||
{% for status in site.data.colors.status %}
|
||||
<button class="button is-{{ status }} is-dark">
|
||||
<span>{{ status | capitalize }}</span>
|
||||
</button>
|
||||
{% endfor %}
|
||||
</div>
|
||||
Reference in New Issue
Block a user