mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
39 lines
903 B
HTML
39 lines
903 B
HTML
<hr style="margin-bottom: 0;">
|
|
|
|
<h3 id="variables" class="title" style="padding-top: 1.5rem;">
|
|
Variables
|
|
</h3>
|
|
|
|
<div class="content">
|
|
<p>
|
|
You can use these variables to <strong>customize</strong> this {%if include.element %}element{% else %}component{% endif %}. Simply set one or multiple of these variables <em>before</em> importing Bulma. <a href="{{ site.url }}/documentation/overview/customize/">Learn how</a>.
|
|
</p>
|
|
</div>
|
|
|
|
<table class="table is-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Default value</th>
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Default value</th>
|
|
</tr>
|
|
</tfoot>
|
|
<tbody>
|
|
{% for variable in page.variables %}
|
|
<tr>
|
|
<td>
|
|
<code>{{ variable.name }}</code>
|
|
</td>
|
|
<td>
|
|
<code>{{ variable.value }}</code>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|