blob: 3fa9294b10e999c483eaaeb670ebf4361b54e2c6 (
plain)
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
|
body {
font-family: sans-serif;
font-size: 12pt;
background-color: #FEFEFE;
margin: 0 auto;
width: 800px;
}
a.title {
font-weight: bold;
font-size: 20pt;
margin: 0px 0px 14px;
text-decoration: none;
color: black;
}
#perma {
font-size: 8pt;
font-weight: normal;
}
#tweet {
font-size: 8pt;
font-weight: normal;
text-decoration: none;
color: black;
}
a.toplink {
font-size: 14pt;
letter-spacing: -1px;
font-family: monospace;
float: bottom;
color: #000000;
}
a.toplink:hover {
color: #808080;
}
blockquote {
background-color: #F4F4F4;
padding: 5px 5px;
border-radius: 5px;
}
span.date {
margin: 0px 0px 14px;
font-size: 12px;
float: right;
}
div {
clear: both;
text-align: justify;
border-style: solid;
border-color: #E0E0E0;
border-width: 5px;
border-radius: 5px;
width: 770px;
margin: 10px auto;
padding: 5px;
}
#title {
position: relative;
background-color: #E0E0E0;
text-align: center;
width: 750px;
margin: 10px 0px 5px;
font-size: 32px;
padding: 25px;
border: 0px;
border-radius: 10px;
}
|