14 lines
242 B
Kotlin
14 lines
242 B
Kotlin
package nl.astraeus.css.properties
|
|
|
|
class Perspective(
|
|
value: String
|
|
) : CssProperty(value) {
|
|
|
|
companion object {
|
|
val none = Perspective("none")
|
|
val initial = Perspective("initial")
|
|
val inherit = Perspective("inherit")
|
|
}
|
|
|
|
}
|