2017-04-02 10:48:47 +03:00
< section id = "buttons" >
< h4 > Buttons< / h4 >
< p > chota includes five predefined button styles, each serving its own semantic purpose. It also applies these styles to < code > input, button< / code > elements, see the complete < a href = "https://rawgit.com/jenil/chota/master/test/index.html#forms__action" target = "_blank" > demo< / a > .< / p >
< div class = "row" >
< div class = "col-4" >
< div class = "buttons" >
< a href = "#!" class = "button" > Default< / a >
< a href = "#!" class = "button primary" > Primary< / a >
2017-11-17 04:09:24 +03:00
< a href = "#!" class = "button secondary" > Secondary< / a >
2017-04-02 10:48:47 +03:00
< a href = "#!" class = "button outline" > Outline< / a >
< a href = "#!" class = "button outline primary" > Primary outline< / a >
2017-11-17 04:09:24 +03:00
< a href = "#!" class = "button outline secondary" > Secondary outline< / a >
2017-04-02 10:48:47 +03:00
< a href = "#!" class = "button clear" > Clear< / a >
< / div >
< / div >
< div class = "col" >
{% highlight html %}
< a class = "button" > Default< / a >
< a class = "button primary" > Primary< / a >
2017-11-17 04:09:24 +03:00
< a class = "button secondary" > Secondary< / a >
2017-04-02 10:48:47 +03:00
< a class = "button outline" > Outline< / a >
< a class = "button outline primary" > Primary outline< / a >
2017-11-17 04:09:24 +03:00
< a class = "button outline secondary" > Secondary outline< / a >
2017-04-02 10:48:47 +03:00
< a class = "button clear" > Clear< / a >
{% endhighlight %}
< / div >
< / div >
< / section >