I'm curious about how they created the background on the page found at
The background is not just a plain color - could it be an image that scales to fit the whole page? Or is there some CSS trickery involved?
I noticed in the CSS that the body element has this styling:
body {
background: #0d1424 url(images/body-bg.jpg) no-repeat center top;
font: .81em/150% "Lucida Grande", Arial, "Lucida Sans Unicode", sans-serif;
word-wrap: break-word;
color: #666;
}
This seems to indicate that it's a single image that doesn't repeat. But then how does it fill the entire page?