diff options
author | Joris | 2019-05-01 15:52:32 +0200 |
---|---|---|
committer | Joris | 2019-05-01 17:11:02 +0200 |
commit | 23f04635cc26e1b0553088f28553f518488a9fc8 (patch) | |
tree | 97037643bab24564046ce4aba90481e3b92a15d3 /css/Header.hs | |
parent | 0fe906ae7453aa684e998bbcc7a78b62d84f0206 (diff) |
Setup personal page with Hakyll
Diffstat (limited to 'css/Header.hs')
-rw-r--r-- | css/Header.hs | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/css/Header.hs b/css/Header.hs new file mode 100644 index 0000000..ab58b0c --- /dev/null +++ b/css/Header.hs @@ -0,0 +1,53 @@ +{-# LANGUAGE OverloadedStrings #-} + +module Header + ( style + ) where + +import Data.Monoid ((<>)) + +import Clay hiding (style) +import Clay.Display (displayTable) + +import qualified Color as Color +import qualified Media as Media + +style :: Css +style = do + + ".Header__Container" ? do + backgroundColor Color.red + color Color.white + fontSize (px 28) + display flex + + ".Header__Link" ? do + display flex + justifyContent center + alignItems center + flexGrow 1 + flexBasis (px 0) + height (em 3) + lineHeight (em 3) + textDecoration none + padding (px 0) (px 0) (px 0) (px 0) + textAlign (alignSide sideCenter) + color Color.white + textTransform capitalize + transition "background-color" (ms 500) ease (sec 0) + Media.tablet $ fontSize (em 0.8) + Media.mobile $ fontSize (em 0.6) + + (".Header__Link" # hover <> ".Header__Link" # focus <> ".Header__LinkCurrent") ? do + backgroundColor Color.red + borderBottomStyle solid + borderBottomColor (Color.red +. 40) + Media.mobile $ borderBottomWidth (px 6) + Media.tablet $ borderBottomWidth (px 8) + Media.desktop $ borderBottomWidth (px 10) + + ".Header__Icon" ? do + display flex + height (px 40) + marginRight (px 20) + Media.mobile $ display none |