diff --git a/docs/customization/core.html b/docs/customization/core.html index 98cfd32..5a781c7 100644 --- a/docs/customization/core.html +++ b/docs/customization/core.html @@ -73,6 +73,7 @@
The core module's typography rules are quite extensive and deal with background and foreground colors, used fonts, sizing and line height, along with heading, link and paragraph styling.
Variable | Type | Description | Sample value |
---|
Variable | Type | Description | Sample value |
---|
Variable | Type | Description | Sample value |
---|
Variable | Type | Description | Sample value |
---|
Variable | Type | Description | Sample value |
---|
Variable | Type | Description | Sample value |
---|---|---|---|
$button-back-color | Color | +Background color for button elements | #bdbdbd | +
$button-fore-color | Color | +Text color for button elements | $fore-color | +
$button-border-style | Border | +Border style for button elements | 1px solid #9e9e9e | +
$button-border-radius | Border radius | +Border radius for button elements | 2px | +
$button-margin | Margin | +Margin for button elements | 8px | +
$button-padding | Padding | +Padding for button elements | 8px 12px | +
$button-box-shadow | Box shadow | +Box shadow for button elements | 0 1px 3px rgba(0,0,0, 0.1) | +
$button-back-opacity | Opacity | +Background opacity for button elements (default) | 0.65 | +
$button-hover-back-opacity | Opacity | +Background opacity for button elements (focused) | 0.8 | +
$button-disabled-opacity | Opacity | +Opacity for button elements (focused) | 0.65 | +
$button-class-name | String | +Class name for button elements | 'button' | +
$button-group-name | String | +Class name for button groups | 'button-group' | +
$button-group-border-style | Border | +Border style for button groups | 1px solid #9e9e9e | +
$button-group-margin | Margin | +Margin for button groups | 8px | +
$button-group-box-shadow | Box shadow | +Box shadow for button groups | 0 1px 3px rgba(0,0,0, 0.1) | +
$button-group-mobile-breakpoint | Breakpoint | +Breakpoint for button groups on mobile devices | 767px | +
The input_control module contains a couple of mixins for adding custom styles to button elements (color and style variants).
Mixin | Description |
---|---|
make-button-alt-color ($button-alt-name, $button-alt-back-color, $button-alt-back-opacity, $button-alt-hover-back-opacity, $button-alt-fore-color) | +Creates a new button color variant using the specified values. | +
make-button-alt-style ($button-alt-name, $button-alt-border-style, $button-alt-border-radius, $button-alt-padding, $button-alt-margin) | +Creates a new button style variant using the specified values. | +
Parameter | Type | Description | Sample value |
---|---|---|---|
$button-alt-name | String | +Class name for the button color variant | 'primary' | +
$button-alt-back-color | Color | +Background color for the button color variant | #0277bd | +
$button-alt-back-opacity | Opacity | +Background opacity for the button color variant (default) | 0.9 | +
$button-alt-hover-back-opacity | Opacity | +Background opacity for the button color variant (focused) | 1 | +
$button-alt-fore-color | Color | +(Optional) Text color for the button color variant | #fafafa | +
@include make-button-alt-color ('primary', #0277bd, 0.9, 1, #fafafa);+
Parameter | Type | Description | Sample value |
---|---|---|---|
$button-alt-name | String | +Class name for the button style variant | 'large' | +
$button-alt-border-style | Border | +Border style for the button style variant | 2px solid #9e9e9e | +
$button-alt-border-radius | Border radius | +Border radius for the button style variant | 4px | +
$button-alt-padding | Padding | +Padding for the button style variant | 12px 18px | +
$button-alt-margin | Margin | +Margin for the button style variant | 10px | +
@include make-button-alt-style ('large', 2px solid #9e9e9e, 4px, 18px, 10px);+
If you want to learn more about customizing mini.css, go back to the customization page or choose a module from the top menu to see its documentation.
diff --git a/docs/customization/navigation.html b/docs/customization/navigation.html index b7bab8d..da1b91d 100644 --- a/docs/customization/navigation.html +++ b/docs/customization/navigation.html @@ -73,6 +73,7 @@The navigation module contains definitions for styling the <header>
element, along with its contents (logo and links).
Variable | Type | Description | Sample value |
---|
Variable | Type | Description | Sample value |
---|
Variable | Type | Description | Sample value |
---|