package css
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
trait
CssBase extends AnyRef
Base trait for all stylesheets.
Base trait for all stylesheets.
Example:
object ExampleStylesheet extends CssBase { import dsl._ val s = style(...) }
- case class CssFontFace(className: String, font: FontFace[Option[String]]) extends CssStyle with Product with Serializable
- case class CssKeyframes(className: String, steps: Seq[(Double, StyleS)]) extends CssStyle with Product with Serializable
- case class CssPrefixedStyleName(prefixClass: String, actualClassSuffix: String) extends CssStyle with Product with Serializable
-
sealed
trait
CssStyle extends AnyRef
Representation of stylesheet elements.
Representation of stylesheet elements. In JS it's always
CssStyleName
. - case class CssStyleImpl(className: String, impl: StyleS) extends CssStyle with Product with Serializable
- case class CssStyleName(className: String) extends CssStyle with Product with Serializable