diff options
author | Joris | 2016-06-03 20:27:16 +0200 |
---|---|---|
committer | Joris | 2016-06-03 20:27:16 +0200 |
commit | 8e3a7bf1cb83bbb6e3dcd54308eefa52a29cd679 (patch) | |
tree | d6ba0985a534a0e2e317b1edb0d4c999119d87ff /src/server/Design/Header.hs | |
parent | 3a88115d118f8256f3ff034dc359df42a9e4051c (diff) |
Migrate to elm 0.17
Diffstat (limited to 'src/server/Design/Header.hs')
-rw-r--r-- | src/server/Design/Header.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/Design/Header.hs b/src/server/Design/Header.hs index 94334c6..6f0f48e 100644 --- a/src/server/Design/Header.hs +++ b/src/server/Design/Header.hs @@ -20,7 +20,7 @@ design = do lineHeightMedia marginBottom blockMarginBottom position relative - backgroundColor Color.red + backgroundColor Color.chestnutRose color Color.white ".title" <> ".item" ? headerPadding @@ -38,11 +38,11 @@ design = do ".item" ? do display inlineBlock transition "background-color" (ms 50) easeIn (sec 0) - ".current" & backgroundColor (Color.red -. 20) + ".current" & backgroundColor (Color.chestnutRose -. 20) Media.mobile $ fontSize (px 13) - (".item" # hover) <> (".item" # focus) ? backgroundColor (Color.red +. 10) - (".item.current" # hover) <> (".item.current" # focus) ? backgroundColor (Color.red -. 10) + (".item" # hover) <> (".item" # focus) ? backgroundColor (Color.chestnutRose +. 10) + (".item.current" # hover) <> (".item.current" # focus) ? backgroundColor (Color.chestnutRose -. 10) ".nameSignOut" ? do display flex |