blob: d35276b83d51f124e5b6a499d70b4f13bcc4cab5 (
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
27
28
|
{-# LANGUAGE OverloadedStrings #-}
module Design.LoggedIn
( loggedInDesign
) where
import Clay
import Design.LoggedIn.Add
import Design.LoggedIn.Expandables
import Design.LoggedIn.Table
import Design.LoggedIn.Pages
import Design.Animation.Opacity
loggedInDesign :: Css
loggedInDesign =
".loggedIn" ? do
opacityAnimation
addDesign
expandablesDesign
tableDesign
pagesDesign
|