38bed8bd1a
including the LESS files in the dist folder for those people who want to download the dist files and build their own development environment - i'm including expanded and minified versions of everything so why not include the LESS too
68 lines
1.2 KiB
Plaintext
68 lines
1.2 KiB
Plaintext
// Bootstrap Button Variant
|
|
|
|
.button-variant(@color; @background; @border) {
|
|
color: @color;
|
|
background-color: @background;
|
|
border-color: @border;
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active,
|
|
&.active,
|
|
.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] & {
|
|
&,
|
|
&:hover,
|
|
&:focus,
|
|
&:active,
|
|
&.active {
|
|
background-color: @background;
|
|
border-color: @border;
|
|
}
|
|
}
|
|
|
|
.badge {
|
|
color: @background;
|
|
background-color: @color;
|
|
}
|
|
}
|
|
|
|
// Background Features
|
|
|
|
.background-cover() {
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
background-size: cover;
|
|
-o-background-size: cover;
|
|
}
|
|
|
|
// Font Selections
|
|
|
|
.serif-font() {
|
|
font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
.script-font() {
|
|
font-family: "Kaushan Script", "Helvetica Neue", Helvetica, Arial, cursive;
|
|
}
|
|
|
|
.body-font() {
|
|
font-family: "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
.heading-font() {
|
|
font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
text-transform: uppercase;
|
|
}
|