nunta/scss/_mixins.scss
2016-06-10 19:26:00 -07:00

71 lines
1.4 KiB
SCSS

// Bootstrap Button Variant
@mixin button-variant($color, $background, $border) {
color: $color;
background-color: $background;
border-color: $border;
@at-root {
&.active,
&:active,
&:focus,
&:hover,
.open .dropdown-toggle#{&} {
color: $color;
background-color: darken($background, 10%);
border-color: darken($border, 12%);
}
&.active,
&:active,
.open .dropdown-toggle#{&} {
background-image: none;
}
&.disabled,
&[disabled],
fieldset[disabled] #{&} {
&,
&.active,
&:active,
&:focus,
&:hover {
background-color: $background;
border-color: $border;
}
}
}
.badge {
color: $background;
background-color: $color;
}
}
// Background Features
@mixin background-cover {
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
// Font Selections
@mixin serif-font {
font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@mixin script-font {
font-family: "Kaushan Script", "Helvetica Neue", Helvetica, Arial, cursive;
}
@mixin body-font {
font-family: "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@mixin heading-font {
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
text-transform: uppercase;
}