blob: dfcd96f2e9f9a764656812d65c395eb643c20ba4 (
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
@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, serif;
}
@media screen {
html {
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;
}
.trail {
background-color: #f0f0c9;
column-count: 3;
-moz-column-count: 3;
-webkit-column-count: 3;
font-style: italic;
text-align: center;
padding: 0.4ex;
}
.trail .prev {
}
.trail .up {
}
.trail .next {
}
.feedlink { font-size: 0.8em; }
.parcel { font-family: "Junkyard"; }
.small { font-size: 0.8em; }
|