diff options
author | Joris Guyonvarch | 2014-04-06 22:55:16 +0200 |
---|---|---|
committer | Joris | 2019-05-01 15:34:22 +0200 |
commit | 0fe906ae7453aa684e998bbcc7a78b62d84f0206 (patch) | |
tree | d3968af830b964193349187fb6fc583780cd0ce3 /src/Design/Global.hs | |
parent | 8b11c4be2b3ac354fa14534662dbd92374617a3e (diff) |
Show resume and projects from a configuration file
Diffstat (limited to 'src/Design/Global.hs')
-rw-r--r-- | src/Design/Global.hs | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/Design/Global.hs b/src/Design/Global.hs new file mode 100644 index 0000000..379d612 --- /dev/null +++ b/src/Design/Global.hs @@ -0,0 +1,66 @@ +{-# LANGUAGE OverloadedStrings #-} + +module Design.Global + ( compactDesign + ) where + +import qualified Data.Text.Lazy as T +import Data.Monoid ((<>)) + +import Clay + +import qualified Design.Color as Color +import qualified Design.Media as Media +import Design.Header (headerCss) +import Design.Resume (resumeCss) +import Design.Projects (projectsCss) +import Design.NotFound (notFoundCss) + +compactDesign :: T.Text +compactDesign = renderWith compact [] $ global + +global :: Css +global = + body ? do + color Color.black + marginBottom (px 40) + Media.mobile $ fontSize (px 16) + Media.tabletDesktop $ fontSize (px 18) + + h1 ? do + fontFamily [] [monospace] + fontWeight bold + color Color.red + + Media.mobile $ do + lineHeight (px 30) + fontSize (px 22) + marginBottom (px 20) + marginTop (px 35) + + Media.tablet $ do + lineHeight (px 40) + fontSize (px 27) + marginBottom (px 35) + marginTop (px 45) + + Media.desktop $ do + lineHeight (px 50) + fontSize (px 30) + marginBottom (px 40) + marginTop (px 55) + + a ? do + textDecoration none + color Color.link + transition "color" (sec 0.3) easeOut (sec 0) + focus & outline solid (px 0) Color.white + + (a # hover) <> (a # focus) ? do + textDecoration underline + color Color.blue + + headerCss + resumeCss + projectsCss + notFoundCss |