More properties

This commit is contained in:
2020-03-21 19:24:07 +01:00
parent c40616e691
commit 7a92e53006
14 changed files with 287 additions and 36 deletions

View File

@@ -0,0 +1,14 @@
package nl.astraeus.css.properties
class OutlineWidth(
value: String
) : CssProperty(value) {
companion object {
fun thin() = OutlineWidth("thin")
fun medium() = OutlineWidth("medium")
fun thick() = OutlineWidth("thick")
fun initial() = BorderWidth("initial")
fun inherit() = BorderWidth("inherit")
}
}