mirror of
https://github.com/Gioni06/terminal.css
synced 2025-03-09 09:09:04 -04:00
19 lines
823 B
HTML
19 lines
823 B
HTML
<section>
|
|
<header><h2 id="Buttons">Buttons</h2></header>
|
|
<button class="btn btn-default">Default</button><br /><br />
|
|
<button class="btn btn-primary">Primary</button><br /><br />
|
|
<button class="btn btn-error">Error</button><br /><br />
|
|
<button class="btn btn-default btn-ghost">Ghost Button</button><br /><br />
|
|
<button class="btn btn-primary btn-ghost">Ghost Button</button><br /><br />
|
|
<button class="btn btn-error btn-ghost">Ghost Button</button><br /><br />
|
|
<button class="btn btn-primary btn-block">Block Level Button</button
|
|
><br /><br />
|
|
<p>Button Group</p>
|
|
<div class="btn-group">
|
|
<button class="btn btn-default btn-ghost">Left</button>
|
|
<button class="btn btn-default btn-ghost">Middle</button>
|
|
<button class="btn btn-default btn-ghost">Right</button>
|
|
</div>
|
|
<br />
|
|
</section>
|