nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
.transform (@v) {
    -webkit-transform: @v;
    transform: @v;
}
.transform-origin (@v) {
    -webkit-transform-origin: @v;
    transform-origin: @v;
}
.transform-style (@v) {
    -webkit-transform-style: @v;
// not supported in IE10
}
.transition-property (@v) {
    -webkit-transition-property: @v;
    transition-property: @v;
}
.transition-property-2 (@v1, @v2) {
    -webkit-transition-property: @v1, @v2;
    transition-property: @v1, @v2;
}
.transition-property-transform () {
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
}
.transition-duration (@v) {
    -webkit-transition-duration: @v;
    transition-duration: @v;
}
.transition-delay (@v) {
    -webkit-transition-delay: @v;
    transition-delay: @v;
}
.transition-timing-function (@v) {
    -webkit-transition-timing-function: @v;
    transition-timing-function: @v;
}
.animation-name (@v) {
    -webkit-animation-name: @v;
    animation-name: @v;
}
.animation-duration (@v) {
    -webkit-animation-duration: @v;
    animation-duration: @v;
}
.animation-timing-function (@v) {
    -webkit-animation-timing-function: @v;
    animation-timing-function: @v;
}
.animation-iteration-count (@v) {
    -webkit-animation-iteration-count: @v;
    animation-iteration-count: @v;
}
.box-shadow (@v) {
    -webkit-box-shadow: @v;
    box-shadow: @v;
}
.box-sizing (@v) {
    -webkit-box-sizing: @v;
    box-sizing: @v;
}
.appearance (@v) {
    -webkit-appearance: @v;
}
.tap-highlight-color (@v) {
    -webkit-tap-highlight-color: @v;
}
.text-size-adjust (@v) {
    -webkit-text-size-adjust: @v;
}
.user-select (@v) {
    -webkit-user-select: @v;
    -ms-user-select: @v;
}
 
.background-image-linear-gradient-top-bottom (@from, @to) {
    background-image: -webkit-gradient(linear, left top, left bottom, from(@from), to(@to));
    background-image: linear-gradient(to bottom, @from 0%, @to 100%);
}
.background-linear-gradient-top-bottom (@from, @to) {
    background: -webkit-gradient(linear, left top, left bottom, from(@from), to(@to));
    background: linear-gradient(to bottom, @from 0%, @to 100%);
}
.background-image-linear-gradient-top-bottom-2-stops (@from, @to, @pos1, @color1, @pos2, @color2) {
    background-image: -webkit-gradient(linear, left top, left bottom, from(@from), to(@to), color-stop(@pos1, @color1), color-stop(@pos2, @color2));
    background-image: linear-gradient(to bottom, @from 0%, @color1 percentage(@pos1), @color2 percentage(@pos2), @to 100%);
}
.background-linear-gradient-top-bottom-2-stops (@from, @to, @pos1, @color1, @pos2, @color2) {
    background: -webkit-gradient(linear, left top, left bottom, from(@from), to(@to), color-stop(@pos1, @color1), color-stop(@pos2, @color2));
    background: linear-gradient(to bottom, @from 0%, @color1 percentage(@pos1), @color2 percentage(@pos2), @to 100%);
}
.background-image-linear-gradient-top-bottom-1-stop (@from, @to, @pos1, @color1) {
    background-image: -webkit-gradient(linear, left top, left bottom, from(@from), to(@to), color-stop(@pos1, @color1));
    background-image: linear-gradient(to bottom, @from 0%, @color1 percentage(@pos1), @to 100%);
}
.background-image-linear-gradient-top-bottom-3-stops (@from, @to, @pos1, @color1, @pos2, @color2, @pos3, @color3) {
    background-image: -webkit-gradient(linear, left top, left bottom, from(@from), to(@to), color-stop(@pos1, @color1), color-stop(@pos2, @color2), color-stop(@pos3, @color3));
    background-image: linear-gradient(to bottom, @from 0%, @color1 percentage(@pos1), @color2 percentage(@pos2), @color3 percentage(@pos3), @to 100%);
}
.background-image-linear-gradient-top-bottom-4-stops (@from, @to, @pos1, @color1, @pos2, @color2, @pos3, @color3, @pos4, @color4) {
    background-image: -webkit-gradient(linear, left top, left bottom, from(@from), to(@to), color-stop(@pos1, @color1), color-stop(@pos2, @color2), color-stop(@pos3, @color3), color-stop(@pos4, @color4));
    background-image: linear-gradient(to bottom, @from 0%, @color1 percentage(@pos1), @color2 percentage(@pos2), @color3 percentage(@pos3), @color4 percentage(@pos4), @to 100%);
}
.background-image-linear-gradient-top-bottom-4-stops-no-from-to (@pos1, @color1, @pos2, @color2, @pos3, @color3, @pos4, @color4) {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(@pos1, @color1), color-stop(@pos2, @color2), color-stop(@pos3, @color3), color-stop(@pos4, @color4));
    background-image: linear-gradient(to bottom, @color1 percentage(@pos1), @color2 percentage(@pos2), @color3 percentage(@pos3), @color4 percentage(@pos4));
}
 
.background-image-linear-gradient-top-left-bottom-right (@from, @to) {
    background-image: -webkit-gradient(linear, left top, right bottom, from(@from), to(@to));
    background-image: linear-gradient(to right bottom, @from 0%, @to 100%);
}
.background-image-linear-gradient-top-left-bottom-right-1-stop (@from, @to, @pos1, @color1) {
    background-image: -webkit-gradient(linear, left top, right bottom, from(@from), to(@to), color-stop(@pos1, @color1));
    background-image: linear-gradient(to right bottom, @from 0%, @color1 percentage(@pos1), @to 100%);
}
.background-image-linear-gradient-top-left-bottom-right-2-stops (@from, @to, @pos1, @color1, @pos2, @color2) {
    background-image: -webkit-gradient(linear, left top, right bottom, from(@from), to(@to), color-stop(@pos1, @color1), color-stop(@pos2, @color2));
    background-image: linear-gradient(to right bottom, @from 0%, @color1 percentage(@pos1), @color2 percentage(@pos2), @to 100%);
}
.background-image-linear-gradient-top-left-bottom-right-3-stops (@from, @to, @pos1, @color1, @pos2, @color2, @pos3, @color3) {
    background-image: -webkit-gradient(linear, left top, right bottom, from(@from), to(@to), color-stop(@pos1, @color1), color-stop(@pos2, @color2), color-stop(@pos3, @color3));
    background-image: linear-gradient(to right bottom, @from 0%, @color1 percentage(@pos1), @color2 percentage(@pos2), @color3 percentage(@pos3), @to 100%);
}
 
.background-radial-gradient-center (@r, @from, @to) {
    background: -webkit-gradient(radial, center center, 0, center center, @r, from(@from), to(@to));
    background: radial-gradient(@r+0px at center, @from 0%, @to 100%);
}
 
.background-spinwheel () {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #313137), color-stop(0.05, #73747d), color-stop(0.07, #92939b), color-stop(0.09, #ababb5), color-stop(0.12, #c5c6ce), color-stop(0.16, #dfe0e4), color-stop(0.22, #f4f5f6), color-stop(0.35, #fbfcfc), color-stop(0.5, #fbfcfc), color-stop(0.61, #fbfcfc), color-stop(0.61, #b4c1c7), color-stop(0.65, #fbfcfc), color-stop(0.78, #f4f5f6), color-stop(0.84, #dfe0e4), color-stop(0.88, #c5c6ce), color-stop(0.91, #ababb5), color-stop(0.93, #92939b), color-stop(0.95, #73747d), color-stop(1, #313137));
    background: linear-gradient(to bottom, #313137 0%, #73747d 5%, #92939b 7%, #ababb5 9%, #c5c6ce 12%, #dfe0e4 16%, #f4f5f6 22%, #fbfcfc 35%, #fbfcfc 50%, #fbfcfc 61%, #b4c1c7 61%, #fbfcfc 65%, #f4f5f6 78%, #dfe0e4 84%, #c5c6ce 88%, #ababb5 91%, #92939b 93%, #73747d 95%, #313137 100%);
}
 
.background-spinwheelbar () {
    background: -webkit-gradient(linear, left top, left bottom, from(#edeef2), to(#a7adca), color-stop(0, #edeef2), color-stop(0.25, #c8cadd), color-stop(0.49, #bbbfd4), color-stop(0.51, #9fa8c6), color-stop(0.81, #a2a9c7), color-stop(0.82, #a6abc9), color-stop(1, #a7adca));
    background: linear-gradient(to bottom, #edeef2 0%, #c8cadd 25%, #bbbfd4 49%, #9fa8c6 51%, #a2a9c7 81%, #a6abc9 82%, #a7adca 100%);
}
 
 
 
.keyframes-transform-from-to-webkit(@t1, @t2) {
    from {
        -webkit-transform: @t1;
    }
    to {
        -webkit-transform: @t2;
    }
}
 
.keyframes-transform-from-to(@t1, @t2) {
    from {
        transform: @t1;
    }
    to {
        transform: @t2;
    }
}
 
.keyframes-opacity-from-to(@o1, @o2) {
    from {
        opacity: @o1;
    }
    to {
        opacity: @o2;
    }
}
 
.keyframes-transform-opacity-from-to-webkit(@t1, @o1, @t2, @o2) {
    from {
        -webkit-transform: @t1;
        opacity: @o1;
    }
    to {
        -webkit-transform: @t2;
        opacity: @o2;
    }
}
 
.keyframes-transform-opacity-from-to(@t1, @o1, @t2, @o2) {
    from {
        transform: @t1;
        opacity: @o1;
    }
    to {
        transform: @t2;
        opacity: @o2;
    }
}
 
.keyframes-transform-0-50-100-webkit(@t1, @t2, @t3) {
    0% {
        -webkit-transform: @t1;
    }
    50% {
        -webkit-transform: @t2;
    }
    100% {
        -webkit-transform: @t3;
    }
}
 
.keyframes-transform-0-50-100(@t1, @t2, @t3) {
    0% {
        transform: @t1;
    }
    50% {
        transform: @t2;
    }
    100% {
        transform: @t3;
    }
}
 
.keyframes-z-index-transform-opacity-0-50-100-webkit(@i1, @t1, @o1, @i2, @t2, @o2, @i3, @t3, @o3) {
    0% {
        z-index: @i1;
        -webkit-transform: @t1;
        opacity: @o1;
    }
    50% {
        z-index: @i2;
        -webkit-transform: @t2;
        opacity: @o2;
    }
    100% {
        z-index: @i3;
        -webkit-transform: @t3;
        opacity: @o3;
    }
}
 
.keyframes-z-index-transform-opacity-0-50-100(@i1, @t1, @o1, @i2, @t2, @o2, @i3, @t3, @o3) {
    0% {
        z-index: @i1;
        transform: @t1;
        opacity: @o1;
    }
    50% {
        z-index: @i2;
        transform: @t2;
        opacity: @o2;
    }
    100% {
        z-index: @i3;
        transform: @t3;
        opacity: @o3;
    }
}
 
.keyframes-vibrate-webkit() {
    0%{
        -webkit-transform: rotate(-2deg);
        bottom: -1px;
        left: -1px;
    }
    25% {
        -webkit-transform: rotate(1deg);
        bottom: 2px;
        left: 1px;
    }
    50% {
        -webkit-transform: rotate(-1deg);
        bottom: -2px;
        left: -1px;
    }
    75% {
        -webkit-transform: rotate(2deg);
        bottom: 2px;
        left: 1px;
    }
    100% {
        -webkit-transform: rotate(-2deg);
        bottom: -1px;
        left: -1px;
    }
}
 
.keyframes-vibrate() {
    0%{
        transform: rotate(-2deg);
        bottom: -1px;
        left: -1px;
    }
    25% {
        transform: rotate(1deg);
        bottom: 2px;
        left: 1px;
    }
    50% {
        transform: rotate(-1deg);
        bottom: -2px;
        left: -1px;
    }
    75% {
        transform: rotate(2deg);
        bottom: 2px;
        left: 1px;
    }
    100% {
        transform: rotate(-2deg);
        bottom: -1px;
        left: -1px;
    }
}