blob: c6198cf21dc09799e8e8400fbb87227403cfc628 (
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
|
/* IE 6 & 7 Styles */
@import "./variables";
#header, #footer {
behavior: url(boxsizing.htc);
}
.ie-nav {
margin-left: 90px;
}
#main .col {
display: block !important;
width: 100% !important;
}
#main .left {
padding-right: 0 !important;
padding-bottom: $outer-gap;
}
#main .right {
margin-top: $outer-gap;
}
#new_comment {
width: 400px;
.input {
width: 400px;
}
}
|