StyleSheet
open class StyleSheet(name: String? = null, val isStatic: Boolean = true, imports: List<Import> = emptyList())(source)
Represents a reusable piece of CSS code
name is the stylesheet identifier. CSS class names are generated using a combination of name and property name. If not specified, object name obtained via reflection is used instead.
If isStatic property is set to true, a static, human-readable class selector will be created for every property, making referencing from other stylesheets possible. Generated class names will be used otherwise.
imports are the URLs (relative or absolute) of CSS files that will be added to the DOM with the first use of StyleSheet.