diff --git a/less/buttons.less b/less/buttons.less index 4cd8207..d61a02a 100644 --- a/less/buttons.less +++ b/less/buttons.less @@ -1,5 +1,5 @@ .btn { - background: #fff; + background: #999; color: #fff; display: inline-block; /* Enables non-inline-block elements like
s to be buttons */ font-size: 2.5em; @@ -13,20 +13,11 @@ } .btn:hover { - background: #eee; + background: #888; } .btn:active,.btn:focus { - background: #ddd; -} - -.btn:not([class*='btn-']) { - color: #000; - border: 2px solid; - padding: 13px 38px 14px; /* This way we don't change the button size, as there's no border on other buttons */ - &.btn-small { - padding: 8px 14px 9px; /* This padding is 2px smaller than the normal small-btn padding to account for the border */ - } + background: #777; } .btn-a {