diff options
author | Joris | 2019-11-03 09:22:12 +0100 |
---|---|---|
committer | Joris | 2019-11-03 09:22:12 +0100 |
commit | a267f0bb4566389342c3244d3c082dc2453f4615 (patch) | |
tree | 29e62a08293bf740340518fc9be9b181aefed588 /server/src/Design/Appearing.hs | |
parent | 227dcd4435b775d7dbc5ae5d3d81b589897253cc (diff) |
Show users in income table
Diffstat (limited to 'server/src/Design/Appearing.hs')
-rw-r--r-- | server/src/Design/Appearing.hs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/server/src/Design/Appearing.hs b/server/src/Design/Appearing.hs new file mode 100644 index 0000000..79b94b3 --- /dev/null +++ b/server/src/Design/Appearing.hs @@ -0,0 +1,25 @@ +module Design.Appearing + ( design + ) where + +import Clay + +design :: Css +design = do + + appearKeyframe + + ".g-Appearing" ? do + appearAnimation + +appearAnimation :: Css +appearAnimation = do + animationName "appear" + animationDuration (sec 0.2) + animationTimingFunction easeIn + +appearKeyframe :: Css +appearKeyframe = keyframes + "appear" + [ (0, "opacity" -: "0") + ] |