summaryrefslogtreecommitdiff
path: root/xslt/mal-epub.xsl
blob: 8af98631d7788fb7d4c3e01ffe9a1a5448b427c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<xsl:stylesheet
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:mal="http://projectmallard.org/1.0/"
    exclude-result-prefixes="mal"
    version="1.0">

<xsl:template mode="html.header.mode" match="mal:page"/>
<xsl:template mode="html.footer.mode" match="mal:page"/>

<xsl:template mode="html.css.mode" match="mal:page">
<xsl:text>
body { background-color: </xsl:text><xsl:value-of select="$color.background"/><xsl:text>; }
div.body { border: none; }
</xsl:text>
<xsl:apply-imports/>
</xsl:template>

</xsl:stylesheet>