+@font-face {
+ font-family: 'droid_serifregular';
+ src: url('DroidSerif-webfont.woff') format('woff');
+ font-weight: normal;
+ font-style: normal;
+}
+
html, body {
- font-family: "droid serif", Georgia, Gentium, Goudy, "Book Antiqua", "Linux Libertine", "Times New Roman", serif;
- text-rendering: optimizelegibility;
--moz-font-feature-settings: "liga";
- line-height: 130%;
- color: #333;
- background: #fcfbf3; }
+ font-family: "droid_serifregular", serif;
+ text-rendering: optimizelegibility;
+ -moz-font-feature-settings: "liga";
+ line-height: 130%;
+ color: #333;
+ background: #fcfbf3; }
@media all {html {font-size: 24px;}}
@media all and (max-width:1000px){html {font-size: 24px;}}
main = hakyllWith config $ do
tags <- buildTags "posts/*.markdown" (fromCapture "tags/*.html")
- match "css/*" $ do
- route idRoute
- compile compressCssCompiler
-
match ( "js/libs/*"
.||. "js/hyphenator/*"
.||. "js/hyphenator/patterns/*"
.||. "js/*"
+ .||. "css/*.woff"
.||. "downies/*"
.||. "downies/music/*"
.||. "images/*"
route idRoute
compile copyFileCompiler
+ match "css/*" $ do
+ route idRoute
+ compile compressCssCompiler
+
-- place static markdown files in site root
match ( "static/*.markdown" .||. "static/*/*.markdown" ) $ do
route $ setExtension "html"