aboutsummaryrefslogtreecommitdiff
path: root/src/server/Design/SignIn.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/Design/SignIn.hs')
-rw-r--r--src/server/Design/SignIn.hs39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/server/Design/SignIn.hs b/src/server/Design/SignIn.hs
new file mode 100644
index 0000000..2350c54
--- /dev/null
+++ b/src/server/Design/SignIn.hs
@@ -0,0 +1,39 @@
+{-# LANGUAGE OverloadedStrings #-}
+
+module Design.SignIn
+ ( signInDesign
+ ) where
+
+import Clay
+
+import Design.Color as C
+import Design.Helper
+
+signInDesign :: Css
+signInDesign =
+
+ ".signIn" ? do
+
+ form ? do
+ let inputHeight = 50
+ width (px 500)
+ marginTop (px 100)
+ marginLeft auto
+ marginRight auto
+
+ input ? do
+ defaultInput inputHeight
+ display block
+ width (pct 100)
+ marginBottom (px 10)
+
+ button ? do
+ defaultButton C.red C.white (px inputHeight)
+ display block
+ width (pct 100)
+
+ ".result" ? do
+ marginTop (px 40)
+ textAlign (alignSide sideCenter)
+ ".success" ? color C.greenSuccess
+ ".error" ? color C.redError