|
5 | 5 | /// STYLES ============================================== |
6 | 6 | // you can add your own custom styles. |
7 | 7 | $navbar-themes: ( |
8 | | - // theme name, bg color, text color, input bg, input color, input border color, divider color |
9 | | - ("light", white, #303232, white, #303232, theme('color', 'dark'), theme('color', 'grey')), |
10 | | - ("dark", theme('color', 'dark'), theme('color', 'negative'), lighten(theme('color', 'dark'), 7%), theme('color', 'negative'), lighten(theme('color', 'dark'), 25.75%), lighten(theme('color', 'dark'), 12.55%)) |
| 8 | + ( |
| 9 | + "light", // theme name |
| 10 | + white, // bg color |
| 11 | + #303232, // text color |
| 12 | + white, // input bg |
| 13 | + #303232, // input color |
| 14 | + theme('color', 'dark'), // input border color |
| 15 | + theme('color', 'grey') // divider color |
| 16 | + ), |
| 17 | + ( |
| 18 | + "dark", // theme name |
| 19 | + theme('color', 'dark'), // bg color |
| 20 | + theme('color', 'negative'), // text color |
| 21 | + lighten(theme('color', 'dark'), 7%), // input bg |
| 22 | + theme('color', 'negative'), // input color |
| 23 | + lighten(theme('color', 'dark'), 25.75%), // input border color |
| 24 | + lighten(theme('color', 'dark'), 12.55%) // divider color |
| 25 | + ) |
11 | 26 | ); |
12 | 27 |
|
13 | 28 | /// SIZES =============================================== |
| 29 | +// you can add your own custom sizes. |
14 | 30 | $navbar-sizes: ( |
15 | | - // size name, min-height, button font-size, button padding, top spacer for navbar (min-height + 40px) |
16 | | - ("mini", 40px, .9839em, .445rem .9rem, 80px), |
17 | | - ("small", 60px, 1em, .645rem 1.4rem, 100px) |
| 31 | + ( |
| 32 | + "mini", // size name |
| 33 | + 45px, // min-height |
| 34 | + .9839em, // button font-size |
| 35 | + .445rem .9rem, // button padding |
| 36 | + 70px // top spacer for navbar (min-height + 25px) |
| 37 | + ), |
| 38 | + ( |
| 39 | + "small", // size name |
| 40 | + 65px, // min-height |
| 41 | + 1em, // button font-size |
| 42 | + .645rem 1.4rem, // button padding |
| 43 | + 90px // top spacer for navbar (min-height + 25px) |
| 44 | + ), |
| 45 | + ( |
| 46 | + "large", // size name |
| 47 | + 95px, // min-height |
| 48 | + 1.28em, // button font-size |
| 49 | + .645rem 1.4rem, // button padding |
| 50 | + 115px // top spacer for navbar (min-height + 25px) |
| 51 | + ) |
18 | 52 | ); |
0 commit comments