blob: 0dfd31b89f1c915a395978248e9a368ccc70d9b6 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
@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);
}
blockquote {
background-color: #f0f0c9;
font-size: 0.9em;
margin: 0;
padding: 1em;
}
em { font-style: italic; }
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
margin-bottom: 1ex;
margin-top: 1ex;
}
h1 { font-size: 2em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.6em; }
h4 { font-size: 1.4em; }
h5 { font-size: 1.2em; }
hr {
border: 0px solid #000;
border-top: 1px solid #000;
margin: 1em;
}
html {
font-family: UnBatang;
background-color: #fafad2;
}
p {
margin-bottom: 1ex;
margin-top: 1ex;
}
section.header {
text-align: center;
font-size: 1.2em;
}
section.content {
margin-left: auto;
margin-right: auto;
max-width: 100ex;
padding: 1ex;
text-align: justify;
}
section.footer {
font-size: 0.8em;
font-style: italic;
text-align: center;
}
strong { font-weight: bold; }
table {
margin-left: auto;
margin-right: auto;
}
th {
font-weight: bold;
padding: 0.4ex;
}
td { padding: 0.4ex; }
ul li {
list-style-type: square;
margin-left: 2em;
}
.feedlink { font-size: 0.8em; }
.parsel { font-family: "Junkyard"; }
.small { font-size: 0.8em; }
|