diff options
Diffstat (limited to 'design/sass/iev8.scss')
-rw-r--r-- | design/sass/iev8.scss | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/design/sass/iev8.scss b/design/sass/iev8.scss index 1f191e9..574ab55 100644 --- a/design/sass/iev8.scss +++ b/design/sass/iev8.scss @@ -1,3 +1,23 @@ -body { - background: #f3f; +h1 a:before { + background: url("/media/logo-new-treeonly.png") center top no-repeat !important; +} +.logo { + zoom: expression( + this.runtimeStyle.zoom="1", + /* ::before polyfill - creates <i class="ie-before"></i> */ + this.insertBefore( document.createElement("i"), this.firstChild ).className="ie-before", + /* ::after polyfill - creates <i class="ie-after"></i> */ + this.appendChild( document.createElement("i") ).className="ie-after" + ); +} + +.ie-before { + background: url("/media/logo-new-treeonly.png") center top no-repeat !important; + content: "home-icon"; + text-indent: -9999em; + width: 95px; + height: 85px; + display: block; + float: left; + margin-right: 20px; } |