blob: 2dbd8d29bb84e96d0fb7f1463b280074f77ce523 (
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
|
body {
font-family: 'Times New Roman' ;
/*background: #110000 ;*/
background: #1e1e22;
background-image: url("/images/space2.gif") ;
color: #ccc ;
}
main {
max-width: 800px ;
margin: auto ;
}
a {
color: #FFA500;
}
a:visited {
color: #FF8C00;
}
a:hover {
color: #FFD700;
}
img {
max-width: 100% ;
}
header h1 {
text-align: center ;
font-family: 'Courier New' ;
}
footer {
text-align: center ;
clear: both ;
}
/* 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% ;
}
|