decioferreira / elm-zen-css / CSS.PseudoClasses

A CSS pseudo-class is a keyword added to a selector that specifies a special state of the selected element(s).

Ref.: https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-classes

Pseudo-classes

custom : String -> List CSS.Internal.Property -> CSS.Internal.Class -> CSS.Internal.Class

hover : List CSS.Internal.Property -> CSS.Internal.Class -> CSS.Internal.Class

The :hover CSS pseudo-class matches when the user interacts with an element with a pointing device, but does not necessarily activate it.

Ref.: https://developer.mozilla.org/en-US/docs/Web/CSS/:hover