15 lines
553 B
SCSS
15 lines
553 B
SCSS
// Set the correct sprite paths
|
|
$iconSpritePath: image-path('glyphicons-halflings.png');
|
|
$iconWhiteSpritePath: image-path('glyphicons-halflings-white.png');
|
|
|
|
// We don't want no black header, please.
|
|
$navbarBackground: #f0f0f0;
|
|
$navbarBackgroundHighlight: lighten($navbarBackground, 10%);
|
|
|
|
// The default active / link color is white which doesn't work on our lightish background.
|
|
$navbarLinkColorHover: lighten(#999, 10%);
|
|
$navbarLinkColorActive: $navbarLinkColorHover;
|
|
|
|
@import "bootstrap";
|
|
body { padding-top: 50px; }
|
|
@import "bootstrap-responsive";
|