Using image for logo instead of pure CSS to ensure it displays consistently across all potential impls, regardless of font
parent
5b65c9ce3b
commit
c3228f528f
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
Binary file not shown.
|
@ -51,7 +51,7 @@
|
||||||
{
|
{
|
||||||
toggleTry();
|
toggleTry();
|
||||||
} )
|
} )
|
||||||
.appendTo( '#header' );
|
.appendTo( '#header-content' );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
15
style.css
15
style.css
|
@ -18,18 +18,21 @@ html, body {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
background-color: #2e3436;
|
background-color: #2e3436;
|
||||||
|
color: #babdb6;
|
||||||
height: 150px;
|
|
||||||
color: #babdb6;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#header-content {
|
#header-content {
|
||||||
|
background-image: url('images/logo.png');
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: 0px 50px;
|
||||||
|
|
||||||
margin: 0px auto;
|
margin: 0px auto;
|
||||||
|
height: 150px;
|
||||||
width: 800px;
|
width: 800px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#header h1 {
|
#header h1 {
|
||||||
display: inline-block;
|
display: none;
|
||||||
margin: 0.25em 0px 0px 0px;
|
margin: 0.25em 0px 0px 0px;
|
||||||
|
|
||||||
font-size: 4.5em;
|
font-size: 4.5em;
|
||||||
|
@ -45,6 +48,8 @@ html, body {
|
||||||
}
|
}
|
||||||
|
|
||||||
#header h2.desc {
|
#header h2.desc {
|
||||||
|
display: none;
|
||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -1.50em;
|
top: -1.50em;
|
||||||
left: 0.30em;
|
left: 0.30em;
|
||||||
|
@ -235,7 +240,7 @@ p.copyright a, p.copyright a:link {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
margin: 0px auto;
|
margin: 0px auto;
|
||||||
top: -2em;
|
top: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#trybox {
|
#trybox {
|
||||||
|
|
Loading…
Reference in New Issue