.titlegraphic { vertical-align: top; }
-.verbatim { color: #00008b;
+.verbatim pre { color: #00008b;
font-family: lucida typewriter, lucidatypewriter,
- monospace; }
+ monospace;
+ font-size: 90%; }
+.verbatim { margin-left: 2em; }
.grammar { background-color: #99ccff;
margin-right: 0.5in;
# initialize() is called in the main LaTeX2HTML script (which happens
# before style files are loaded).
#
-%declarations = ('preform' => '<dl><dd><pre class="verbatim"></pre></dl>',
+%declarations = ('preform' => '<div class="verbatim"><pre></pre></div>',
%declarations);
_RAW_ARG_DEFERRED_CMDS_
-$alltt_start = '<dl><dd><pre class="verbatim">';
-$alltt_end = '</pre></dl>';
+$alltt_start = '<div class="verbatim"><pre>';
+$alltt_end = '</pre></div>';
sub do_env_alltt {
local ($_) = @_;
else {
$text = '<b>Could not locate requested file <i>$fname</i>!</b>\n';
}
- return ('<dl><dd><pre class="verbatim">'
+ return ("<div class=\"verbatim\">\n<pre>"
. $text
- . "</pre>\n<div class=\"verbatiminput-footer\">\n"
+ . "</pre>\n<div class=\"footer\">\n"
. "<a href=\"$srcname.txt\" type=\"text/plain\""
. ">Download as text.</a>"
- . "\n</div>\n</dd></dl>"
+ . "\n</div></div>"
. $_);
}