diff options
Diffstat (limited to 'src/scss/ie/ie.scss')
-rw-r--r-- | src/scss/ie/ie.scss | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/src/scss/ie/ie.scss b/src/scss/ie/ie.scss index bf8cc4f..f65d6b9 100644 --- a/src/scss/ie/ie.scss +++ b/src/scss/ie/ie.scss @@ -10,18 +10,18 @@ #main { .col { - display: block !important; - width: 100% !important; + display: block; + width: 100%; &.left { - padding-right: 0 !important; + padding-right: 0; } } .section { - .heading { - background: $blue !important; + h2.heading { + background: $blue; } } @@ -33,12 +33,15 @@ } #comments { - #new_comment { + form, /* ie4 */ + form#new_comment { + width: 400px; - #author, - #content { - width: 400px !important; + input, + input#author, + input#content { + width: 400px; } } } |