asterisk
Version:
CSS docuemnt generator.
31 lines (24 loc) • 480 B
CSS
/*
<button class='btn btn-primary'>Primary Button</button>
```html
<button class='btn btn-primary'>Primary Button</button>
```
This is normal paragraph.
- This is list item.
- This is list item.
- This is list item.
**This is strong style.**
*This is italic style.*
~~This is line-through style.~~
*/
.btn {
display: inline-block;
width: 200px;
border-radius: 5px;
font-size: 24px;
line-height: 1.5;
}
.btn.btn-primary {
color: #ffcaca;
background: #ee5757;
}