blob: f7130d408a4123255a3c5bbe10455daf150bea05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// GLOBAL VALUES
// --------------------------------------------------
@standardGray: #ccc;
@cornflower: #99cbff;
@white: #fff;
// Dropdown
// -------------------------
@dropdownLinkBackgroundHover: @cornflower;
// Navbar
// -------------------------
@navbarHeight: 55px;
@navbarBackground: @cornflower;
@navbarBackgroundHighlight: @cornflower;
@navbarText: @white;
@navbarLinkColor: @white;
@navbarLinkColorHover: @white;
@navbarLinkColorActive: @white;
@navbarLinkBackgroundHover: transparent;
@navbarLinkBackgroundActive: transparent;
.navbar {
.brand {
@elementHeight: 48px;
padding: 7px;
}
}
.navbar .nav > li > a {
font-size: @baseFontSize + 2;
text-shadow: 0 1px 0 #6b94df;
}
body { padding-top: @navbarHeight + 15 } /* 60px to make the container go all the way to the bottom of the topbar */
footer { margin-top: 25px; padding: 15px 0 16px; border-top: 1px solid #E5E5E5; }
a:hover { text-decoration: underline !important; }
em { color: #50a000; }
|