29 lines
393 B
CSS
29 lines
393 B
CSS
|
@font-face {
|
||
|
font-family: 'merriweather';
|
||
|
src: url(/res/merriweather-regular.ttf);
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: merriweather;
|
||
|
background-color: black;
|
||
|
height: 100%;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
padding: 10px;
|
||
|
background-color: white;
|
||
|
margin: auto;
|
||
|
max-width: 750px;
|
||
|
}
|
||
|
|
||
|
.bg {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
display: block;
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
z-index: -9999;
|
||
|
}
|