blob: e8b6773eebfc2456abf430eae7dad6f4b003b595 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
@import "variables";
@import "bootstrap";
body {
@extend .container-fluid;
}
header {
@extend .row;
}
#main {
@extend .col-sm-8;
@extend .col-sm-offset-2;
}
div#logo {
@extend .col-sm-4;
@extend .col-sm-offset-2;
}
nav {
@extend .navbar;
@extend .navbar-static-top;
@extend .navbar-inverse;
}
nav ul {
@extend .nav;
@extend .navbar-nav;
//@extend .nav-justified;
}
// navbar justified is umpossible; this is the best we can do now....
.navbar-collapse {
@extend .col-sm-offset-2;
}
// NAV JUSTIFIED CRUFT STARTS HERE
/*
.navbar-nav.nav-justified > li{
float:none;
}
*/
/*
// center the main nav items on big screens
@media (min-width: $screen-sm-min) {
div#nav-big {
width: 40%;
margin: 0 auto;
}
}
*/
/*
// open navigation dropdown on hover on non-mobile devices
// FIXME dropdown stays open on click..
@media (min-width: $screen-sm-min) {
nav ul li.dropdown:hover ul.dropdown-menu {
display: block;
margin-top:0px
}
}
*/
|