21 lines
392 B
CSS
21 lines
392 B
CSS
|
@media{
|
||
|
body {color:#eee;background:#060606}
|
||
|
a:link {color:#80c47b}
|
||
|
a:hover, a:visited:hover {color:#6bb794}
|
||
|
a:visited {color:#80c47b}
|
||
|
}
|
||
|
body{
|
||
|
margin:1em auto;
|
||
|
max-width:100em;
|
||
|
padding:0 .62em;
|
||
|
font:1.0em/1.35 sans-serif
|
||
|
}
|
||
|
h1,h2,h3 {
|
||
|
line-height:1.2
|
||
|
}
|
||
|
@media print{
|
||
|
body{
|
||
|
max-width:none
|
||
|
}
|
||
|
}
|