Files
2013-09-10 11:38:20 -05:00

62 lines
1.4 KiB
SCSS

.button {
color: $button-color;
border-radius: $button-border-radius;
border-width: $button-border-width;
border-style: solid;
padding: $button-padding;
font-size: $button-font-size;
&.button-default {
@include button-style($button-default-bg, $buttonDefaultBorder, $gray-dark);
}
&.button-secondary {
@include button-style($button-secondary-bg, $button-secondary-border, $gray-dark);
}
&.button-primary {
@include button-style($button-primary-bg, $button-primary-border, $white);
}
&.button-info {
@include button-style($button-info-bg, $button-info-border, $white);
}
&.button-success {
@include button-style($button-success-bg, $button-success-border, $white);
}
&.button-warning {
@include button-style($button-warning-bg, $button-warning-border, $white);
}
&.button-danger {
@include button-style($button-danger-bg, $buttonDangerBorder, $white);
}
&.button-dark {
@include button-style($button-dark-bg, $button-dark-border, $white);
}
&.button-clear {
background: none;
border: none;
padding: $button-clear-padding;
}
&.button-icon {
background: none;
border: none;
&:active, &.active {
text-shadow: 0px 0px 10px #fff;
box-shadow: none;
background: none;
}
}
}
a.button {
text-decoration: none;
}
.button-transparent {
background: transparent;
}
.button-borderless [class^="icon-"] {
font-size: 24px;
}