UNPKG

asterisk

Version:
65 lines (46 loc) 844 B
/* # First class <button class='btn btn-primary'>Primary Button</button> ```html <button class='btn btn-primary'>Primary Button</button> ``` <button class='btn btn-success'>Success Button</button> ```html <button class='btn btn-success'>Success Button</button> ``` ## h2 ### h3 #### h4 This is `inline code block`. */ .btn { display: inline-block; width: 200px; border-radius: 5px; font-size: 24px; line-height: 1.5; } .btn.btn-primary { color: #fff; background-color: #3276b1; border-color: #285e8e; } .btn.btn-success { color: #fff; background-color: #47a447; border-color: #398439; } /* # Next Class - This is list item. - This is list item. - This is list item. ##### h5 ###### h6 **This is strong style.** *This is italic style.* ~~This is line-through style.~~ */ .next-class { display: block; }