diff options
author | Freya Murphy <freya@freyacat.org> | 2024-09-27 15:05:35 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-09-27 15:05:35 -0400 |
commit | cc2c4de595bc3c4f7424d30342d74a5974fdefe0 (patch) | |
tree | 38a1daec46b11484c12eb6f08128dd05619b1e10 /src/scss/ie/ie.scss | |
parent | ie5 (diff) | |
download | website-cc2c4de595bc3c4f7424d30342d74a5974fdefe0.tar.gz website-cc2c4de595bc3c4f7424d30342d74a5974fdefe0.tar.bz2 website-cc2c4de595bc3c4f7424d30342d74a5974fdefe0.zip |
ie4
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; } } } |