blob: 0d14766e35987d2be8c56f3e6f605a34e420bae9 (
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
41
42
43
44
45
46
47
48
49
50
51
52
|
// Bootswatch.less
// Swatch: United
// -----------------------------------------------------
// TYPOGRAPHY
// -----------------------------------------------------
// Ubuntu web font
@import url(http://fonts.googleapis.com/css?family=Ubuntu);
// NAVBAR
// -----------------------------------------------------
// Added dividers to items
.navbar .nav > li > a {
border-right: 1px solid #C03D14;
border-left: 1px solid #E6633A;
}
// Lightened color of active item
.navbar .nav .active > a,
.navbar .nav .active > a:hover {
background-color: rgba(0,0,0,.2);
}
// Styled item divider
.navbar .divider-vertical {
background-color: inherit;
border-right: 0px solid #CE4213;
}
// BUTTONS
// -----------------------------------------------------
// Reversed gradient on primary button
.btn-primary {
.buttonBackground(lighten(@primaryButtonBackground, 15%), @primaryButtonBackground);
}
// Made warning button yellow since orange is taken
.btn-warning {
.buttonBackground(lighten(@yellow, 15%), @yellow);
}
// ALERTS
// -----------------------------------------------------
// Removed text-shadow
.alert {
text-shadow: none !important;
}
|