blob: 2de43b07b543fd6eadd74db706418e1cf66178ea (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
body {
background: #073642 ;
color: brown ;
max-width: 850px ;
margin: auto ;
padding: 0 16px ;
margin-bottom: 500px ;
scrollbar-color: #151515 ;
font-family: sans-serif ;
}
main {
max-width: 800px ;
margin: auto ;
}
main > article {
background: #EEE8D5 ;
color: #151515 ;
margin-bottom: 0 ;
padding: 3.5em ;
border-color: #1e4e76 ;
border-width: 0.25em 0.25em 0.25em .25em ;
border-style: solid ;
text-align: justify;
border-radius: 0 ;
margin: auto ;
}
img {
max-width: 100% ;
}
header h1 {
text-align: center ;
text-shadow: 3px 0 black, 3px 3px black, 0 3px black;
}
h1 {
border-style: solid ;
border-width: 0px 0px 2px 0px ;
text-align: center ;
}
h2 {
color: #151515 ;
text-align: center ;
}
footer {
max-width: 300px ;
background: #EEE8D5 ;
margin-left: auto ;
margin-right: auto ;
margin-top: -4px ;
text-align: center ;
clear: both ;
border-color: #1e4e76 ;
border-width: 0em 0.25em 0.25em 0.25em ;
border-style: solid ;
border-radius: 0 0 0 0 ;
}
code {
color: #373737 ;
overflow-wrap: break-word ;
font-size: 10pt ;
}
/* For TAGLIST.HTML */
.taglist {
text-align: center ;
clear: both ;
}
/* For NEXTPREV.HTML */
#nextprev {
/* The container for both the previous and next articles. */
}
#prevart {
float: left ;
text-align: left ;
}
#nextart {
float: right ;
text-align: right ;
}
#nextart,#prevart {
max-width: 33% ;
}
table, th, td {
width: 400px ;
border: 1px solid;
}
|