18 lines
207 B
CSS
18 lines
207 B
CSS
|
|
||
|
@font-face
|
||
|
{
|
||
|
font-family: 'Open Sans';
|
||
|
src: url('opensans.ttf') format('truetype');
|
||
|
}
|
||
|
|
||
|
body
|
||
|
{
|
||
|
position: absolute;
|
||
|
margin: 0;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
z-index: -2;
|
||
|
background-color: #EEE;
|
||
|
}
|
||
|
|