Subject: | Apache::Pod::HTML and CSS |
It would be very helpful to be able to specify one, or more, CSS files to include with the HTML output.
An imagined config syntax might be...
PerlAddVar PodCSS title:media:rel:href:import
...where the result would be one more CSS listings. If import were true, a
listing would use the handy 'hide me from old browsers' hack...
<style type="text/css" title = "$css{title}" media = "$css{media}">
<!--
@import url($css{href});
-->
</style>
...otherwise, it would be the default...
<link rel="$css{link}" type="text/css" media="$css{media}" href="$css{href}" title = "$css{title}" />
All of which would enable people to define styles suitable for printing
and PDAs and other devices.