Make the top header bar orange instead of light-grayish.
This commit is contained in:
parent
ae090ca387
commit
0b3b1cdc85
3 changed files with 14 additions and 8 deletions
|
|
@ -2,13 +2,18 @@
|
|||
$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%);
|
||||
// Colours.
|
||||
$grayLight: #999;
|
||||
$orange: #ed8200;
|
||||
$orangeLight: lighten($orange, 10%);
|
||||
|
||||
// The default active / link color is white which doesn't work on our lightish background.
|
||||
$navbarLinkColorHover: lighten(#999, 10%);
|
||||
$navbarLinkColorActive: $navbarLinkColorHover;
|
||||
// We don't want no black but an orange header, please.
|
||||
$navbarBackground: $orange;
|
||||
$navbarBackgroundHighlight: $orangeLight;
|
||||
$dropdownBackground: $orangeLight;
|
||||
$dropdownBorder: $orange;
|
||||
$dropdownLinkBackgroundHover: $orange;
|
||||
$dropdownLinkColor: $grayLight;
|
||||
|
||||
@import "bootstrap";
|
||||
body { padding-top: 50px; }
|
||||
|
|
|
|||
|
|
@ -106,10 +106,10 @@ h2 {
|
|||
/* font-size: 125%; */
|
||||
}
|
||||
.logo_contact {
|
||||
color: #ed8200; /* orange */
|
||||
color: #fff;
|
||||
}
|
||||
.logo_o-rama {
|
||||
color: #000000;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.logo_white { color: #fff; }
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@
|
|||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><%= link_to 'logout', destroy_user_session_path, :method => 'delete' %></li>
|
||||
<li><a href="#">dummy</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="divider-vertical"></li>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue