concentric-css.mjs 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. export const properties = [
  2. "all",
  3. "display",
  4. "position",
  5. "top",
  6. "right",
  7. "bottom",
  8. "left",
  9. "offset",
  10. "offset-anchor",
  11. "offset-distance",
  12. "offset-path",
  13. "offset-rotate",
  14. "grid",
  15. "grid-template-rows",
  16. "grid-template-columns",
  17. "grid-template-areas",
  18. "grid-auto-rows",
  19. "grid-auto-columns",
  20. "grid-auto-flow",
  21. "column-gap",
  22. "row-gap",
  23. "grid-area",
  24. "grid-row",
  25. "grid-row-start",
  26. "grid-row-end",
  27. "grid-column",
  28. "grid-column-start",
  29. "grid-column-end",
  30. "grid-template",
  31. "flex",
  32. "flex-grow",
  33. "flex-shrink",
  34. "flex-basis",
  35. "flex-direction",
  36. "flex-flow",
  37. "flex-wrap",
  38. "box-decoration-break",
  39. "place-content",
  40. "align-content",
  41. "justify-content",
  42. "place-items",
  43. "align-items",
  44. "justify-items",
  45. "place-self",
  46. "align-self",
  47. "justify-self",
  48. "vertical-align",
  49. "order",
  50. "float",
  51. "clear",
  52. "shape-margin",
  53. "shape-outside",
  54. "shape-image-threshold",
  55. "orphans",
  56. "gap",
  57. "columns",
  58. "column-fill",
  59. "column-rule",
  60. "column-rule-width",
  61. "column-rule-style",
  62. "column-rule-color",
  63. "column-width",
  64. "column-span",
  65. "column-count",
  66. "break-before",
  67. "break-after",
  68. "break-inside",
  69. "page",
  70. "page-break-before",
  71. "page-break-after",
  72. "page-break-inside",
  73. "transform",
  74. "transform-box",
  75. "transform-origin",
  76. "transform-style",
  77. "translate",
  78. "rotate",
  79. "scale",
  80. "perspective",
  81. "perspective-origin",
  82. "appearance",
  83. "visibility",
  84. "content-visibility",
  85. "opacity",
  86. "z-index",
  87. "paint-order",
  88. "mix-blend-mode",
  89. "backface-visibility",
  90. "backdrop-filter",
  91. "clip-path",
  92. "mask",
  93. "mask-border",
  94. "mask-border-outset",
  95. "mask-border-repeat",
  96. "mask-border-slice",
  97. "mask-border-source",
  98. "mask-border-width",
  99. "mask-image",
  100. "mask-mode",
  101. "mask-position",
  102. "mask-size",
  103. "mask-repeat",
  104. "mask-origin",
  105. "mask-clip",
  106. "mask-composite",
  107. "mask-type",
  108. "filter",
  109. "animation",
  110. "animation-duration",
  111. "animation-timing-function",
  112. "animation-delay",
  113. "animation-iteration-count",
  114. "animation-direction",
  115. "animation-fill-mode",
  116. "animation-play-state",
  117. "animation-name",
  118. "transition",
  119. "transition-delay",
  120. "transition-duration",
  121. "transition-property",
  122. "transition-timing-function",
  123. "will-change",
  124. "counter-increment",
  125. "counter-reset",
  126. "counter-set",
  127. "cursor",
  128. "box-sizing",
  129. "contain",
  130. "contain-intrinsic-height",
  131. "contain-intrinsic-size",
  132. "contain-intrinsic-width",
  133. "container",
  134. "container-name",
  135. "container-type",
  136. "margin",
  137. "margin-top",
  138. "margin-right",
  139. "margin-bottom",
  140. "margin-left",
  141. "margin-inline",
  142. "margin-inline-start",
  143. "margin-inline-end",
  144. "margin-block",
  145. "margin-block-start",
  146. "margin-block-end",
  147. "inset",
  148. "inset-block",
  149. "inset-block-end",
  150. "inset-block-start",
  151. "inset-inline",
  152. "inset-inline-end",
  153. "inset-inline-start",
  154. "outline",
  155. "outline-color",
  156. "outline-style",
  157. "outline-width",
  158. "outline-offset",
  159. "box-shadow",
  160. "border",
  161. "border-top",
  162. "border-right",
  163. "border-bottom",
  164. "border-left",
  165. "border-width",
  166. "border-top-width",
  167. "border-right-width",
  168. "border-bottom-width",
  169. "border-left-width",
  170. "border-style",
  171. "border-top-style",
  172. "border-right-style",
  173. "border-bottom-style",
  174. "border-left-style",
  175. "border-color",
  176. "border-top-color",
  177. "border-right-color",
  178. "border-bottom-color",
  179. "border-left-color",
  180. "border-radius",
  181. "border-top-right-radius",
  182. "border-top-left-radius",
  183. "border-bottom-right-radius",
  184. "border-bottom-left-radius",
  185. "border-inline",
  186. "border-inline-width",
  187. "border-inline-style",
  188. "border-inline-color",
  189. "border-inline-start",
  190. "border-inline-start-width",
  191. "border-inline-start-style",
  192. "border-inline-start-color",
  193. "border-inline-end",
  194. "border-inline-end-width",
  195. "border-inline-end-style",
  196. "border-inline-end-color",
  197. "border-block",
  198. "border-block-width",
  199. "border-block-style",
  200. "border-block-color",
  201. "border-block-start",
  202. "border-block-start-width",
  203. "border-block-start-style",
  204. "border-block-start-color",
  205. "border-block-end",
  206. "border-block-end-width",
  207. "border-block-end-style",
  208. "border-block-end-color",
  209. "border-image",
  210. "border-image-source",
  211. "border-image-slice",
  212. "border-image-width",
  213. "border-image-outset",
  214. "border-image-repeat",
  215. "border-collapse",
  216. "border-spacing",
  217. "border-start-start-radius",
  218. "border-start-end-radius",
  219. "border-end-start-radius",
  220. "border-end-end-radius",
  221. "background",
  222. "background-image",
  223. "background-position",
  224. "background-size",
  225. "background-repeat",
  226. "background-origin",
  227. "background-clip",
  228. "background-attachment",
  229. "background-color",
  230. "background-blend-mode",
  231. "background-position-x",
  232. "background-position-y",
  233. "isolation",
  234. "padding",
  235. "padding-top",
  236. "padding-right",
  237. "padding-bottom",
  238. "padding-left",
  239. "padding-inline",
  240. "padding-inline-start",
  241. "padding-inline-end",
  242. "padding-block",
  243. "padding-block-start",
  244. "padding-block-end",
  245. "image-orientation",
  246. "image-rendering",
  247. "aspect-ratio",
  248. "width",
  249. "min-width",
  250. "max-width",
  251. "height",
  252. "min-height",
  253. "max-height",
  254. "-webkit-line-clamp",
  255. "-webkit-text-fill-color",
  256. "-webkit-text-stroke",
  257. "-webkit-text-stroke-color",
  258. "-webkit-text-stroke-width",
  259. "inline-size",
  260. "min-inline-size",
  261. "max-inline-size",
  262. "block-size",
  263. "min-block-size",
  264. "max-block-size",
  265. "table-layout",
  266. "caption-side",
  267. "empty-cells",
  268. "overflow",
  269. "overflow-anchor",
  270. "overflow-block",
  271. "overflow-clip-margin",
  272. "overflow-inline",
  273. "overflow-x",
  274. "overflow-y",
  275. "overscroll-behavior",
  276. "overscroll-behavior-block",
  277. "overscroll-behavior-inline",
  278. "overscroll-behavior-x",
  279. "overscroll-behavior-y",
  280. "resize",
  281. "object-fit",
  282. "object-position",
  283. "scroll-behavior",
  284. "scroll-margin",
  285. "scroll-margin-block",
  286. "scroll-margin-block-end",
  287. "scroll-margin-block-start",
  288. "scroll-margin-bottom",
  289. "scroll-margin-inline",
  290. "scroll-margin-inline-end",
  291. "scroll-margin-inline-start",
  292. "scroll-margin-left",
  293. "scroll-margin-right",
  294. "scroll-margin-top",
  295. "scroll-padding",
  296. "scroll-padding-block",
  297. "scroll-padding-block-end",
  298. "scroll-padding-block-start",
  299. "scroll-padding-bottom",
  300. "scroll-padding-inline",
  301. "scroll-padding-inline-end",
  302. "scroll-padding-inline-start",
  303. "scroll-padding-left",
  304. "scroll-padding-right",
  305. "scroll-padding-top",
  306. "scroll-snap-align",
  307. "scroll-snap-stop",
  308. "scroll-snap-type",
  309. "scrollbar-color",
  310. "scrollbar-gutter",
  311. "scrollbar-width",
  312. "touch-action",
  313. "pointer-events",
  314. "content",
  315. "quotes",
  316. "hanging-punctuation",
  317. "color",
  318. "accent-color",
  319. "print-color-adjust",
  320. "forced-color-adjust",
  321. "color-scheme",
  322. "caret-color",
  323. "font",
  324. "font-style",
  325. "font-variant",
  326. "font-weight",
  327. "font-stretch",
  328. "font-size",
  329. "size-adjust",
  330. "line-height",
  331. "src",
  332. "font-family",
  333. "font-display",
  334. "font-kerning",
  335. "font-language-override",
  336. "font-optical-sizing",
  337. "font-palette",
  338. "font-size-adjust",
  339. "font-synthesis",
  340. "font-variant-alternates",
  341. "font-variant-caps",
  342. "font-variant-east-asian",
  343. "font-variant-emoji",
  344. "font-variant-ligatures",
  345. "font-variant-numeric",
  346. "font-variant-position",
  347. "font-variation-settings",
  348. "ascent-override",
  349. "descent-override",
  350. "line-gap-override",
  351. "hyphens",
  352. "hyphenate-character",
  353. "letter-spacing",
  354. "line-break",
  355. "list-style",
  356. "list-style-type",
  357. "list-style-image",
  358. "list-style-position",
  359. "writing-mode",
  360. "direction",
  361. "unicode-bidi",
  362. "unicode-range",
  363. "user-select",
  364. "ruby-position",
  365. "text-combine-upright",
  366. "text-align",
  367. "text-align-last",
  368. "text-decoration",
  369. "text-decoration-line",
  370. "text-decoration-style",
  371. "text-decoration-color",
  372. "text-decoration-thickness",
  373. "text-decoration-skip-ink",
  374. "text-emphasis",
  375. "text-emphasis-style",
  376. "text-emphasis-color",
  377. "text-emphasis-position",
  378. "text-indent",
  379. "text-justify",
  380. "text-underline-position",
  381. "text-underline-offset",
  382. "text-orientation",
  383. "text-overflow",
  384. "text-rendering",
  385. "text-shadow",
  386. "text-transform",
  387. "white-space",
  388. "word-break",
  389. "word-spacing",
  390. "overflow-wrap",
  391. "tab-size",
  392. "widows"
  393. ]