diff options
Diffstat (limited to 'src/server/Design/SignIn.hs')
-rw-r--r-- | src/server/Design/SignIn.hs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/server/Design/SignIn.hs b/src/server/Design/SignIn.hs index 7aff720..92e485b 100644 --- a/src/server/Design/SignIn.hs +++ b/src/server/Design/SignIn.hs @@ -8,15 +8,20 @@ import Clay import Design.Color as C import Design.Helper -import Design.Animation.Opacity signInDesign :: Css signInDesign = ".signIn" ? do + button ? do + display block + margin (em 5) auto (em 2) auto + iconButton C.blue C.white (em 2.5) + fontSize (em 1.5) + position relative + ".result" ? do - marginTop (px 40) textAlign (alignSide sideCenter) ".success" ? color C.greenSuccess ".error" ? color C.redError |