blob: a90832e146bd9f8eb726153573fc55f2dd192e96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{-# LANGUAGE OverloadedStrings #-}
module Design.SignIn
( signInDesign
) where
import Clay
import Design.Color as C
import Design.Helper
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
".error" ? do
textAlign (alignSide sideCenter)
color C.redError
|