-
Notifications
You must be signed in to change notification settings - Fork 4
/
order.coffee
144 lines (143 loc) · 2.48 KB
/
order.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
order = [
'content'
'display'
'align-content'
'align-items'
'align-self'
'justify-content'
'justify-items'
'justify-self'
'flex'
'flex-basis'
'flex-direction'
'flex-flow'
'flex-grow'
'flex-shrink'
'flex-wrap'
'animation'
'animation-delay'
'animation-direction'
'animation-duration'
'animation-fill-mode'
'animation-iteration-count'
'animation-name'
'animation-play-state'
'animation-timing-function'
'box-sizing'
'position'
'top'
'bottom'
'left'
'right'
'font'
'font-family'
'font-kerning'
'font-size'
'font-size-adjust'
'font-stretch'
'font-style'
'font-synthesis'
'font-weight'
'background'
'background-attachment'
'background-clip'
'background-color'
'background-image'
'background-origin'
'background-position'
'background-repeat'
'background-size'
'box-shadow'
'color'
'cursor'
'padding'
'padding-top'
'padding-bottom'
'padding-left'
'padding-right'
'margin'
'margin-top'
'margin-bottom'
'margin-left'
'margin-right'
'border'
'border-width'
'border-color'
'border-style'
'border-spacing'
'border-top'
'border-top-color'
'border-top-style'
'border-top-width'
'border-bottom'
'border-bottom-color'
'border-bottom-style'
'border-bottom-width'
'border-left'
'border-left-color'
'border-left-style'
'border-left-width'
'border-right'
'border-right-color'
'border-right-style'
'border-right-width'
'border-radius'
'border-top-left-radius'
'border-top-right-radius'
'border-bottom-left-radius'
'border-bottom-right-radius'
'border-image'
'border-image-outset'
'border-image-repeat'
'border-image-slice'
'border-image-source'
'border-image-width'
'clear'
'filter'
'float'
'hyphens'
'letter-spacing'
'line-height'
'object-fit'
'object-position'
'opacity'
'outline'
'outline-color'
'outline-offset'
'outline-style'
'outline-width'
'overflow'
'overflow-x'
'overflow-y'
'text-align'
'width'
'height'
'max-width'
'max-height'
'min-width'
'min-height'
'transform'
'transition'
'transition-delay'
'transition-duration'
'transition-property'
'transition-timing-function'
'text-decoration'
'text-decoration-color'
'text-decoration-line'
'text-decoration-style'
'text-justify'
'text-overflow'
'text-shadow'
'text-transform'
'text-wrap'
'vertical-align'
'visibility'
'white-space'
'will-change'
'word-break'
'word-spacing'
'word-wrap'
'z-index'
]
module.exports = order