blob: 3c9b7ddfd282857e116970b441dd9abf4783f090 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
@font-face {
font-family: UnBatang;
font-weight: normal;
src: url(fonts/UnBatang.otf);
}
@font-face {
font-family: UnBatang;
font-weight: bold;
src: url(fonts/UnBatangBold.otf);
}
@font-face {
font-family: Junkyard;
font-weight: normal;
src: url(fonts/Junkyard.ttf);
}
body {
font-family: UnBatang, "Palatino", "URW Palladio L", "Book Antiqua", serif;
}
section.header {
font-size: 1.5em;
text-align: center;
}
section.content {
margin-left: auto;
margin-right: auto;
max-width: 100ex;
padding: 1ex;
text-align: justify;
}
section.footer {
font-size: 0.75em;
font-style: italic;
text-align: center;
}
blockquote {
background-color: #eee;
margin: 0;
padding: 1ex;
}
table {
margin-left: auto;
margin-right: auto;
}
.parsel {
font-family: "Junkyard";
}
|