mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-30 12:24:19 +01:00
b6b96c174b
- Simplify display headings example markup - Simplify footer styles - Remove z-indices hacks in the docs - Remove redundant modal styling in docs - Use `escape-svg()` to escape docs sidebar chevron - Simplify sidebar chevron code - Cleanup masthead css & fix column width between `md` & `lg` - Easier to download logo's with the `download` attribute. - Changed some color codes into variables - Cleanup brands css
19 lines
1.1 KiB
SCSS
19 lines
1.1 KiB
SCSS
// stylelint-disable scss/dollar-variable-default
|
|
|
|
// Local docs variables
|
|
$bd-purple: #563d7c;
|
|
$bd-purple-bright: lighten(saturate($bd-purple, 5%), 15%);
|
|
$bd-purple-light: lighten(saturate($bd-purple, 5%), 45%);
|
|
$bd-dark: #2a2730;
|
|
$bd-download: #ffe484;
|
|
$bd-info: #5bc0de;
|
|
$bd-warning: #f0ad4e;
|
|
$bd-danger: #d9534f;
|
|
$dropdown-active-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='#292b2c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/></svg>");
|
|
$sidebar-colapse-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><path fill='none' stroke='rgba(0,0,0,.5)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/></svg>");
|
|
|
|
// Enable responsive font sizes for font sizes defined in the docs
|
|
// The weird if test is made as a workaround to prevent a false fusv error.
|
|
//
|
|
$enable-responsive-font-sizes: if($enable-responsive-font-sizes, true, true);
|