clay-0.9: src/Clay/List.hs
{-# LANGUAGE OverloadedStrings, GeneralizedNewtypeDeriving #-}
module Clay.List
( ListStyleType
, listStyleType
, disc
, decimal
, hiragana
)
where
import Clay.Common
import Clay.Property
import Clay.Stylesheet
newtype ListStyleType = ListStyleType Value
deriving (Val, Initial, Inherit, None, Other)
disc, decimal, hiragana :: ListStyleType
disc = ListStyleType "disc"
decimal = ListStyleType "decimal"
hiragana = ListStyleType "hiragana"
listStyleType :: ListStyleType -> Css
listStyleType = key "list-style-type"