blob: d6b7ae61701d25d0e3937ddd34f593e6bd96d13d (
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
99
100
|
/* Copyright 2004, 2012, Matthias Andreas Benkard. */
/* MAIN STUFF */
body,html {
color: black;
background-color: #ff0000;
background-image: url(hammerandsickle-yellow-on-red.png);
background-position: 0 0;
background-repeat: no-repeat;
background-attachment: fixed;
}
a {
color: blue;
background-color: inherit;
}
a:visited {
color: navy; /* dark blue */
background-color: inherit;
}
a:active {
color: #bbbbff; /* light blue */
background-color: inherit;
}
#rtnv h3 {
font-size: 1em;
}
#stylechooser h2 {
font-size: 1em;
font-weight: bold;
}
#mainheading {
border-bottom: 0px solid none;
}
ul.bookmarx-list, ul.lafargue-list {
list-style-type: none;
}
h1 {
background-color: #ffbfbf;
background-image: url(hammerandsickle-yellow-on-red-bright.png);
background-position: 0 0;
background-repeat: no-repeat;
background-attachment: fixed;
border: solid #bbccff;
}
h2 {
background-color: #ffbfbf;
background-image: url(hammerandsickle-yellow-on-red-bright.png);
background-position: 0 0;
background-repeat: no-repeat;
background-attachment: fixed;
}
#rtnv {
font-family: sans-serif, Arial, Helvetica;
color: inherit;
background-color: #ffbfbf;
background-image: url(hammerandsickle-yellow-on-red-bright.png);
background-position: 0 0;
background-repeat: no-repeat;
background-attachment: fixed;
border: solid #bbccff;
}
.bookmark, .lafargue-message, #content {
/* border-right: 1px solid silver; */
color: inherit;
background-color: #ffbfbf;
background-image: url(hammerandsickle-yellow-on-red-bright.png);
background-position: 0 0;
background-repeat: no-repeat;
background-attachment: fixed;
border: solid #bbccff;
margin: 10px;
}
p {
text-align: justify;
}
abbr, acronym {
cursor: help;
}
hr {
color: #bbccff;
background-color: #bbccff;
height: 2px;
/* border: 1px solid silver; */
border: 0px;
}
|