mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
35 lines
977 B
HTML
35 lines
977 B
HTML
<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>
|