diff --git a/less/buttons.less b/less/buttons.less index d61137242d29b16a73610e0b7072171d4355c2a1..a65ae11743d004c85777cdfc3461427b727880cb 100644 --- a/less/buttons.less +++ b/less/buttons.less @@ -1,13 +1,13 @@ .btn { background: #999; + border-radius: 10px; /* rounded corners */ + border: 0; color: #fff; + cursor: pointer; display: inline-block; /* Enables non-inline-block elements like
s to be buttons */ - font-size: 2.5em; - padding: 15px 40px 16px; + font-size: 2.5em; margin: .3em .2em 0 0; - cursor: pointer; - border: 0; - border-radius: 10px; /* rounded corners */ + padding: 15px 40px 16px; } .btn:hover { @@ -50,7 +50,7 @@ } .btn-sm { - padding: 10px 15px 11px; - font-size: .9em; border-radius: 4px; /* rounded corners */ + font-size: .9em; + padding: 10px 15px 11px; } diff --git a/sass/_button.scss b/sass/_button.scss index f41b62bdcfde4687e41378e6135245964176ed9b..519a70cece2af2694bb9edbc8a44cc13cc63a237 100644 --- a/sass/_button.scss +++ b/sass/_button.scss @@ -24,9 +24,10 @@ // Set Generic