$button-margin-bottom: emCalc(20px) !default;
// We use these to control button text styles.
+$button-font-family: inherit !default;
$button-font-color: #fff !default;
$button-font-color-alt: #333 !default;
$button-font-med: emCalc(16px) !default;
border-style: $button-border-style;
border-width: $button-border-width;
cursor: pointer;
- font-family: inherit;
+ font-family: $button-font-family;
font-weight: $button-font-weight;
line-height: 1;
margin: 0 0 $button-margin-bottom;
$label-font-weight: 500 !default;
$label-font-color: lighten(#000, 30%) !default;
$label-bottom-margin: emCalc(3px) !default;
+$input-font-family: inherit !default;
$input-font-color: rgba(0,0,0,0.75) !default;
$input-font-size: emCalc(14px) !default;
$input-bg-color: #fff !default;
// We use this mixin to give all basic form elements their style
@mixin form-element() {
background-color: $input-bg-color;
- font-family: inherit;
+ font-family: $input-font-family;
border: $input-border-width $input-border-style $input-border-color;
-webkit-box-shadow: $input-box-shadow;
box-shadow: $input-box-shadow;
// $label-font-weight: 500;
// $label-font-color: lighten(#000, 30%);
// $label-bottom-margin: emCalc(3px);
+// $input-font-family: inherit;
// $input-font-color: rgba(0,0,0,0.75);
// $input-font-size: emCalc(14px);
// $input-bg-color: #fff;
// $button-margin-bottom: emCalc(20px);
// We use these to control button text styles.
+// $button-font-family: inherit;
// $button-font-color: #fff;
// $button-font-color-alt: #333;
// $button-font-med: emCalc(16px);