1
0
Fork 0

Move css to separate file.

This commit is contained in:
Starbeamrainbowlabs 2016-07-08 09:50:08 +01:00
parent 904d49df22
commit b05c64ce5b
2 changed files with 6 additions and 7 deletions

View File

@ -14,13 +14,7 @@
<xsl:apply-templates select="//ListingEntry" /> <xsl:apply-templates select="//ListingEntry" />
</main> </main>
<style> <link rel="stylesheet" href="/!Theme.css" />
html, body { font-size: 100%; }
body
{
font-family: sans-serif;
}
</style>
</body> </body>
</html> </html>
</xsl:template> </xsl:template>

View File

@ -0,0 +1,5 @@
html, body { font-size: 100%; }
body
{
font-family: sans-serif;
}