35 lines
664 B
SCSS
35 lines
664 B
SCSS
/*
|
|
* 3. Buttons and labels
|
|
* All clickable elements
|
|
*
|
|
*/
|
|
|
|
.btn {
|
|
@include button($button_large);
|
|
&:hover, &:active {
|
|
@include borders();
|
|
}
|
|
|
|
p &:last-child {
|
|
margin-bottom:0;
|
|
}
|
|
}
|
|
|
|
.btn-small, .badge {
|
|
@include button($button_small);
|
|
padding-left: $button_small;
|
|
padding-right: $button_small;
|
|
text-decoration:none;
|
|
}
|
|
|
|
// COLORIZE BUTTONS
|
|
|
|
strong.btn-fake {
|
|
@include button($button_large);
|
|
@include button-fullcontrol(transparent, transparent, rgba(0,0,0,1));
|
|
}
|
|
|
|
.btn-readmore, .btn-link {
|
|
@include button-fullcontrol(transparent, accentuate($color-background-alt), $color-primary);
|
|
@include prefer-no-borders();
|
|
}
|