26 lines
756 B
SCSS
26 lines
756 B
SCSS
// Set the correct sprite paths
|
|
$iconSpritePath: image-path('glyphicons-halflings.png');
|
|
$iconWhiteSpritePath: image-path('glyphicons-halflings-white.png');
|
|
|
|
// Colours.
|
|
$blue: #048abf;
|
|
$grayLight: #999;
|
|
$grayBackground: #f9f9f9;
|
|
$orange: #ed8200;
|
|
$orangeLight: lighten($orange, 10%);
|
|
$orangeText: #fddfbf;
|
|
|
|
// We don't want no black but an orange header, please.
|
|
$navbarBackground: $orange;
|
|
$navbarBackgroundHighlight: $orangeLight;
|
|
$dropdownBackground: $orangeLight;
|
|
$dropdownBorder: $orange;
|
|
$dropdownLinkBackgroundHover: $orange;
|
|
$dropdownLinkColor: $grayLight;
|
|
$navbarText: $orangeText;
|
|
$navbarLinkColor: $orangeText;
|
|
|
|
@import "bootstrap";
|
|
body { padding-top: 50px; }
|
|
// TODO Has this been obsoleted in Bootstrap 3?
|
|
// @import "bootstrap-responsive";
|