-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhercules2.css
194 lines (166 loc) · 3.85 KB
/
hercules2.css
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*
Following CSS ensures a consistent presentation of a non-scrollable
header at the top of the page, with the header including a link
back to the home page and containing the H1 and H2 tags for the
page.
Content following the header scrolls in the expected manner.
*/
#header {
background-color: #FFFFCC;
position: fixed;
width: 100%;
top: 0;
z-index: 10;
}
#content {
margin-top: 100px;
z-index: 1;
}
/* Ensure #heading id navigation positions the heading below the 100px fixed logo */
h3.skiplogo::before,
h4.skiplogo::before,
h5.skiplogo::before,
h6.skiplogo::before {
display: block;
content: " ";
margin-top: -100px;
height: 100px;
visibility: hidden;
}
table.hdr {
border: none;
width: 1024;
}
td.hdrlogo {
padding: 5px 0px 0px 0px;
border: none;
width: 70px;
}
td.hdr {
padding: 5px 0px 0px 0px;
border: none;
}
img.hdrlogo {
height: 62px;
width: 62px;
}
h1.hdr, h2.hdr {
margin: 0 0 0 0;
}
/* End of CSS styles to support a fixed logo/header at the top. */
body {
font-family: Arial;
color: black;
background-color: #FFFFCC;
}
h1, h2, h3, h4, h5, h6 {
font-family: Arial;
font-weight: bold;
font-style: rounded;
}
h1 {
color: blue;
}
h2 {
color: red;
font-style: italic;
}
p, li, dt, dd, td, th {
color: black;
font-family: Arial;
}
p.lastupd {
font-family: Arial;
font-size: 80%;
}
p.note {
background-color: #FFFFAA;
padding: 20px;
border-width: 1px;
border-style: solid;
border-color: black;
}
p.warning {
color: red;
background-color: #FFFFAA;
font-style: italic;
font-weight: bold;
padding: 20px;
border-width: 2px;
border-style: solid;
border-color: black;
}
pre, code {
font-family: Courier;
}
pre.jcl {
margin-right: 4%;
margin-left: 4%;
background-color: #FFFFAA;
font-family: LetterGothic, Monospace;
color: black;
font-weight: normal;
padding: 10px;
border-width: 1px;
border-style: solid;
}
pre.report {
margin-right: 4%;
margin-left: 4%;
background-color: #CCFFFF;
font-family: LetterGothic, Monospace;
color: black;
font-weight: normal;
padding: 10px;
border-width: 1px;
border-style: solid;
}
pre.screen80 {
margin-right: 4%;
margin-left: 4%;
background-color: #000000;
font-family: Terminal, Monospace;
color: silver;
font-weight: normal;
padding: 10px;
border-width: 6px;
border-style: ridge;
border-color: light-gray;
}
/* Messages and codes: Message text */
dl.messages dt {
padding: 5px;
border-style: solid none none none;
border-width: 1px;
margin-top: 1.5em;
}
/* Messages and codes: Message text */
dl.messages dt code, dl.messages dt pre, dl.messages dt tt {
font-family: Arial;
font-style: italic;
font-weight: bold;
font-size: 100%;
}
/* Messages and codes: Variable items in message text */
dl.messages dt code em, dl.messages dt pre em, dl.messages dt tt i {
font-family: Arial;
font-style: italic;
font-weight: normal;
font-size: 100%;
}
/* Messages and codes: Subheadings in message description */
dl.messages dd dt {
font-family: Arial;
font-style: italic;
font-weight: bold;
padding: 2px;
border-style: none;
margin-top: 0;
}
/* Messages and codes: Reference to variable items in message description */
dl.messages dd dd code em, dl.messages dd dd tt i {
font-family: Arial;
font-style: italic;
font-weight: normal;
font-size: 100%;
}