blob: 2731e240bbe2e306e132f1bcebfdff917780a1b2 (
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
|
/* IE 6 and 7 Only */
@import "../variables";
/**
* IE5 and below seem to look fine without boxsizing
* additions, its only the jump to IE5 where things seem
* to start breaking and thus this is needed
*/
* {
behavior: url(boxsizing.htc);
}
/**
* Fix homepage margin near footer, only caused
* by the boxsizing i think
*/
body {
#main {
.col {
&.left {
margin-bottom: $inner-gap;
}
&.right {
margin-top: $inner-gap !important;
}
}
}
#contact {
margin-bottom: 0 !important;
}
#footer {
margin-top: $inner-gap !important;
}
}
|