blob: 574ab55337ba18431577feddb070deb465938e46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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;
}
|