aboutsummaryrefslogtreecommitdiff
path: root/src/server/Design/SignIn.hs
blob: 7aff720ce8238c8bb39b6c35ece1b58d65cca374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{-# LANGUAGE OverloadedStrings #-}

module Design.SignIn
  ( signInDesign
  ) where

import Clay

import Design.Color as C
import Design.Helper
import Design.Animation.Opacity

signInDesign :: Css
signInDesign =

  ".signIn" ? do

    ".result" ? do
      marginTop (px 40)
      textAlign (alignSide sideCenter)
      ".success" ? color C.greenSuccess
      ".error" ? color C.redError