1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{-# LANGUAGE OverloadedStrings #-} module Design.NotFound ( notFoundCss ) where import Clay notFoundCss :: Css notFoundCss = ".notFoundPage" ? do h1 ? do fontSize (px 40) fontWeight bold margin (px 20) (px 20) (px 20) (px 20) p ? margin (px 20) (px 20) (px 20) (px 20)