blob: 6125efa0d2e0b6eafb82fbe0a061ef53358006c1 (
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
|
@import "variables";
@import "bootstrap";
body {
@extend .container-fluid;
}
header {
@extend .row;
}
#content {
@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;
}
// navbar justified is umpossible; this is the best we can do now....
.navbar-collapse {
@extend .col-sm-offset-2;
}
@import "blog";
|