mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 16:42:17 +03:00
25 lines
487 B
Markdown
25 lines
487 B
Markdown
---
|
|
layout: default
|
|
title: Buttons
|
|
---
|
|
|
|
# Buttons
|
|
|
|
## Button Colours
|
|
|
|
```html
|
|
<button class="button">Button</button>
|
|
<button class="button-save">Save</button>
|
|
<button class="button-add">Add</button>
|
|
<button class="button-delete">Delete</button>
|
|
<button class="button-alt">Alt</button>
|
|
<button class="button-info">Info</button>
|
|
<button class="button-link">Link</button>
|
|
```
|
|
|
|
## Button Sizes
|
|
|
|
```html
|
|
<button class="button">Standard</button>
|
|
<button class="button large">Large</button>
|
|
``` |