42 lines
655 B
CSS
42 lines
655 B
CSS
@font-face {
|
|
font-family: 'PermanentMarker';
|
|
src: url('PermanentMarker.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
body {
|
|
background: #222 url(bg.jpg);
|
|
background-size: 100% auto;
|
|
color: #eee;
|
|
max-width: 40em;
|
|
margin: auto auto;
|
|
}
|
|
h1 {
|
|
color: #fd8;
|
|
font-family: PermanentMarker, fantasy, sans-serif;
|
|
font-size-adjust: 1.0;
|
|
}
|
|
h2 {
|
|
font-family: sans-serif;
|
|
}
|
|
dt {
|
|
font-size: 120%;
|
|
font-weight: bold;
|
|
}
|
|
a {
|
|
color: yellow;
|
|
}
|
|
caption {
|
|
font-size: 33%;
|
|
font-family: default;
|
|
}
|
|
|
|
#screenshot {
|
|
text-align: center;
|
|
}
|
|
|
|
#screenshot img {
|
|
border: solid black 4px;
|
|
}
|