diff --git a/docs/customization/navigation.html b/docs/customization/navigation.html index c4c77f5..ac3037e 100644 --- a/docs/customization/navigation.html +++ b/docs/customization/navigation.html @@ -22,6 +22,8 @@ @media (max-width: 1279px){.col-sm-12.col-sm-last.col-lg-4.col-lg-normal {border: 0;border-top: 1px solid #bdbdbd;}} .box-colored.green { background: #689f38; } .do {border-top: 15px solid #689f38;padding-top: 10px;} .dont {border-top: 15px solid #e53935;padding-top: 10px;} .box-colored { color: #f5f5f5;} header.sticky a.button {padding: 4px 6px; font-size: 0.95em;} + td:first-child, td:last-child { font-family: monospace, monospace; } + td:first-child::before, td:last-child::before { font-family: -apple-system, BlinkMacSystemFont,"Segoe UI","Roboto", "Droid Sans","Helvetica Neue", Helvetica, Arial, sans-serif;} sup a { text-decoration: none; padding: 2px;}
@@ -152,6 +154,90 @@ +The navigation module contains definitions for styling <nav>
elements, along with the links they contain.
Variable | Type | Description | Sample value |
---|---|---|---|
$nav-back-color | Color | +Background color for <nav> elements | #eceff1 | +
$nav-fore-color | Color | +Text color for <nav> elements | $fore-color | +
$nav-border-style | Border | +Border style for <nav> elements | 1px solid #bdbdbd | +
$nav-border-radius | Border radius | +Border radius for <nav> elements | 2px | +
$nav-margin | Margin | +Margin for <nav> elements | 2px | +
$nav-padding | Padding | +Padding for <nav> elements | 8px | +
$nav-box-shadow | Box shadow | +Box shadow for <nav> elements | 0 1px 3px rgba(0,0,0, 0.1) | +
$nav-link-fore-color | Color | +Text color for <nav> elements' links | #1565c0 | +
$nav-sublink-prefix | String | +Class prefix for <nav> elements' subcategories | 'sublink' | +
$nav-sublink-depth | Integer | +Amount of <nav> elements' subcategories | 2 | +
$nav-sublink-padding-left | Padding left | +Left padding for <nav> elements' subcategories | 12px | +
$nav-include-sublink-bar | Logical | +Enables the sidebar for <nav> elements' subcategories1 | true | +
$nav-sublink-bar-left-position | Position left | +Left position of the sidebar for <nav> elements' subcategories1 | 3px | +
$nav-sublink-bar-width | Width | +Width of the sidebar for <nav> elements' subcategories1 | 1px | +
$nav-sublink-bar-color | Color | +Color of the sidebar for <nav> elements' subcategories1 | #263238 | +
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.