@ebolax/animated-icons 1.0.24 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/animated-icons.bundle.min.css +1 -1
- package/dist/animated-icons.css +258 -212
- package/dist/animated-icons.min.css +1 -1
- package/dist/icons.json +194 -194
- package/package.json +1 -1
package/dist/animated-icons.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* Animated Icons CSS */
|
|
2
|
-
.aic {
|
|
2
|
+
i.aic {
|
|
3
3
|
--aic-size: 1em;
|
|
4
4
|
--aic-duration: 600ms;
|
|
5
5
|
--aic-ease: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
color: inherit;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.aic::before {
|
|
16
|
+
i.aic::before {
|
|
17
17
|
content: "";
|
|
18
18
|
display: block;
|
|
19
19
|
width: 100%;
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
will-change: transform, opacity;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
.aic:hover::before,
|
|
35
|
-
.aic:focus-visible::before,
|
|
36
|
-
.aic-wrapper:hover .aic::before,
|
|
37
|
-
.aic-wrapper:focus-visible .aic::before,
|
|
38
|
-
.aic-wrapper:focus-within .aic::before {
|
|
34
|
+
i.aic:hover::before,
|
|
35
|
+
i.aic:focus-visible::before,
|
|
36
|
+
.aic-wrapper:hover i.aic::before,
|
|
37
|
+
.aic-wrapper:focus-visible i.aic::before,
|
|
38
|
+
.aic-wrapper:focus-within i.aic::before {
|
|
39
39
|
animation-name: var(--aic-animation);
|
|
40
40
|
animation-duration: var(--aic-duration);
|
|
41
41
|
animation-timing-function: var(--aic-ease);
|
|
@@ -99,11 +99,11 @@
|
|
|
99
99
|
/* fade */
|
|
100
100
|
@keyframes aic-fade {
|
|
101
101
|
0% {
|
|
102
|
-
opacity:
|
|
102
|
+
opacity: 1;
|
|
103
103
|
transform: scale(0.92);
|
|
104
104
|
}
|
|
105
|
-
|
|
106
|
-
opacity:
|
|
105
|
+
50% {
|
|
106
|
+
opacity: 0.3;
|
|
107
107
|
transform: scale(1.04);
|
|
108
108
|
}
|
|
109
109
|
100% {
|
|
@@ -112,6 +112,26 @@
|
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
+
/* flip-3d — 3D flip on Y axis */
|
|
116
|
+
@keyframes aic-flip-3d {
|
|
117
|
+
0% {
|
|
118
|
+
transform: perspective(120px) rotateY(0deg);
|
|
119
|
+
}
|
|
120
|
+
100% {
|
|
121
|
+
transform: perspective(120px) rotateY(360deg);
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/* flip-in-3d — 3D flip from back to front */
|
|
126
|
+
@keyframes aic-flip-in-3d {
|
|
127
|
+
0% {
|
|
128
|
+
transform: perspective(120px) rotateX(0deg);
|
|
129
|
+
}
|
|
130
|
+
100% {
|
|
131
|
+
transform: perspective(120px) rotateX(360deg);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
115
135
|
/* gear */
|
|
116
136
|
@keyframes aic-gear {
|
|
117
137
|
0% {
|
|
@@ -232,13 +252,27 @@
|
|
|
232
252
|
}
|
|
233
253
|
}
|
|
234
254
|
|
|
255
|
+
/* orbit-3d — Orbit-like subtle 3D rotation */
|
|
256
|
+
@keyframes aic-orbit-3d {
|
|
257
|
+
0%,
|
|
258
|
+
100% {
|
|
259
|
+
transform: perspective(160px) rotateY(0deg) rotateX(0deg);
|
|
260
|
+
}
|
|
261
|
+
33% {
|
|
262
|
+
transform: perspective(160px) rotateY(45deg) rotateX(-45deg);
|
|
263
|
+
}
|
|
264
|
+
66% {
|
|
265
|
+
transform: perspective(160px) rotateY(45deg) rotateX(45deg);
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
235
269
|
/* page-turn */
|
|
236
270
|
@keyframes aic-page-turn {
|
|
237
271
|
0% {
|
|
238
272
|
transform: perspective(80px) rotateY(0deg);
|
|
239
273
|
}
|
|
240
274
|
40% {
|
|
241
|
-
transform: perspective(80px) rotateY(-
|
|
275
|
+
transform: perspective(80px) rotateY(-30deg);
|
|
242
276
|
}
|
|
243
277
|
75% {
|
|
244
278
|
transform: perspective(80px) rotateY(4deg);
|
|
@@ -251,11 +285,15 @@
|
|
|
251
285
|
/* pulse-element */
|
|
252
286
|
@keyframes aic-pulse-element {
|
|
253
287
|
0%,
|
|
288
|
+
50%,
|
|
254
289
|
100% {
|
|
255
290
|
opacity: 1;
|
|
256
291
|
}
|
|
257
|
-
|
|
258
|
-
opacity: 0.
|
|
292
|
+
25% {
|
|
293
|
+
opacity: 0.5;
|
|
294
|
+
}
|
|
295
|
+
75% {
|
|
296
|
+
opacity: 0.5;
|
|
259
297
|
}
|
|
260
298
|
}
|
|
261
299
|
|
|
@@ -745,13 +783,13 @@
|
|
|
745
783
|
|
|
746
784
|
.aic.aic-hero-s-bolt {
|
|
747
785
|
--aic-icon: url("./aic-icons/hero-s-bolt.svg");
|
|
748
|
-
--aic-animation: aic-
|
|
786
|
+
--aic-animation: aic-flip-3d;
|
|
749
787
|
--aic-origin: center;
|
|
750
788
|
}
|
|
751
789
|
|
|
752
790
|
.aic.aic-hero-s-bolt-slash {
|
|
753
791
|
--aic-icon: url("./aic-icons/hero-s-bolt-slash.svg");
|
|
754
|
-
--aic-animation: aic-
|
|
792
|
+
--aic-animation: aic-flip-3d;
|
|
755
793
|
--aic-origin: center;
|
|
756
794
|
}
|
|
757
795
|
|
|
@@ -871,43 +909,43 @@
|
|
|
871
909
|
|
|
872
910
|
.aic.aic-hero-s-chat-bubble-bottom-center {
|
|
873
911
|
--aic-icon: url("./aic-icons/hero-s-chat-bubble-bottom-center.svg");
|
|
874
|
-
--aic-animation: aic-
|
|
912
|
+
--aic-animation: aic-orbit-3d;
|
|
875
913
|
--aic-origin: center;
|
|
876
914
|
}
|
|
877
915
|
|
|
878
916
|
.aic.aic-hero-s-chat-bubble-bottom-center-text {
|
|
879
917
|
--aic-icon: url("./aic-icons/hero-s-chat-bubble-bottom-center-text.svg");
|
|
880
|
-
--aic-animation: aic-
|
|
918
|
+
--aic-animation: aic-orbit-3d;
|
|
881
919
|
--aic-origin: center;
|
|
882
920
|
}
|
|
883
921
|
|
|
884
922
|
.aic.aic-hero-s-chat-bubble-left {
|
|
885
923
|
--aic-icon: url("./aic-icons/hero-s-chat-bubble-left.svg");
|
|
886
|
-
--aic-animation: aic-
|
|
924
|
+
--aic-animation: aic-orbit-3d;
|
|
887
925
|
--aic-origin: center;
|
|
888
926
|
}
|
|
889
927
|
|
|
890
928
|
.aic.aic-hero-s-chat-bubble-left-ellipsis {
|
|
891
929
|
--aic-icon: url("./aic-icons/hero-s-chat-bubble-left-ellipsis.svg");
|
|
892
|
-
--aic-animation: aic-
|
|
930
|
+
--aic-animation: aic-orbit-3d;
|
|
893
931
|
--aic-origin: center;
|
|
894
932
|
}
|
|
895
933
|
|
|
896
934
|
.aic.aic-hero-s-chat-bubble-left-right {
|
|
897
935
|
--aic-icon: url("./aic-icons/hero-s-chat-bubble-left-right.svg");
|
|
898
|
-
--aic-animation: aic-
|
|
936
|
+
--aic-animation: aic-orbit-3d;
|
|
899
937
|
--aic-origin: center;
|
|
900
938
|
}
|
|
901
939
|
|
|
902
940
|
.aic.aic-hero-s-chat-bubble-oval-left {
|
|
903
941
|
--aic-icon: url("./aic-icons/hero-s-chat-bubble-oval-left.svg");
|
|
904
|
-
--aic-animation: aic-
|
|
942
|
+
--aic-animation: aic-orbit-3d;
|
|
905
943
|
--aic-origin: center;
|
|
906
944
|
}
|
|
907
945
|
|
|
908
946
|
.aic.aic-hero-s-chat-bubble-oval-left-ellipsis {
|
|
909
947
|
--aic-icon: url("./aic-icons/hero-s-chat-bubble-oval-left-ellipsis.svg");
|
|
910
|
-
--aic-animation: aic-
|
|
948
|
+
--aic-animation: aic-orbit-3d;
|
|
911
949
|
--aic-origin: center;
|
|
912
950
|
}
|
|
913
951
|
|
|
@@ -1300,31 +1338,31 @@
|
|
|
1300
1338
|
|
|
1301
1339
|
.aic.aic-hero-s-eye {
|
|
1302
1340
|
--aic-icon: url("./aic-icons/hero-s-eye.svg");
|
|
1303
|
-
--aic-animation: aic-
|
|
1341
|
+
--aic-animation: aic-orbit-3d;
|
|
1304
1342
|
--aic-origin: center;
|
|
1305
1343
|
}
|
|
1306
1344
|
|
|
1307
1345
|
.aic.aic-hero-s-eye-dropper {
|
|
1308
1346
|
--aic-icon: url("./aic-icons/hero-s-eye-dropper.svg");
|
|
1309
|
-
--aic-animation: aic-
|
|
1347
|
+
--aic-animation: aic-orbit-3d;
|
|
1310
1348
|
--aic-origin: center;
|
|
1311
1349
|
}
|
|
1312
1350
|
|
|
1313
1351
|
.aic.aic-hero-s-eye-slash {
|
|
1314
1352
|
--aic-icon: url("./aic-icons/hero-s-eye-slash.svg");
|
|
1315
|
-
--aic-animation: aic-
|
|
1353
|
+
--aic-animation: aic-orbit-3d;
|
|
1316
1354
|
--aic-origin: center;
|
|
1317
1355
|
}
|
|
1318
1356
|
|
|
1319
1357
|
.aic.aic-hero-s-face-frown {
|
|
1320
1358
|
--aic-icon: url("./aic-icons/hero-s-face-frown.svg");
|
|
1321
|
-
--aic-animation: aic-
|
|
1359
|
+
--aic-animation: aic-orbit-3d;
|
|
1322
1360
|
--aic-origin: center;
|
|
1323
1361
|
}
|
|
1324
1362
|
|
|
1325
1363
|
.aic.aic-hero-s-face-smile {
|
|
1326
1364
|
--aic-icon: url("./aic-icons/hero-s-face-smile.svg");
|
|
1327
|
-
--aic-animation: aic-
|
|
1365
|
+
--aic-animation: aic-orbit-3d;
|
|
1328
1366
|
--aic-origin: center;
|
|
1329
1367
|
}
|
|
1330
1368
|
|
|
@@ -1936,13 +1974,13 @@
|
|
|
1936
1974
|
|
|
1937
1975
|
.aic.aic-hero-s-signal {
|
|
1938
1976
|
--aic-icon: url("./aic-icons/hero-s-signal.svg");
|
|
1939
|
-
--aic-animation: aic-
|
|
1977
|
+
--aic-animation: aic-flip-3d;
|
|
1940
1978
|
--aic-origin: center;
|
|
1941
1979
|
}
|
|
1942
1980
|
|
|
1943
1981
|
.aic.aic-hero-s-signal-slash {
|
|
1944
1982
|
--aic-icon: url("./aic-icons/hero-s-signal-slash.svg");
|
|
1945
|
-
--aic-animation: aic-
|
|
1983
|
+
--aic-animation: aic-flip-3d;
|
|
1946
1984
|
--aic-origin: center;
|
|
1947
1985
|
}
|
|
1948
1986
|
|
|
@@ -1954,7 +1992,7 @@
|
|
|
1954
1992
|
|
|
1955
1993
|
.aic.aic-hero-s-sparkles {
|
|
1956
1994
|
--aic-icon: url("./aic-icons/hero-s-sparkles.svg");
|
|
1957
|
-
--aic-animation: aic-
|
|
1995
|
+
--aic-animation: aic-flip-in-3d;
|
|
1958
1996
|
--aic-origin: center;
|
|
1959
1997
|
}
|
|
1960
1998
|
|
|
@@ -2152,7 +2190,7 @@
|
|
|
2152
2190
|
|
|
2153
2191
|
.aic.aic-hero-s-wifi {
|
|
2154
2192
|
--aic-icon: url("./aic-icons/hero-s-wifi.svg");
|
|
2155
|
-
--aic-animation: aic-
|
|
2193
|
+
--aic-animation: aic-flip-3d;
|
|
2156
2194
|
--aic-origin: center;
|
|
2157
2195
|
}
|
|
2158
2196
|
|
|
@@ -2611,13 +2649,13 @@
|
|
|
2611
2649
|
|
|
2612
2650
|
.aic.aic-hero-bolt {
|
|
2613
2651
|
--aic-icon: url("./aic-icons/hero-bolt.svg");
|
|
2614
|
-
--aic-animation: aic-
|
|
2652
|
+
--aic-animation: aic-flip-3d;
|
|
2615
2653
|
--aic-origin: center;
|
|
2616
2654
|
}
|
|
2617
2655
|
|
|
2618
2656
|
.aic.aic-hero-bolt-slash {
|
|
2619
2657
|
--aic-icon: url("./aic-icons/hero-bolt-slash.svg");
|
|
2620
|
-
--aic-animation: aic-
|
|
2658
|
+
--aic-animation: aic-flip-3d;
|
|
2621
2659
|
--aic-origin: center;
|
|
2622
2660
|
}
|
|
2623
2661
|
|
|
@@ -2737,43 +2775,43 @@
|
|
|
2737
2775
|
|
|
2738
2776
|
.aic.aic-hero-chat-bubble-bottom-center {
|
|
2739
2777
|
--aic-icon: url("./aic-icons/hero-chat-bubble-bottom-center.svg");
|
|
2740
|
-
--aic-animation: aic-
|
|
2778
|
+
--aic-animation: aic-orbit-3d;
|
|
2741
2779
|
--aic-origin: center;
|
|
2742
2780
|
}
|
|
2743
2781
|
|
|
2744
2782
|
.aic.aic-hero-chat-bubble-bottom-center-text {
|
|
2745
2783
|
--aic-icon: url("./aic-icons/hero-chat-bubble-bottom-center-text.svg");
|
|
2746
|
-
--aic-animation: aic-
|
|
2784
|
+
--aic-animation: aic-orbit-3d;
|
|
2747
2785
|
--aic-origin: center;
|
|
2748
2786
|
}
|
|
2749
2787
|
|
|
2750
2788
|
.aic.aic-hero-chat-bubble-left {
|
|
2751
2789
|
--aic-icon: url("./aic-icons/hero-chat-bubble-left.svg");
|
|
2752
|
-
--aic-animation: aic-
|
|
2790
|
+
--aic-animation: aic-orbit-3d;
|
|
2753
2791
|
--aic-origin: center;
|
|
2754
2792
|
}
|
|
2755
2793
|
|
|
2756
2794
|
.aic.aic-hero-chat-bubble-left-ellipsis {
|
|
2757
2795
|
--aic-icon: url("./aic-icons/hero-chat-bubble-left-ellipsis.svg");
|
|
2758
|
-
--aic-animation: aic-
|
|
2796
|
+
--aic-animation: aic-orbit-3d;
|
|
2759
2797
|
--aic-origin: center;
|
|
2760
2798
|
}
|
|
2761
2799
|
|
|
2762
2800
|
.aic.aic-hero-chat-bubble-left-right {
|
|
2763
2801
|
--aic-icon: url("./aic-icons/hero-chat-bubble-left-right.svg");
|
|
2764
|
-
--aic-animation: aic-
|
|
2802
|
+
--aic-animation: aic-orbit-3d;
|
|
2765
2803
|
--aic-origin: center;
|
|
2766
2804
|
}
|
|
2767
2805
|
|
|
2768
2806
|
.aic.aic-hero-chat-bubble-oval-left {
|
|
2769
2807
|
--aic-icon: url("./aic-icons/hero-chat-bubble-oval-left.svg");
|
|
2770
|
-
--aic-animation: aic-
|
|
2808
|
+
--aic-animation: aic-orbit-3d;
|
|
2771
2809
|
--aic-origin: center;
|
|
2772
2810
|
}
|
|
2773
2811
|
|
|
2774
2812
|
.aic.aic-hero-chat-bubble-oval-left-ellipsis {
|
|
2775
2813
|
--aic-icon: url("./aic-icons/hero-chat-bubble-oval-left-ellipsis.svg");
|
|
2776
|
-
--aic-animation: aic-
|
|
2814
|
+
--aic-animation: aic-orbit-3d;
|
|
2777
2815
|
--aic-origin: center;
|
|
2778
2816
|
}
|
|
2779
2817
|
|
|
@@ -3166,31 +3204,31 @@
|
|
|
3166
3204
|
|
|
3167
3205
|
.aic.aic-hero-eye {
|
|
3168
3206
|
--aic-icon: url("./aic-icons/hero-eye.svg");
|
|
3169
|
-
--aic-animation: aic-
|
|
3207
|
+
--aic-animation: aic-orbit-3d;
|
|
3170
3208
|
--aic-origin: center;
|
|
3171
3209
|
}
|
|
3172
3210
|
|
|
3173
3211
|
.aic.aic-hero-eye-dropper {
|
|
3174
3212
|
--aic-icon: url("./aic-icons/hero-eye-dropper.svg");
|
|
3175
|
-
--aic-animation: aic-
|
|
3213
|
+
--aic-animation: aic-orbit-3d;
|
|
3176
3214
|
--aic-origin: center;
|
|
3177
3215
|
}
|
|
3178
3216
|
|
|
3179
3217
|
.aic.aic-hero-eye-slash {
|
|
3180
3218
|
--aic-icon: url("./aic-icons/hero-eye-slash.svg");
|
|
3181
|
-
--aic-animation: aic-
|
|
3219
|
+
--aic-animation: aic-orbit-3d;
|
|
3182
3220
|
--aic-origin: center;
|
|
3183
3221
|
}
|
|
3184
3222
|
|
|
3185
3223
|
.aic.aic-hero-face-frown {
|
|
3186
3224
|
--aic-icon: url("./aic-icons/hero-face-frown.svg");
|
|
3187
|
-
--aic-animation: aic-
|
|
3225
|
+
--aic-animation: aic-orbit-3d;
|
|
3188
3226
|
--aic-origin: center;
|
|
3189
3227
|
}
|
|
3190
3228
|
|
|
3191
3229
|
.aic.aic-hero-face-smile {
|
|
3192
3230
|
--aic-icon: url("./aic-icons/hero-face-smile.svg");
|
|
3193
|
-
--aic-animation: aic-
|
|
3231
|
+
--aic-animation: aic-orbit-3d;
|
|
3194
3232
|
--aic-origin: center;
|
|
3195
3233
|
}
|
|
3196
3234
|
|
|
@@ -3802,13 +3840,13 @@
|
|
|
3802
3840
|
|
|
3803
3841
|
.aic.aic-hero-signal {
|
|
3804
3842
|
--aic-icon: url("./aic-icons/hero-signal.svg");
|
|
3805
|
-
--aic-animation: aic-
|
|
3843
|
+
--aic-animation: aic-flip-3d;
|
|
3806
3844
|
--aic-origin: center;
|
|
3807
3845
|
}
|
|
3808
3846
|
|
|
3809
3847
|
.aic.aic-hero-signal-slash {
|
|
3810
3848
|
--aic-icon: url("./aic-icons/hero-signal-slash.svg");
|
|
3811
|
-
--aic-animation: aic-
|
|
3849
|
+
--aic-animation: aic-flip-3d;
|
|
3812
3850
|
--aic-origin: center;
|
|
3813
3851
|
}
|
|
3814
3852
|
|
|
@@ -3820,7 +3858,7 @@
|
|
|
3820
3858
|
|
|
3821
3859
|
.aic.aic-hero-sparkles {
|
|
3822
3860
|
--aic-icon: url("./aic-icons/hero-sparkles.svg");
|
|
3823
|
-
--aic-animation: aic-
|
|
3861
|
+
--aic-animation: aic-flip-in-3d;
|
|
3824
3862
|
--aic-origin: center;
|
|
3825
3863
|
}
|
|
3826
3864
|
|
|
@@ -4018,7 +4056,7 @@
|
|
|
4018
4056
|
|
|
4019
4057
|
.aic.aic-hero-wifi {
|
|
4020
4058
|
--aic-icon: url("./aic-icons/hero-wifi.svg");
|
|
4021
|
-
--aic-animation: aic-
|
|
4059
|
+
--aic-animation: aic-flip-3d;
|
|
4022
4060
|
--aic-origin: center;
|
|
4023
4061
|
}
|
|
4024
4062
|
|
|
@@ -4150,7 +4188,7 @@
|
|
|
4150
4188
|
|
|
4151
4189
|
.aic.aic-io-s-app-notification {
|
|
4152
4190
|
--aic-icon: url("./aic-icons/io-s-app-notification.svg");
|
|
4153
|
-
--aic-animation: aic-
|
|
4191
|
+
--aic-animation: aic-flip-3d;
|
|
4154
4192
|
--aic-origin: center;
|
|
4155
4193
|
}
|
|
4156
4194
|
|
|
@@ -4368,61 +4406,61 @@
|
|
|
4368
4406
|
|
|
4369
4407
|
.aic.aic-io-s-chat-bubble {
|
|
4370
4408
|
--aic-icon: url("./aic-icons/io-s-chat-bubble.svg");
|
|
4371
|
-
--aic-animation: aic-
|
|
4409
|
+
--aic-animation: aic-orbit-3d;
|
|
4372
4410
|
--aic-origin: center;
|
|
4373
4411
|
}
|
|
4374
4412
|
|
|
4375
4413
|
.aic.aic-io-s-chat-bubble-check {
|
|
4376
4414
|
--aic-icon: url("./aic-icons/io-s-chat-bubble-check.svg");
|
|
4377
|
-
--aic-animation: aic-
|
|
4415
|
+
--aic-animation: aic-orbit-3d;
|
|
4378
4416
|
--aic-origin: center;
|
|
4379
4417
|
}
|
|
4380
4418
|
|
|
4381
4419
|
.aic.aic-io-s-chat-bubble-empty {
|
|
4382
4420
|
--aic-icon: url("./aic-icons/io-s-chat-bubble-empty.svg");
|
|
4383
|
-
--aic-animation: aic-
|
|
4421
|
+
--aic-animation: aic-orbit-3d;
|
|
4384
4422
|
--aic-origin: center;
|
|
4385
4423
|
}
|
|
4386
4424
|
|
|
4387
4425
|
.aic.aic-io-s-chat-bubble-question {
|
|
4388
4426
|
--aic-icon: url("./aic-icons/io-s-chat-bubble-question.svg");
|
|
4389
|
-
--aic-animation: aic-
|
|
4427
|
+
--aic-animation: aic-orbit-3d;
|
|
4390
4428
|
--aic-origin: center;
|
|
4391
4429
|
}
|
|
4392
4430
|
|
|
4393
4431
|
.aic.aic-io-s-chat-bubble-translate {
|
|
4394
4432
|
--aic-icon: url("./aic-icons/io-s-chat-bubble-translate.svg");
|
|
4395
|
-
--aic-animation: aic-
|
|
4433
|
+
--aic-animation: aic-orbit-3d;
|
|
4396
4434
|
--aic-origin: center;
|
|
4397
4435
|
}
|
|
4398
4436
|
|
|
4399
4437
|
.aic.aic-io-s-chat-bubble-warning {
|
|
4400
4438
|
--aic-icon: url("./aic-icons/io-s-chat-bubble-warning.svg");
|
|
4401
|
-
--aic-animation: aic-
|
|
4439
|
+
--aic-animation: aic-flip-3d;
|
|
4402
4440
|
--aic-origin: center;
|
|
4403
4441
|
}
|
|
4404
4442
|
|
|
4405
4443
|
.aic.aic-io-s-chat-bubble-xmark {
|
|
4406
4444
|
--aic-icon: url("./aic-icons/io-s-chat-bubble-xmark.svg");
|
|
4407
|
-
--aic-animation: aic-
|
|
4445
|
+
--aic-animation: aic-orbit-3d;
|
|
4408
4446
|
--aic-origin: center;
|
|
4409
4447
|
}
|
|
4410
4448
|
|
|
4411
4449
|
.aic.aic-io-s-chat-lines {
|
|
4412
4450
|
--aic-icon: url("./aic-icons/io-s-chat-lines.svg");
|
|
4413
|
-
--aic-animation: aic-
|
|
4451
|
+
--aic-animation: aic-orbit-3d;
|
|
4414
4452
|
--aic-origin: center;
|
|
4415
4453
|
}
|
|
4416
4454
|
|
|
4417
4455
|
.aic.aic-io-s-chat-minus-in {
|
|
4418
4456
|
--aic-icon: url("./aic-icons/io-s-chat-minus-in.svg");
|
|
4419
|
-
--aic-animation: aic-
|
|
4457
|
+
--aic-animation: aic-orbit-3d;
|
|
4420
4458
|
--aic-origin: center;
|
|
4421
4459
|
}
|
|
4422
4460
|
|
|
4423
4461
|
.aic.aic-io-s-chat-plus-in {
|
|
4424
4462
|
--aic-icon: url("./aic-icons/io-s-chat-plus-in.svg");
|
|
4425
|
-
--aic-animation: aic-
|
|
4463
|
+
--aic-animation: aic-orbit-3d;
|
|
4426
4464
|
--aic-origin: center;
|
|
4427
4465
|
}
|
|
4428
4466
|
|
|
@@ -4506,7 +4544,7 @@
|
|
|
4506
4544
|
|
|
4507
4545
|
.aic.aic-io-s-cube-dots {
|
|
4508
4546
|
--aic-icon: url("./aic-icons/io-s-cube-dots.svg");
|
|
4509
|
-
--aic-animation: aic-
|
|
4547
|
+
--aic-animation: aic-dot-appear;
|
|
4510
4548
|
--aic-origin: center;
|
|
4511
4549
|
}
|
|
4512
4550
|
|
|
@@ -4578,7 +4616,7 @@
|
|
|
4578
4616
|
|
|
4579
4617
|
.aic.aic-io-s-dots-grid-3x3 {
|
|
4580
4618
|
--aic-icon: url("./aic-icons/io-s-dots-grid-3x3.svg");
|
|
4581
|
-
--aic-animation: aic-
|
|
4619
|
+
--aic-animation: aic-dot-appear;
|
|
4582
4620
|
--aic-origin: center;
|
|
4583
4621
|
}
|
|
4584
4622
|
|
|
@@ -4632,13 +4670,13 @@
|
|
|
4632
4670
|
|
|
4633
4671
|
.aic.aic-io-s-eye {
|
|
4634
4672
|
--aic-icon: url("./aic-icons/io-s-eye.svg");
|
|
4635
|
-
--aic-animation: aic-
|
|
4673
|
+
--aic-animation: aic-orbit-3d;
|
|
4636
4674
|
--aic-origin: center;
|
|
4637
4675
|
}
|
|
4638
4676
|
|
|
4639
4677
|
.aic.aic-io-s-facetime {
|
|
4640
4678
|
--aic-icon: url("./aic-icons/io-s-facetime.svg");
|
|
4641
|
-
--aic-animation: aic-
|
|
4679
|
+
--aic-animation: aic-orbit-3d;
|
|
4642
4680
|
--aic-origin: center;
|
|
4643
4681
|
}
|
|
4644
4682
|
|
|
@@ -4741,13 +4779,13 @@
|
|
|
4741
4779
|
|
|
4742
4780
|
.aic.aic-io-s-headset-bolt {
|
|
4743
4781
|
--aic-icon: url("./aic-icons/io-s-headset-bolt.svg");
|
|
4744
|
-
--aic-animation: aic-
|
|
4782
|
+
--aic-animation: aic-flip-3d;
|
|
4745
4783
|
--aic-origin: center;
|
|
4746
4784
|
}
|
|
4747
4785
|
|
|
4748
4786
|
.aic.aic-io-s-headset-warning {
|
|
4749
4787
|
--aic-icon: url("./aic-icons/io-s-headset-warning.svg");
|
|
4750
|
-
--aic-animation: aic-
|
|
4788
|
+
--aic-animation: aic-flip-3d;
|
|
4751
4789
|
--aic-origin: center;
|
|
4752
4790
|
}
|
|
4753
4791
|
|
|
@@ -4979,7 +5017,7 @@
|
|
|
4979
5017
|
|
|
4980
5018
|
.aic.aic-io-s-message-alert {
|
|
4981
5019
|
--aic-icon: url("./aic-icons/io-s-message-alert.svg");
|
|
4982
|
-
--aic-animation: aic-
|
|
5020
|
+
--aic-animation: aic-flip-3d;
|
|
4983
5021
|
--aic-origin: center;
|
|
4984
5022
|
}
|
|
4985
5023
|
|
|
@@ -5027,7 +5065,7 @@
|
|
|
5027
5065
|
|
|
5028
5066
|
.aic.aic-io-s-microphone-warning {
|
|
5029
5067
|
--aic-icon: url("./aic-icons/io-s-microphone-warning.svg");
|
|
5030
|
-
--aic-animation: aic-
|
|
5068
|
+
--aic-animation: aic-flip-3d;
|
|
5031
5069
|
--aic-origin: center;
|
|
5032
5070
|
}
|
|
5033
5071
|
|
|
@@ -5476,7 +5514,7 @@
|
|
|
5476
5514
|
|
|
5477
5515
|
.aic.aic-io-s-snapchat {
|
|
5478
5516
|
--aic-icon: url("./aic-icons/io-s-snapchat.svg");
|
|
5479
|
-
--aic-animation: aic-
|
|
5517
|
+
--aic-animation: aic-orbit-3d;
|
|
5480
5518
|
--aic-origin: center;
|
|
5481
5519
|
}
|
|
5482
5520
|
|
|
@@ -5506,13 +5544,13 @@
|
|
|
5506
5544
|
|
|
5507
5545
|
.aic.aic-io-s-spark {
|
|
5508
5546
|
--aic-icon: url("./aic-icons/io-s-spark.svg");
|
|
5509
|
-
--aic-animation: aic-
|
|
5547
|
+
--aic-animation: aic-flip-in-3d;
|
|
5510
5548
|
--aic-origin: center;
|
|
5511
5549
|
}
|
|
5512
5550
|
|
|
5513
5551
|
.aic.aic-io-s-sparks {
|
|
5514
5552
|
--aic-icon: url("./aic-icons/io-s-sparks.svg");
|
|
5515
|
-
--aic-animation: aic-
|
|
5553
|
+
--aic-animation: aic-flip-in-3d;
|
|
5516
5554
|
--aic-origin: center;
|
|
5517
5555
|
}
|
|
5518
5556
|
|
|
@@ -5643,19 +5681,19 @@
|
|
|
5643
5681
|
|
|
5644
5682
|
.aic.aic-io-s-warning-circle {
|
|
5645
5683
|
--aic-icon: url("./aic-icons/io-s-warning-circle.svg");
|
|
5646
|
-
--aic-animation: aic-
|
|
5684
|
+
--aic-animation: aic-flip-3d;
|
|
5647
5685
|
--aic-origin: center;
|
|
5648
5686
|
}
|
|
5649
5687
|
|
|
5650
5688
|
.aic.aic-io-s-warning-square {
|
|
5651
5689
|
--aic-icon: url("./aic-icons/io-s-warning-square.svg");
|
|
5652
|
-
--aic-animation: aic-
|
|
5690
|
+
--aic-animation: aic-flip-3d;
|
|
5653
5691
|
--aic-origin: center;
|
|
5654
5692
|
}
|
|
5655
5693
|
|
|
5656
5694
|
.aic.aic-io-s-warning-triangle {
|
|
5657
5695
|
--aic-icon: url("./aic-icons/io-s-warning-triangle.svg");
|
|
5658
|
-
--aic-animation: aic-
|
|
5696
|
+
--aic-animation: aic-flip-3d;
|
|
5659
5697
|
--aic-origin: center;
|
|
5660
5698
|
}
|
|
5661
5699
|
|
|
@@ -5691,19 +5729,19 @@
|
|
|
5691
5729
|
|
|
5692
5730
|
.aic.aic-io-s-wifi-signal-none {
|
|
5693
5731
|
--aic-icon: url("./aic-icons/io-s-wifi-signal-none.svg");
|
|
5694
|
-
--aic-animation: aic-
|
|
5732
|
+
--aic-animation: aic-flip-3d;
|
|
5695
5733
|
--aic-origin: center;
|
|
5696
5734
|
}
|
|
5697
5735
|
|
|
5698
5736
|
.aic.aic-io-s-wifi-tag {
|
|
5699
5737
|
--aic-icon: url("./aic-icons/io-s-wifi-tag.svg");
|
|
5700
|
-
--aic-animation: aic-
|
|
5738
|
+
--aic-animation: aic-flip-3d;
|
|
5701
5739
|
--aic-origin: center;
|
|
5702
5740
|
}
|
|
5703
5741
|
|
|
5704
5742
|
.aic.aic-io-s-wifi-warning {
|
|
5705
5743
|
--aic-icon: url("./aic-icons/io-s-wifi-warning.svg");
|
|
5706
|
-
--aic-animation: aic-
|
|
5744
|
+
--aic-animation: aic-flip-3d;
|
|
5707
5745
|
--aic-origin: center;
|
|
5708
5746
|
}
|
|
5709
5747
|
|
|
@@ -5979,19 +6017,19 @@
|
|
|
5979
6017
|
|
|
5980
6018
|
.aic.aic-io-antenna-signal {
|
|
5981
6019
|
--aic-icon: url("./aic-icons/io-antenna-signal.svg");
|
|
5982
|
-
--aic-animation: aic-
|
|
6020
|
+
--aic-animation: aic-flip-3d;
|
|
5983
6021
|
--aic-origin: center;
|
|
5984
6022
|
}
|
|
5985
6023
|
|
|
5986
6024
|
.aic.aic-io-antenna-signal-tag {
|
|
5987
6025
|
--aic-icon: url("./aic-icons/io-antenna-signal-tag.svg");
|
|
5988
|
-
--aic-animation: aic-
|
|
6026
|
+
--aic-animation: aic-flip-3d;
|
|
5989
6027
|
--aic-origin: center;
|
|
5990
6028
|
}
|
|
5991
6029
|
|
|
5992
6030
|
.aic.aic-io-app-notification {
|
|
5993
6031
|
--aic-icon: url("./aic-icons/io-app-notification.svg");
|
|
5994
|
-
--aic-animation: aic-
|
|
6032
|
+
--aic-animation: aic-flip-3d;
|
|
5995
6033
|
--aic-origin: center;
|
|
5996
6034
|
}
|
|
5997
6035
|
|
|
@@ -6432,7 +6470,7 @@
|
|
|
6432
6470
|
|
|
6433
6471
|
.aic.aic-io-battery-warning {
|
|
6434
6472
|
--aic-icon: url("./aic-icons/io-battery-warning.svg");
|
|
6435
|
-
--aic-animation: aic-
|
|
6473
|
+
--aic-animation: aic-flip-3d;
|
|
6436
6474
|
--aic-origin: center;
|
|
6437
6475
|
}
|
|
6438
6476
|
|
|
@@ -6762,7 +6800,7 @@
|
|
|
6762
6800
|
|
|
6763
6801
|
.aic.aic-io-brain-warning {
|
|
6764
6802
|
--aic-icon: url("./aic-icons/io-brain-warning.svg");
|
|
6765
|
-
--aic-animation: aic-
|
|
6803
|
+
--aic-animation: aic-flip-3d;
|
|
6766
6804
|
--aic-origin: center;
|
|
6767
6805
|
}
|
|
6768
6806
|
|
|
@@ -6780,7 +6818,7 @@
|
|
|
6780
6818
|
|
|
6781
6819
|
.aic.aic-io-bridge-surface {
|
|
6782
6820
|
--aic-icon: url("./aic-icons/io-bridge-surface.svg");
|
|
6783
|
-
--aic-animation: aic-
|
|
6821
|
+
--aic-animation: aic-orbit-3d;
|
|
6784
6822
|
--aic-origin: center;
|
|
6785
6823
|
}
|
|
6786
6824
|
|
|
@@ -6846,7 +6884,7 @@
|
|
|
6846
6884
|
|
|
6847
6885
|
.aic.aic-io-bubble-warning {
|
|
6848
6886
|
--aic-icon: url("./aic-icons/io-bubble-warning.svg");
|
|
6849
|
-
--aic-animation: aic-
|
|
6887
|
+
--aic-animation: aic-flip-3d;
|
|
6850
6888
|
--aic-origin: center;
|
|
6851
6889
|
}
|
|
6852
6890
|
|
|
@@ -7048,61 +7086,61 @@
|
|
|
7048
7086
|
|
|
7049
7087
|
.aic.aic-io-chat-bubble {
|
|
7050
7088
|
--aic-icon: url("./aic-icons/io-chat-bubble.svg");
|
|
7051
|
-
--aic-animation: aic-
|
|
7089
|
+
--aic-animation: aic-orbit-3d;
|
|
7052
7090
|
--aic-origin: center;
|
|
7053
7091
|
}
|
|
7054
7092
|
|
|
7055
7093
|
.aic.aic-io-chat-bubble-check {
|
|
7056
7094
|
--aic-icon: url("./aic-icons/io-chat-bubble-check.svg");
|
|
7057
|
-
--aic-animation: aic-
|
|
7095
|
+
--aic-animation: aic-orbit-3d;
|
|
7058
7096
|
--aic-origin: center;
|
|
7059
7097
|
}
|
|
7060
7098
|
|
|
7061
7099
|
.aic.aic-io-chat-bubble-empty {
|
|
7062
7100
|
--aic-icon: url("./aic-icons/io-chat-bubble-empty.svg");
|
|
7063
|
-
--aic-animation: aic-
|
|
7101
|
+
--aic-animation: aic-orbit-3d;
|
|
7064
7102
|
--aic-origin: center;
|
|
7065
7103
|
}
|
|
7066
7104
|
|
|
7067
7105
|
.aic.aic-io-chat-bubble-question {
|
|
7068
7106
|
--aic-icon: url("./aic-icons/io-chat-bubble-question.svg");
|
|
7069
|
-
--aic-animation: aic-
|
|
7107
|
+
--aic-animation: aic-orbit-3d;
|
|
7070
7108
|
--aic-origin: center;
|
|
7071
7109
|
}
|
|
7072
7110
|
|
|
7073
7111
|
.aic.aic-io-chat-bubble-translate {
|
|
7074
7112
|
--aic-icon: url("./aic-icons/io-chat-bubble-translate.svg");
|
|
7075
|
-
--aic-animation: aic-
|
|
7113
|
+
--aic-animation: aic-orbit-3d;
|
|
7076
7114
|
--aic-origin: center;
|
|
7077
7115
|
}
|
|
7078
7116
|
|
|
7079
7117
|
.aic.aic-io-chat-bubble-warning {
|
|
7080
7118
|
--aic-icon: url("./aic-icons/io-chat-bubble-warning.svg");
|
|
7081
|
-
--aic-animation: aic-
|
|
7119
|
+
--aic-animation: aic-flip-3d;
|
|
7082
7120
|
--aic-origin: center;
|
|
7083
7121
|
}
|
|
7084
7122
|
|
|
7085
7123
|
.aic.aic-io-chat-bubble-xmark {
|
|
7086
7124
|
--aic-icon: url("./aic-icons/io-chat-bubble-xmark.svg");
|
|
7087
|
-
--aic-animation: aic-
|
|
7125
|
+
--aic-animation: aic-orbit-3d;
|
|
7088
7126
|
--aic-origin: center;
|
|
7089
7127
|
}
|
|
7090
7128
|
|
|
7091
7129
|
.aic.aic-io-chat-lines {
|
|
7092
7130
|
--aic-icon: url("./aic-icons/io-chat-lines.svg");
|
|
7093
|
-
--aic-animation: aic-
|
|
7131
|
+
--aic-animation: aic-orbit-3d;
|
|
7094
7132
|
--aic-origin: center;
|
|
7095
7133
|
}
|
|
7096
7134
|
|
|
7097
7135
|
.aic.aic-io-chat-minus-in {
|
|
7098
7136
|
--aic-icon: url("./aic-icons/io-chat-minus-in.svg");
|
|
7099
|
-
--aic-animation: aic-
|
|
7137
|
+
--aic-animation: aic-orbit-3d;
|
|
7100
7138
|
--aic-origin: center;
|
|
7101
7139
|
}
|
|
7102
7140
|
|
|
7103
7141
|
.aic.aic-io-chat-plus-in {
|
|
7104
7142
|
--aic-icon: url("./aic-icons/io-chat-plus-in.svg");
|
|
7105
|
-
--aic-animation: aic-
|
|
7143
|
+
--aic-animation: aic-orbit-3d;
|
|
7106
7144
|
--aic-origin: center;
|
|
7107
7145
|
}
|
|
7108
7146
|
|
|
@@ -7174,7 +7212,7 @@
|
|
|
7174
7212
|
|
|
7175
7213
|
.aic.aic-io-circle-spark {
|
|
7176
7214
|
--aic-icon: url("./aic-icons/io-circle-spark.svg");
|
|
7177
|
-
--aic-animation: aic-
|
|
7215
|
+
--aic-animation: aic-flip-in-3d;
|
|
7178
7216
|
--aic-origin: center;
|
|
7179
7217
|
}
|
|
7180
7218
|
|
|
@@ -7432,7 +7470,7 @@
|
|
|
7432
7470
|
|
|
7433
7471
|
.aic.aic-io-constrained-surface {
|
|
7434
7472
|
--aic-icon: url("./aic-icons/io-constrained-surface.svg");
|
|
7435
|
-
--aic-animation: aic-
|
|
7473
|
+
--aic-animation: aic-orbit-3d;
|
|
7436
7474
|
--aic-origin: center;
|
|
7437
7475
|
}
|
|
7438
7476
|
|
|
@@ -7510,7 +7548,7 @@
|
|
|
7510
7548
|
|
|
7511
7549
|
.aic.aic-io-cpu-warning {
|
|
7512
7550
|
--aic-icon: url("./aic-icons/io-cpu-warning.svg");
|
|
7513
|
-
--aic-animation: aic-
|
|
7551
|
+
--aic-animation: aic-flip-3d;
|
|
7514
7552
|
--aic-origin: center;
|
|
7515
7553
|
}
|
|
7516
7554
|
|
|
@@ -7618,7 +7656,7 @@
|
|
|
7618
7656
|
|
|
7619
7657
|
.aic.aic-io-cube-dots {
|
|
7620
7658
|
--aic-icon: url("./aic-icons/io-cube-dots.svg");
|
|
7621
|
-
--aic-animation: aic-
|
|
7659
|
+
--aic-animation: aic-dot-appear;
|
|
7622
7660
|
--aic-origin: center;
|
|
7623
7661
|
}
|
|
7624
7662
|
|
|
@@ -7630,7 +7668,7 @@
|
|
|
7630
7668
|
|
|
7631
7669
|
.aic.aic-io-cube-replace-face {
|
|
7632
7670
|
--aic-icon: url("./aic-icons/io-cube-replace-face.svg");
|
|
7633
|
-
--aic-animation: aic-
|
|
7671
|
+
--aic-animation: aic-orbit-3d;
|
|
7634
7672
|
--aic-origin: center;
|
|
7635
7673
|
}
|
|
7636
7674
|
|
|
@@ -7690,7 +7728,7 @@
|
|
|
7690
7728
|
|
|
7691
7729
|
.aic.aic-io-dashboard-dots {
|
|
7692
7730
|
--aic-icon: url("./aic-icons/io-dashboard-dots.svg");
|
|
7693
|
-
--aic-animation: aic-
|
|
7731
|
+
--aic-animation: aic-dot-appear;
|
|
7694
7732
|
--aic-origin: center;
|
|
7695
7733
|
}
|
|
7696
7734
|
|
|
@@ -7726,7 +7764,7 @@
|
|
|
7726
7764
|
|
|
7727
7765
|
.aic.aic-io-data-transfer-warning {
|
|
7728
7766
|
--aic-icon: url("./aic-icons/io-data-transfer-warning.svg");
|
|
7729
|
-
--aic-animation: aic-
|
|
7767
|
+
--aic-animation: aic-flip-3d;
|
|
7730
7768
|
--aic-origin: center;
|
|
7731
7769
|
}
|
|
7732
7770
|
|
|
@@ -7816,7 +7854,7 @@
|
|
|
7816
7854
|
|
|
7817
7855
|
.aic.aic-io-database-warning {
|
|
7818
7856
|
--aic-icon: url("./aic-icons/io-database-warning.svg");
|
|
7819
|
-
--aic-animation: aic-
|
|
7857
|
+
--aic-animation: aic-flip-3d;
|
|
7820
7858
|
--aic-origin: center;
|
|
7821
7859
|
}
|
|
7822
7860
|
|
|
@@ -8032,7 +8070,7 @@
|
|
|
8032
8070
|
|
|
8033
8071
|
.aic.aic-io-domotic-warning {
|
|
8034
8072
|
--aic-icon: url("./aic-icons/io-domotic-warning.svg");
|
|
8035
|
-
--aic-animation: aic-
|
|
8073
|
+
--aic-animation: aic-flip-3d;
|
|
8036
8074
|
--aic-origin: center;
|
|
8037
8075
|
}
|
|
8038
8076
|
|
|
@@ -8044,27 +8082,31 @@
|
|
|
8044
8082
|
|
|
8045
8083
|
.aic.aic-io-dot-arrow-down {
|
|
8046
8084
|
--aic-icon: url("./aic-icons/io-dot-arrow-down.svg");
|
|
8047
|
-
--aic-animation: aic-
|
|
8085
|
+
--aic-animation: aic-dot-appear;
|
|
8086
|
+
--aic-origin: center;
|
|
8048
8087
|
}
|
|
8049
8088
|
|
|
8050
8089
|
.aic.aic-io-dot-arrow-left {
|
|
8051
8090
|
--aic-icon: url("./aic-icons/io-dot-arrow-left.svg");
|
|
8052
|
-
--aic-animation: aic-
|
|
8091
|
+
--aic-animation: aic-dot-appear;
|
|
8092
|
+
--aic-origin: center;
|
|
8053
8093
|
}
|
|
8054
8094
|
|
|
8055
8095
|
.aic.aic-io-dot-arrow-right {
|
|
8056
8096
|
--aic-icon: url("./aic-icons/io-dot-arrow-right.svg");
|
|
8057
|
-
--aic-animation: aic-
|
|
8097
|
+
--aic-animation: aic-dot-appear;
|
|
8098
|
+
--aic-origin: center;
|
|
8058
8099
|
}
|
|
8059
8100
|
|
|
8060
8101
|
.aic.aic-io-dot-arrow-up {
|
|
8061
8102
|
--aic-icon: url("./aic-icons/io-dot-arrow-up.svg");
|
|
8062
|
-
--aic-animation: aic-
|
|
8103
|
+
--aic-animation: aic-dot-appear;
|
|
8104
|
+
--aic-origin: center;
|
|
8063
8105
|
}
|
|
8064
8106
|
|
|
8065
8107
|
.aic.aic-io-dots-grid-3x3 {
|
|
8066
8108
|
--aic-icon: url("./aic-icons/io-dots-grid-3x3.svg");
|
|
8067
|
-
--aic-animation: aic-
|
|
8109
|
+
--aic-animation: aic-dot-appear;
|
|
8068
8110
|
--aic-origin: center;
|
|
8069
8111
|
}
|
|
8070
8112
|
|
|
@@ -8550,13 +8592,13 @@
|
|
|
8550
8592
|
|
|
8551
8593
|
.aic.aic-io-eye {
|
|
8552
8594
|
--aic-icon: url("./aic-icons/io-eye.svg");
|
|
8553
|
-
--aic-animation: aic-
|
|
8595
|
+
--aic-animation: aic-orbit-3d;
|
|
8554
8596
|
--aic-origin: center;
|
|
8555
8597
|
}
|
|
8556
8598
|
|
|
8557
8599
|
.aic.aic-io-eye-closed {
|
|
8558
8600
|
--aic-icon: url("./aic-icons/io-eye-closed.svg");
|
|
8559
|
-
--aic-animation: aic-
|
|
8601
|
+
--aic-animation: aic-orbit-3d;
|
|
8560
8602
|
--aic-origin: center;
|
|
8561
8603
|
}
|
|
8562
8604
|
|
|
@@ -8568,31 +8610,31 @@
|
|
|
8568
8610
|
|
|
8569
8611
|
.aic.aic-io-face-3d-draft {
|
|
8570
8612
|
--aic-icon: url("./aic-icons/io-face-3d-draft.svg");
|
|
8571
|
-
--aic-animation: aic-
|
|
8613
|
+
--aic-animation: aic-orbit-3d;
|
|
8572
8614
|
--aic-origin: center;
|
|
8573
8615
|
}
|
|
8574
8616
|
|
|
8575
8617
|
.aic.aic-io-face-id {
|
|
8576
8618
|
--aic-icon: url("./aic-icons/io-face-id.svg");
|
|
8577
|
-
--aic-animation: aic-
|
|
8619
|
+
--aic-animation: aic-orbit-3d;
|
|
8578
8620
|
--aic-origin: center;
|
|
8579
8621
|
}
|
|
8580
8622
|
|
|
8581
8623
|
.aic.aic-io-facebook {
|
|
8582
8624
|
--aic-icon: url("./aic-icons/io-facebook.svg");
|
|
8583
|
-
--aic-animation: aic-
|
|
8584
|
-
--aic-origin:
|
|
8625
|
+
--aic-animation: aic-orbit-3d;
|
|
8626
|
+
--aic-origin: center;
|
|
8585
8627
|
}
|
|
8586
8628
|
|
|
8587
8629
|
.aic.aic-io-facebook-tag {
|
|
8588
8630
|
--aic-icon: url("./aic-icons/io-facebook-tag.svg");
|
|
8589
|
-
--aic-animation: aic-
|
|
8590
|
-
--aic-origin:
|
|
8631
|
+
--aic-animation: aic-orbit-3d;
|
|
8632
|
+
--aic-origin: center;
|
|
8591
8633
|
}
|
|
8592
8634
|
|
|
8593
8635
|
.aic.aic-io-facetime {
|
|
8594
8636
|
--aic-icon: url("./aic-icons/io-facetime.svg");
|
|
8595
|
-
--aic-animation: aic-
|
|
8637
|
+
--aic-animation: aic-orbit-3d;
|
|
8596
8638
|
--aic-origin: center;
|
|
8597
8639
|
}
|
|
8598
8640
|
|
|
@@ -8894,7 +8936,7 @@
|
|
|
8894
8936
|
|
|
8895
8937
|
.aic.aic-io-folder-warning {
|
|
8896
8938
|
--aic-icon: url("./aic-icons/io-folder-warning.svg");
|
|
8897
|
-
--aic-animation: aic-
|
|
8939
|
+
--aic-animation: aic-flip-3d;
|
|
8898
8940
|
--aic-origin: center;
|
|
8899
8941
|
}
|
|
8900
8942
|
|
|
@@ -9191,7 +9233,7 @@
|
|
|
9191
9233
|
|
|
9192
9234
|
.aic.aic-io-google-drive-warning {
|
|
9193
9235
|
--aic-icon: url("./aic-icons/io-google-drive-warning.svg");
|
|
9194
|
-
--aic-animation: aic-
|
|
9236
|
+
--aic-animation: aic-flip-3d;
|
|
9195
9237
|
--aic-origin: center;
|
|
9196
9238
|
}
|
|
9197
9239
|
|
|
@@ -9359,7 +9401,7 @@
|
|
|
9359
9401
|
|
|
9360
9402
|
.aic.aic-io-headset-bolt {
|
|
9361
9403
|
--aic-icon: url("./aic-icons/io-headset-bolt.svg");
|
|
9362
|
-
--aic-animation: aic-
|
|
9404
|
+
--aic-animation: aic-flip-3d;
|
|
9363
9405
|
--aic-origin: center;
|
|
9364
9406
|
}
|
|
9365
9407
|
|
|
@@ -9371,7 +9413,7 @@
|
|
|
9371
9413
|
|
|
9372
9414
|
.aic.aic-io-headset-warning {
|
|
9373
9415
|
--aic-icon: url("./aic-icons/io-headset-warning.svg");
|
|
9374
|
-
--aic-animation: aic-
|
|
9416
|
+
--aic-animation: aic-flip-3d;
|
|
9375
9417
|
--aic-origin: center;
|
|
9376
9418
|
}
|
|
9377
9419
|
|
|
@@ -9911,7 +9953,7 @@
|
|
|
9911
9953
|
|
|
9912
9954
|
.aic.aic-io-laptop-warning {
|
|
9913
9955
|
--aic-icon: url("./aic-icons/io-laptop-warning.svg");
|
|
9914
|
-
--aic-animation: aic-
|
|
9956
|
+
--aic-animation: aic-flip-3d;
|
|
9915
9957
|
--aic-origin: center;
|
|
9916
9958
|
}
|
|
9917
9959
|
|
|
@@ -10425,7 +10467,7 @@
|
|
|
10425
10467
|
|
|
10426
10468
|
.aic.aic-io-message-alert {
|
|
10427
10469
|
--aic-icon: url("./aic-icons/io-message-alert.svg");
|
|
10428
|
-
--aic-animation: aic-
|
|
10470
|
+
--aic-animation: aic-flip-3d;
|
|
10429
10471
|
--aic-origin: center;
|
|
10430
10472
|
}
|
|
10431
10473
|
|
|
@@ -10484,7 +10526,7 @@
|
|
|
10484
10526
|
|
|
10485
10527
|
.aic.aic-io-microphone-warning {
|
|
10486
10528
|
--aic-icon: url("./aic-icons/io-microphone-warning.svg");
|
|
10487
|
-
--aic-animation: aic-
|
|
10529
|
+
--aic-animation: aic-flip-3d;
|
|
10488
10530
|
--aic-origin: center;
|
|
10489
10531
|
}
|
|
10490
10532
|
|
|
@@ -11217,7 +11259,7 @@
|
|
|
11217
11259
|
|
|
11218
11260
|
.aic.aic-io-pc-warning {
|
|
11219
11261
|
--aic-icon: url("./aic-icons/io-pc-warning.svg");
|
|
11220
|
-
--aic-animation: aic-
|
|
11262
|
+
--aic-animation: aic-flip-3d;
|
|
11221
11263
|
--aic-origin: center;
|
|
11222
11264
|
}
|
|
11223
11265
|
|
|
@@ -11241,7 +11283,7 @@
|
|
|
11241
11283
|
|
|
11242
11284
|
.aic.aic-io-pen-connect-wifi {
|
|
11243
11285
|
--aic-icon: url("./aic-icons/io-pen-connect-wifi.svg");
|
|
11244
|
-
--aic-animation: aic-
|
|
11286
|
+
--aic-animation: aic-flip-3d;
|
|
11245
11287
|
--aic-origin: center;
|
|
11246
11288
|
}
|
|
11247
11289
|
|
|
@@ -11259,7 +11301,7 @@
|
|
|
11259
11301
|
|
|
11260
11302
|
.aic.aic-io-pen-tablet-connect-wifi {
|
|
11261
11303
|
--aic-icon: url("./aic-icons/io-pen-tablet-connect-wifi.svg");
|
|
11262
|
-
--aic-animation: aic-
|
|
11304
|
+
--aic-animation: aic-flip-3d;
|
|
11263
11305
|
--aic-origin: center;
|
|
11264
11306
|
}
|
|
11265
11307
|
|
|
@@ -11631,7 +11673,7 @@
|
|
|
11631
11673
|
|
|
11632
11674
|
.aic.aic-io-private-wifi {
|
|
11633
11675
|
--aic-icon: url("./aic-icons/io-private-wifi.svg");
|
|
11634
|
-
--aic-animation: aic-
|
|
11676
|
+
--aic-animation: aic-flip-3d;
|
|
11635
11677
|
--aic-origin: center;
|
|
11636
11678
|
}
|
|
11637
11679
|
|
|
@@ -12079,7 +12121,7 @@
|
|
|
12079
12121
|
|
|
12080
12122
|
.aic.aic-io-select-face-3d {
|
|
12081
12123
|
--aic-icon: url("./aic-icons/io-select-face-3d.svg");
|
|
12082
|
-
--aic-animation: aic-
|
|
12124
|
+
--aic-animation: aic-orbit-3d;
|
|
12083
12125
|
--aic-origin: center;
|
|
12084
12126
|
}
|
|
12085
12127
|
|
|
@@ -12187,7 +12229,7 @@
|
|
|
12187
12229
|
|
|
12188
12230
|
.aic.aic-io-shield-alert {
|
|
12189
12231
|
--aic-icon: url("./aic-icons/io-shield-alert.svg");
|
|
12190
|
-
--aic-animation: aic-
|
|
12232
|
+
--aic-animation: aic-flip-3d;
|
|
12191
12233
|
--aic-origin: center;
|
|
12192
12234
|
}
|
|
12193
12235
|
|
|
@@ -12217,7 +12259,7 @@
|
|
|
12217
12259
|
|
|
12218
12260
|
.aic.aic-io-shield-eye {
|
|
12219
12261
|
--aic-icon: url("./aic-icons/io-shield-eye.svg");
|
|
12220
|
-
--aic-animation: aic-
|
|
12262
|
+
--aic-animation: aic-orbit-3d;
|
|
12221
12263
|
--aic-origin: center;
|
|
12222
12264
|
}
|
|
12223
12265
|
|
|
@@ -12499,7 +12541,7 @@
|
|
|
12499
12541
|
|
|
12500
12542
|
.aic.aic-io-snapchat {
|
|
12501
12543
|
--aic-icon: url("./aic-icons/io-snapchat.svg");
|
|
12502
|
-
--aic-animation: aic-
|
|
12544
|
+
--aic-animation: aic-orbit-3d;
|
|
12503
12545
|
--aic-origin: center;
|
|
12504
12546
|
}
|
|
12505
12547
|
|
|
@@ -12595,13 +12637,13 @@
|
|
|
12595
12637
|
|
|
12596
12638
|
.aic.aic-io-spark {
|
|
12597
12639
|
--aic-icon: url("./aic-icons/io-spark.svg");
|
|
12598
|
-
--aic-animation: aic-
|
|
12640
|
+
--aic-animation: aic-flip-in-3d;
|
|
12599
12641
|
--aic-origin: center;
|
|
12600
12642
|
}
|
|
12601
12643
|
|
|
12602
12644
|
.aic.aic-io-sparks {
|
|
12603
12645
|
--aic-icon: url("./aic-icons/io-sparks.svg");
|
|
12604
|
-
--aic-animation: aic-
|
|
12646
|
+
--aic-animation: aic-flip-in-3d;
|
|
12605
12647
|
--aic-origin: center;
|
|
12606
12648
|
}
|
|
12607
12649
|
|
|
@@ -13116,7 +13158,7 @@
|
|
|
13116
13158
|
|
|
13117
13159
|
.aic.aic-io-tower-warning {
|
|
13118
13160
|
--aic-icon: url("./aic-icons/io-tower-warning.svg");
|
|
13119
|
-
--aic-animation: aic-
|
|
13161
|
+
--aic-animation: aic-flip-3d;
|
|
13120
13162
|
--aic-origin: center;
|
|
13121
13163
|
}
|
|
13122
13164
|
|
|
@@ -13266,7 +13308,7 @@
|
|
|
13266
13308
|
|
|
13267
13309
|
.aic.aic-io-tv-warning {
|
|
13268
13310
|
--aic-icon: url("./aic-icons/io-tv-warning.svg");
|
|
13269
|
-
--aic-animation: aic-
|
|
13311
|
+
--aic-animation: aic-flip-3d;
|
|
13270
13312
|
--aic-origin: center;
|
|
13271
13313
|
}
|
|
13272
13314
|
|
|
@@ -13639,31 +13681,31 @@
|
|
|
13639
13681
|
|
|
13640
13682
|
.aic.aic-io-warning-circle {
|
|
13641
13683
|
--aic-icon: url("./aic-icons/io-warning-circle.svg");
|
|
13642
|
-
--aic-animation: aic-
|
|
13684
|
+
--aic-animation: aic-flip-3d;
|
|
13643
13685
|
--aic-origin: center;
|
|
13644
13686
|
}
|
|
13645
13687
|
|
|
13646
13688
|
.aic.aic-io-warning-hexagon {
|
|
13647
13689
|
--aic-icon: url("./aic-icons/io-warning-hexagon.svg");
|
|
13648
|
-
--aic-animation: aic-
|
|
13690
|
+
--aic-animation: aic-flip-3d;
|
|
13649
13691
|
--aic-origin: center;
|
|
13650
13692
|
}
|
|
13651
13693
|
|
|
13652
13694
|
.aic.aic-io-warning-square {
|
|
13653
13695
|
--aic-icon: url("./aic-icons/io-warning-square.svg");
|
|
13654
|
-
--aic-animation: aic-
|
|
13696
|
+
--aic-animation: aic-flip-3d;
|
|
13655
13697
|
--aic-origin: center;
|
|
13656
13698
|
}
|
|
13657
13699
|
|
|
13658
13700
|
.aic.aic-io-warning-triangle {
|
|
13659
13701
|
--aic-icon: url("./aic-icons/io-warning-triangle.svg");
|
|
13660
|
-
--aic-animation: aic-
|
|
13702
|
+
--aic-animation: aic-flip-3d;
|
|
13661
13703
|
--aic-origin: center;
|
|
13662
13704
|
}
|
|
13663
13705
|
|
|
13664
13706
|
.aic.aic-io-warning-window {
|
|
13665
13707
|
--aic-icon: url("./aic-icons/io-warning-window.svg");
|
|
13666
|
-
--aic-animation: aic-
|
|
13708
|
+
--aic-animation: aic-flip-3d;
|
|
13667
13709
|
--aic-origin: center;
|
|
13668
13710
|
}
|
|
13669
13711
|
|
|
@@ -13735,37 +13777,37 @@
|
|
|
13735
13777
|
|
|
13736
13778
|
.aic.aic-io-wifi {
|
|
13737
13779
|
--aic-icon: url("./aic-icons/io-wifi.svg");
|
|
13738
|
-
--aic-animation: aic-
|
|
13780
|
+
--aic-animation: aic-flip-3d;
|
|
13739
13781
|
--aic-origin: center;
|
|
13740
13782
|
}
|
|
13741
13783
|
|
|
13742
13784
|
.aic.aic-io-wifi-off {
|
|
13743
13785
|
--aic-icon: url("./aic-icons/io-wifi-off.svg");
|
|
13744
|
-
--aic-animation: aic-
|
|
13786
|
+
--aic-animation: aic-flip-3d;
|
|
13745
13787
|
--aic-origin: center;
|
|
13746
13788
|
}
|
|
13747
13789
|
|
|
13748
13790
|
.aic.aic-io-wifi-signal-none {
|
|
13749
13791
|
--aic-icon: url("./aic-icons/io-wifi-signal-none.svg");
|
|
13750
|
-
--aic-animation: aic-
|
|
13792
|
+
--aic-animation: aic-flip-3d;
|
|
13751
13793
|
--aic-origin: center;
|
|
13752
13794
|
}
|
|
13753
13795
|
|
|
13754
13796
|
.aic.aic-io-wifi-tag {
|
|
13755
13797
|
--aic-icon: url("./aic-icons/io-wifi-tag.svg");
|
|
13756
|
-
--aic-animation: aic-
|
|
13798
|
+
--aic-animation: aic-flip-3d;
|
|
13757
13799
|
--aic-origin: center;
|
|
13758
13800
|
}
|
|
13759
13801
|
|
|
13760
13802
|
.aic.aic-io-wifi-warning {
|
|
13761
13803
|
--aic-icon: url("./aic-icons/io-wifi-warning.svg");
|
|
13762
|
-
--aic-animation: aic-
|
|
13804
|
+
--aic-animation: aic-flip-3d;
|
|
13763
13805
|
--aic-origin: center;
|
|
13764
13806
|
}
|
|
13765
13807
|
|
|
13766
13808
|
.aic.aic-io-wifi-xmark {
|
|
13767
13809
|
--aic-icon: url("./aic-icons/io-wifi-xmark.svg");
|
|
13768
|
-
--aic-animation: aic-
|
|
13810
|
+
--aic-animation: aic-flip-3d;
|
|
13769
13811
|
--aic-origin: center;
|
|
13770
13812
|
}
|
|
13771
13813
|
|
|
@@ -14063,19 +14105,19 @@
|
|
|
14063
14105
|
|
|
14064
14106
|
.aic.aic-luc-alert-circle {
|
|
14065
14107
|
--aic-icon: url("./aic-icons/luc-alert-circle.svg");
|
|
14066
|
-
--aic-animation: aic-
|
|
14108
|
+
--aic-animation: aic-flip-3d;
|
|
14067
14109
|
--aic-origin: center;
|
|
14068
14110
|
}
|
|
14069
14111
|
|
|
14070
14112
|
.aic.aic-luc-alert-octagon {
|
|
14071
14113
|
--aic-icon: url("./aic-icons/luc-alert-octagon.svg");
|
|
14072
|
-
--aic-animation: aic-
|
|
14114
|
+
--aic-animation: aic-flip-3d;
|
|
14073
14115
|
--aic-origin: center;
|
|
14074
14116
|
}
|
|
14075
14117
|
|
|
14076
14118
|
.aic.aic-luc-alert-triangle {
|
|
14077
14119
|
--aic-icon: url("./aic-icons/luc-alert-triangle.svg");
|
|
14078
|
-
--aic-animation: aic-
|
|
14120
|
+
--aic-animation: aic-flip-3d;
|
|
14079
14121
|
--aic-origin: center;
|
|
14080
14122
|
}
|
|
14081
14123
|
|
|
@@ -14480,7 +14522,8 @@
|
|
|
14480
14522
|
|
|
14481
14523
|
.aic.aic-luc-arrow-down-to-dot {
|
|
14482
14524
|
--aic-icon: url("./aic-icons/luc-arrow-down-to-dot.svg");
|
|
14483
|
-
--aic-animation: aic-
|
|
14525
|
+
--aic-animation: aic-dot-appear;
|
|
14526
|
+
--aic-origin: center;
|
|
14484
14527
|
}
|
|
14485
14528
|
|
|
14486
14529
|
.aic.aic-luc-arrow-down-to-line {
|
|
@@ -14615,7 +14658,8 @@
|
|
|
14615
14658
|
|
|
14616
14659
|
.aic.aic-luc-arrow-up-from-dot {
|
|
14617
14660
|
--aic-icon: url("./aic-icons/luc-arrow-up-from-dot.svg");
|
|
14618
|
-
--aic-animation: aic-
|
|
14661
|
+
--aic-animation: aic-dot-appear;
|
|
14662
|
+
--aic-origin: center;
|
|
14619
14663
|
}
|
|
14620
14664
|
|
|
14621
14665
|
.aic.aic-luc-arrow-up-from-line {
|
|
@@ -14778,7 +14822,7 @@
|
|
|
14778
14822
|
|
|
14779
14823
|
.aic.aic-luc-badge-alert {
|
|
14780
14824
|
--aic-icon: url("./aic-icons/luc-badge-alert.svg");
|
|
14781
|
-
--aic-animation: aic-
|
|
14825
|
+
--aic-animation: aic-flip-3d;
|
|
14782
14826
|
--aic-origin: center;
|
|
14783
14827
|
}
|
|
14784
14828
|
|
|
@@ -15040,7 +15084,7 @@
|
|
|
15040
15084
|
|
|
15041
15085
|
.aic.aic-luc-battery-warning {
|
|
15042
15086
|
--aic-icon: url("./aic-icons/luc-battery-warning.svg");
|
|
15043
|
-
--aic-animation: aic-
|
|
15087
|
+
--aic-animation: aic-flip-3d;
|
|
15044
15088
|
--aic-origin: center;
|
|
15045
15089
|
}
|
|
15046
15090
|
|
|
@@ -15274,7 +15318,7 @@
|
|
|
15274
15318
|
|
|
15275
15319
|
.aic.aic-luc-bolt {
|
|
15276
15320
|
--aic-icon: url("./aic-icons/luc-bolt.svg");
|
|
15277
|
-
--aic-animation: aic-
|
|
15321
|
+
--aic-animation: aic-flip-3d;
|
|
15278
15322
|
--aic-origin: center;
|
|
15279
15323
|
}
|
|
15280
15324
|
|
|
@@ -15304,8 +15348,8 @@
|
|
|
15304
15348
|
|
|
15305
15349
|
.aic.aic-luc-book-alert {
|
|
15306
15350
|
--aic-icon: url("./aic-icons/luc-book-alert.svg");
|
|
15307
|
-
--aic-animation: aic-
|
|
15308
|
-
--aic-origin:
|
|
15351
|
+
--aic-animation: aic-flip-3d;
|
|
15352
|
+
--aic-origin: center;
|
|
15309
15353
|
}
|
|
15310
15354
|
|
|
15311
15355
|
.aic.aic-luc-book-audio {
|
|
@@ -16358,7 +16402,7 @@
|
|
|
16358
16402
|
|
|
16359
16403
|
.aic.aic-luc-circle-alert {
|
|
16360
16404
|
--aic-icon: url("./aic-icons/luc-circle-alert.svg");
|
|
16361
|
-
--aic-animation: aic-
|
|
16405
|
+
--aic-animation: aic-flip-3d;
|
|
16362
16406
|
--aic-origin: center;
|
|
16363
16407
|
}
|
|
16364
16408
|
|
|
@@ -16454,13 +16498,13 @@
|
|
|
16454
16498
|
|
|
16455
16499
|
.aic.aic-luc-circle-dot {
|
|
16456
16500
|
--aic-icon: url("./aic-icons/luc-circle-dot.svg");
|
|
16457
|
-
--aic-animation: aic-
|
|
16501
|
+
--aic-animation: aic-dot-appear;
|
|
16458
16502
|
--aic-origin: center;
|
|
16459
16503
|
}
|
|
16460
16504
|
|
|
16461
16505
|
.aic.aic-luc-circle-dot-dashed {
|
|
16462
16506
|
--aic-icon: url("./aic-icons/luc-circle-dot-dashed.svg");
|
|
16463
|
-
--aic-animation: aic-
|
|
16507
|
+
--aic-animation: aic-dot-appear;
|
|
16464
16508
|
--aic-origin: center;
|
|
16465
16509
|
}
|
|
16466
16510
|
|
|
@@ -16807,7 +16851,7 @@
|
|
|
16807
16851
|
|
|
16808
16852
|
.aic.aic-luc-clock-alert {
|
|
16809
16853
|
--aic-icon: url("./aic-icons/luc-clock-alert.svg");
|
|
16810
|
-
--aic-animation: aic-
|
|
16854
|
+
--aic-animation: aic-flip-3d;
|
|
16811
16855
|
--aic-origin: center;
|
|
16812
16856
|
}
|
|
16813
16857
|
|
|
@@ -16855,7 +16899,7 @@
|
|
|
16855
16899
|
|
|
16856
16900
|
.aic.aic-luc-cloud-alert {
|
|
16857
16901
|
--aic-icon: url("./aic-icons/luc-cloud-alert.svg");
|
|
16858
|
-
--aic-animation: aic-
|
|
16902
|
+
--aic-animation: aic-flip-3d;
|
|
16859
16903
|
--aic-origin: center;
|
|
16860
16904
|
}
|
|
16861
16905
|
|
|
@@ -17365,7 +17409,7 @@
|
|
|
17365
17409
|
|
|
17366
17410
|
.aic.aic-luc-database-zap {
|
|
17367
17411
|
--aic-icon: url("./aic-icons/luc-database-zap.svg");
|
|
17368
|
-
--aic-animation: aic-
|
|
17412
|
+
--aic-animation: aic-flip-in-3d;
|
|
17369
17413
|
--aic-origin: center;
|
|
17370
17414
|
}
|
|
17371
17415
|
|
|
@@ -17567,13 +17611,13 @@
|
|
|
17567
17611
|
|
|
17568
17612
|
.aic.aic-luc-dot {
|
|
17569
17613
|
--aic-icon: url("./aic-icons/luc-dot.svg");
|
|
17570
|
-
--aic-animation: aic-
|
|
17614
|
+
--aic-animation: aic-dot-appear;
|
|
17571
17615
|
--aic-origin: center;
|
|
17572
17616
|
}
|
|
17573
17617
|
|
|
17574
17618
|
.aic.aic-luc-dot-square {
|
|
17575
17619
|
--aic-icon: url("./aic-icons/luc-dot-square.svg");
|
|
17576
|
-
--aic-animation: aic-
|
|
17620
|
+
--aic-animation: aic-dot-appear;
|
|
17577
17621
|
--aic-origin: center;
|
|
17578
17622
|
}
|
|
17579
17623
|
|
|
@@ -17801,26 +17845,26 @@
|
|
|
17801
17845
|
|
|
17802
17846
|
.aic.aic-luc-eye {
|
|
17803
17847
|
--aic-icon: url("./aic-icons/luc-eye.svg");
|
|
17804
|
-
--aic-animation: aic-
|
|
17848
|
+
--aic-animation: aic-orbit-3d;
|
|
17805
17849
|
--aic-origin: center;
|
|
17806
17850
|
}
|
|
17807
17851
|
|
|
17808
17852
|
.aic.aic-luc-eye-closed {
|
|
17809
17853
|
--aic-icon: url("./aic-icons/luc-eye-closed.svg");
|
|
17810
|
-
--aic-animation: aic-
|
|
17854
|
+
--aic-animation: aic-orbit-3d;
|
|
17811
17855
|
--aic-origin: center;
|
|
17812
17856
|
}
|
|
17813
17857
|
|
|
17814
17858
|
.aic.aic-luc-eye-off {
|
|
17815
17859
|
--aic-icon: url("./aic-icons/luc-eye-off.svg");
|
|
17816
|
-
--aic-animation: aic-
|
|
17860
|
+
--aic-animation: aic-orbit-3d;
|
|
17817
17861
|
--aic-origin: center;
|
|
17818
17862
|
}
|
|
17819
17863
|
|
|
17820
17864
|
.aic.aic-luc-facebook {
|
|
17821
17865
|
--aic-icon: url("./aic-icons/luc-facebook.svg");
|
|
17822
|
-
--aic-animation: aic-
|
|
17823
|
-
--aic-origin:
|
|
17866
|
+
--aic-animation: aic-orbit-3d;
|
|
17867
|
+
--aic-origin: center;
|
|
17824
17868
|
}
|
|
17825
17869
|
|
|
17826
17870
|
.aic.aic-luc-factory {
|
|
@@ -18226,7 +18270,7 @@
|
|
|
18226
18270
|
|
|
18227
18271
|
.aic.aic-luc-file-signal {
|
|
18228
18272
|
--aic-icon: url("./aic-icons/luc-file-signal.svg");
|
|
18229
|
-
--aic-animation: aic-
|
|
18273
|
+
--aic-animation: aic-flip-3d;
|
|
18230
18274
|
--aic-origin: center;
|
|
18231
18275
|
}
|
|
18232
18276
|
|
|
@@ -18334,7 +18378,7 @@
|
|
|
18334
18378
|
|
|
18335
18379
|
.aic.aic-luc-file-warning {
|
|
18336
18380
|
--aic-icon: url("./aic-icons/luc-file-warning.svg");
|
|
18337
|
-
--aic-animation: aic-
|
|
18381
|
+
--aic-animation: aic-flip-3d;
|
|
18338
18382
|
--aic-origin: center;
|
|
18339
18383
|
}
|
|
18340
18384
|
|
|
@@ -18598,7 +18642,7 @@
|
|
|
18598
18642
|
|
|
18599
18643
|
.aic.aic-luc-folder-dot {
|
|
18600
18644
|
--aic-icon: url("./aic-icons/luc-folder-dot.svg");
|
|
18601
|
-
--aic-animation: aic-
|
|
18645
|
+
--aic-animation: aic-dot-appear;
|
|
18602
18646
|
--aic-origin: center;
|
|
18603
18647
|
}
|
|
18604
18648
|
|
|
@@ -18670,7 +18714,7 @@
|
|
|
18670
18714
|
|
|
18671
18715
|
.aic.aic-luc-folder-open-dot {
|
|
18672
18716
|
--aic-icon: url("./aic-icons/luc-folder-open-dot.svg");
|
|
18673
|
-
--aic-animation: aic-
|
|
18717
|
+
--aic-animation: aic-dot-appear;
|
|
18674
18718
|
--aic-origin: center;
|
|
18675
18719
|
}
|
|
18676
18720
|
|
|
@@ -19572,7 +19616,7 @@
|
|
|
19572
19616
|
|
|
19573
19617
|
.aic.aic-luc-house-wifi {
|
|
19574
19618
|
--aic-icon: url("./aic-icons/luc-house-wifi.svg");
|
|
19575
|
-
--aic-animation: aic-
|
|
19619
|
+
--aic-animation: aic-flip-3d;
|
|
19576
19620
|
--aic-origin: center;
|
|
19577
19621
|
}
|
|
19578
19622
|
|
|
@@ -20070,7 +20114,7 @@
|
|
|
20070
20114
|
|
|
20071
20115
|
.aic.aic-luc-line-dot-right-horizontal {
|
|
20072
20116
|
--aic-icon: url("./aic-icons/luc-line-dot-right-horizontal.svg");
|
|
20073
|
-
--aic-animation: aic-
|
|
20117
|
+
--aic-animation: aic-dot-appear;
|
|
20074
20118
|
--aic-origin: center;
|
|
20075
20119
|
}
|
|
20076
20120
|
|
|
@@ -20392,8 +20436,8 @@
|
|
|
20392
20436
|
|
|
20393
20437
|
.aic.aic-luc-mail-warning {
|
|
20394
20438
|
--aic-icon: url("./aic-icons/luc-mail-warning.svg");
|
|
20395
|
-
--aic-animation: aic-
|
|
20396
|
-
--aic-origin:
|
|
20439
|
+
--aic-animation: aic-flip-3d;
|
|
20440
|
+
--aic-origin: center;
|
|
20397
20441
|
}
|
|
20398
20442
|
|
|
20399
20443
|
.aic.aic-luc-mail-x {
|
|
@@ -20656,7 +20700,7 @@
|
|
|
20656
20700
|
|
|
20657
20701
|
.aic.aic-luc-message-circle-warning {
|
|
20658
20702
|
--aic-icon: url("./aic-icons/luc-message-circle-warning.svg");
|
|
20659
|
-
--aic-animation: aic-
|
|
20703
|
+
--aic-animation: aic-flip-3d;
|
|
20660
20704
|
--aic-origin: center;
|
|
20661
20705
|
}
|
|
20662
20706
|
|
|
@@ -20698,7 +20742,7 @@
|
|
|
20698
20742
|
|
|
20699
20743
|
.aic.aic-luc-message-square-dot {
|
|
20700
20744
|
--aic-icon: url("./aic-icons/luc-message-square-dot.svg");
|
|
20701
|
-
--aic-animation: aic-
|
|
20745
|
+
--aic-animation: aic-dot-appear;
|
|
20702
20746
|
--aic-origin: center;
|
|
20703
20747
|
}
|
|
20704
20748
|
|
|
@@ -20758,7 +20802,7 @@
|
|
|
20758
20802
|
|
|
20759
20803
|
.aic.aic-luc-message-square-warning {
|
|
20760
20804
|
--aic-icon: url("./aic-icons/luc-message-square-warning.svg");
|
|
20761
|
-
--aic-animation: aic-
|
|
20805
|
+
--aic-animation: aic-flip-3d;
|
|
20762
20806
|
--aic-origin: center;
|
|
20763
20807
|
}
|
|
20764
20808
|
|
|
@@ -20908,7 +20952,7 @@
|
|
|
20908
20952
|
|
|
20909
20953
|
.aic.aic-luc-monitor-dot {
|
|
20910
20954
|
--aic-icon: url("./aic-icons/luc-monitor-dot.svg");
|
|
20911
|
-
--aic-animation: aic-
|
|
20955
|
+
--aic-animation: aic-dot-appear;
|
|
20912
20956
|
--aic-origin: center;
|
|
20913
20957
|
}
|
|
20914
20958
|
|
|
@@ -21282,7 +21326,7 @@
|
|
|
21282
21326
|
|
|
21283
21327
|
.aic.aic-luc-octagon-alert {
|
|
21284
21328
|
--aic-icon: url("./aic-icons/luc-octagon-alert.svg");
|
|
21285
|
-
--aic-animation: aic-
|
|
21329
|
+
--aic-animation: aic-flip-3d;
|
|
21286
21330
|
--aic-origin: center;
|
|
21287
21331
|
}
|
|
21288
21332
|
|
|
@@ -21971,13 +22015,13 @@
|
|
|
21971
22015
|
|
|
21972
22016
|
.aic.aic-luc-plug-zap {
|
|
21973
22017
|
--aic-icon: url("./aic-icons/luc-plug-zap.svg");
|
|
21974
|
-
--aic-animation: aic-
|
|
22018
|
+
--aic-animation: aic-flip-in-3d;
|
|
21975
22019
|
--aic-origin: center;
|
|
21976
22020
|
}
|
|
21977
22021
|
|
|
21978
22022
|
.aic.aic-luc-plug-zap-2 {
|
|
21979
22023
|
--aic-icon: url("./aic-icons/luc-plug-zap-2.svg");
|
|
21980
|
-
--aic-animation: aic-
|
|
22024
|
+
--aic-animation: aic-flip-in-3d;
|
|
21981
22025
|
--aic-origin: center;
|
|
21982
22026
|
}
|
|
21983
22027
|
|
|
@@ -22311,7 +22355,8 @@
|
|
|
22311
22355
|
|
|
22312
22356
|
.aic.aic-luc-redo-dot {
|
|
22313
22357
|
--aic-icon: url("./aic-icons/luc-redo-dot.svg");
|
|
22314
|
-
--aic-animation: aic-
|
|
22358
|
+
--aic-animation: aic-dot-appear;
|
|
22359
|
+
--aic-origin: center;
|
|
22315
22360
|
}
|
|
22316
22361
|
|
|
22317
22362
|
.aic.aic-luc-refresh-ccw {
|
|
@@ -22322,7 +22367,7 @@
|
|
|
22322
22367
|
|
|
22323
22368
|
.aic.aic-luc-refresh-ccw-dot {
|
|
22324
22369
|
--aic-icon: url("./aic-icons/luc-refresh-ccw-dot.svg");
|
|
22325
|
-
--aic-animation: aic-
|
|
22370
|
+
--aic-animation: aic-dot-appear;
|
|
22326
22371
|
--aic-origin: center;
|
|
22327
22372
|
}
|
|
22328
22373
|
|
|
@@ -22633,13 +22678,13 @@
|
|
|
22633
22678
|
|
|
22634
22679
|
.aic.aic-luc-scan-eye {
|
|
22635
22680
|
--aic-icon: url("./aic-icons/luc-scan-eye.svg");
|
|
22636
|
-
--aic-animation: aic-
|
|
22681
|
+
--aic-animation: aic-orbit-3d;
|
|
22637
22682
|
--aic-origin: center;
|
|
22638
22683
|
}
|
|
22639
22684
|
|
|
22640
22685
|
.aic.aic-luc-scan-face {
|
|
22641
22686
|
--aic-icon: url("./aic-icons/luc-scan-face.svg");
|
|
22642
|
-
--aic-animation: aic-
|
|
22687
|
+
--aic-animation: aic-orbit-3d;
|
|
22643
22688
|
--aic-origin: center;
|
|
22644
22689
|
}
|
|
22645
22690
|
|
|
@@ -22753,7 +22798,7 @@
|
|
|
22753
22798
|
|
|
22754
22799
|
.aic.aic-luc-search-alert {
|
|
22755
22800
|
--aic-icon: url("./aic-icons/luc-search-alert.svg");
|
|
22756
|
-
--aic-animation: aic-
|
|
22801
|
+
--aic-animation: aic-flip-3d;
|
|
22757
22802
|
--aic-origin: center;
|
|
22758
22803
|
}
|
|
22759
22804
|
|
|
@@ -22903,7 +22948,7 @@
|
|
|
22903
22948
|
|
|
22904
22949
|
.aic.aic-luc-shield-alert {
|
|
22905
22950
|
--aic-icon: url("./aic-icons/luc-shield-alert.svg");
|
|
22906
|
-
--aic-animation: aic-
|
|
22951
|
+
--aic-animation: aic-flip-3d;
|
|
22907
22952
|
--aic-origin: center;
|
|
22908
22953
|
}
|
|
22909
22954
|
|
|
@@ -23089,31 +23134,31 @@
|
|
|
23089
23134
|
|
|
23090
23135
|
.aic.aic-luc-signal {
|
|
23091
23136
|
--aic-icon: url("./aic-icons/luc-signal.svg");
|
|
23092
|
-
--aic-animation: aic-
|
|
23137
|
+
--aic-animation: aic-flip-3d;
|
|
23093
23138
|
--aic-origin: center;
|
|
23094
23139
|
}
|
|
23095
23140
|
|
|
23096
23141
|
.aic.aic-luc-signal-high {
|
|
23097
23142
|
--aic-icon: url("./aic-icons/luc-signal-high.svg");
|
|
23098
|
-
--aic-animation: aic-
|
|
23143
|
+
--aic-animation: aic-flip-3d;
|
|
23099
23144
|
--aic-origin: center;
|
|
23100
23145
|
}
|
|
23101
23146
|
|
|
23102
23147
|
.aic.aic-luc-signal-low {
|
|
23103
23148
|
--aic-icon: url("./aic-icons/luc-signal-low.svg");
|
|
23104
|
-
--aic-animation: aic-
|
|
23149
|
+
--aic-animation: aic-flip-3d;
|
|
23105
23150
|
--aic-origin: center;
|
|
23106
23151
|
}
|
|
23107
23152
|
|
|
23108
23153
|
.aic.aic-luc-signal-medium {
|
|
23109
23154
|
--aic-icon: url("./aic-icons/luc-signal-medium.svg");
|
|
23110
|
-
--aic-animation: aic-
|
|
23155
|
+
--aic-animation: aic-flip-3d;
|
|
23111
23156
|
--aic-origin: center;
|
|
23112
23157
|
}
|
|
23113
23158
|
|
|
23114
23159
|
.aic.aic-luc-signal-zero {
|
|
23115
23160
|
--aic-icon: url("./aic-icons/luc-signal-zero.svg");
|
|
23116
|
-
--aic-animation: aic-
|
|
23161
|
+
--aic-animation: aic-flip-3d;
|
|
23117
23162
|
--aic-origin: center;
|
|
23118
23163
|
}
|
|
23119
23164
|
|
|
@@ -23292,13 +23337,13 @@
|
|
|
23292
23337
|
|
|
23293
23338
|
.aic.aic-luc-sparkle {
|
|
23294
23339
|
--aic-icon: url("./aic-icons/luc-sparkle.svg");
|
|
23295
|
-
--aic-animation: aic-
|
|
23340
|
+
--aic-animation: aic-flip-in-3d;
|
|
23296
23341
|
--aic-origin: center;
|
|
23297
23342
|
}
|
|
23298
23343
|
|
|
23299
23344
|
.aic.aic-luc-sparkles {
|
|
23300
23345
|
--aic-icon: url("./aic-icons/luc-sparkles.svg");
|
|
23301
|
-
--aic-animation: aic-
|
|
23346
|
+
--aic-animation: aic-flip-in-3d;
|
|
23302
23347
|
--aic-origin: center;
|
|
23303
23348
|
}
|
|
23304
23349
|
|
|
@@ -23574,7 +23619,7 @@
|
|
|
23574
23619
|
|
|
23575
23620
|
.aic.aic-luc-square-dot {
|
|
23576
23621
|
--aic-icon: url("./aic-icons/luc-square-dot.svg");
|
|
23577
|
-
--aic-animation: aic-
|
|
23622
|
+
--aic-animation: aic-dot-appear;
|
|
23578
23623
|
--aic-origin: center;
|
|
23579
23624
|
}
|
|
23580
23625
|
|
|
@@ -24566,7 +24611,7 @@
|
|
|
24566
24611
|
|
|
24567
24612
|
.aic.aic-luc-triangle-alert {
|
|
24568
24613
|
--aic-icon: url("./aic-icons/luc-triangle-alert.svg");
|
|
24569
|
-
--aic-animation: aic-
|
|
24614
|
+
--aic-animation: aic-flip-3d;
|
|
24570
24615
|
--aic-origin: center;
|
|
24571
24616
|
}
|
|
24572
24617
|
|
|
@@ -24696,7 +24741,8 @@
|
|
|
24696
24741
|
|
|
24697
24742
|
.aic.aic-luc-undo-dot {
|
|
24698
24743
|
--aic-icon: url("./aic-icons/luc-undo-dot.svg");
|
|
24699
|
-
--aic-animation: aic-
|
|
24744
|
+
--aic-animation: aic-dot-appear;
|
|
24745
|
+
--aic-origin: center;
|
|
24700
24746
|
}
|
|
24701
24747
|
|
|
24702
24748
|
.aic.aic-luc-unfold-horizontal {
|
|
@@ -25169,7 +25215,7 @@
|
|
|
25169
25215
|
|
|
25170
25216
|
.aic.aic-luc-wand-sparkles {
|
|
25171
25217
|
--aic-icon: url("./aic-icons/luc-wand-sparkles.svg");
|
|
25172
|
-
--aic-animation: aic-
|
|
25218
|
+
--aic-animation: aic-flip-in-3d;
|
|
25173
25219
|
--aic-origin: center;
|
|
25174
25220
|
}
|
|
25175
25221
|
|
|
@@ -25269,49 +25315,49 @@
|
|
|
25269
25315
|
|
|
25270
25316
|
.aic.aic-luc-wifi {
|
|
25271
25317
|
--aic-icon: url("./aic-icons/luc-wifi.svg");
|
|
25272
|
-
--aic-animation: aic-
|
|
25318
|
+
--aic-animation: aic-flip-3d;
|
|
25273
25319
|
--aic-origin: center;
|
|
25274
25320
|
}
|
|
25275
25321
|
|
|
25276
25322
|
.aic.aic-luc-wifi-cog {
|
|
25277
25323
|
--aic-icon: url("./aic-icons/luc-wifi-cog.svg");
|
|
25278
|
-
--aic-animation: aic-
|
|
25324
|
+
--aic-animation: aic-flip-3d;
|
|
25279
25325
|
--aic-origin: center;
|
|
25280
25326
|
}
|
|
25281
25327
|
|
|
25282
25328
|
.aic.aic-luc-wifi-high {
|
|
25283
25329
|
--aic-icon: url("./aic-icons/luc-wifi-high.svg");
|
|
25284
|
-
--aic-animation: aic-
|
|
25330
|
+
--aic-animation: aic-flip-3d;
|
|
25285
25331
|
--aic-origin: center;
|
|
25286
25332
|
}
|
|
25287
25333
|
|
|
25288
25334
|
.aic.aic-luc-wifi-low {
|
|
25289
25335
|
--aic-icon: url("./aic-icons/luc-wifi-low.svg");
|
|
25290
|
-
--aic-animation: aic-
|
|
25336
|
+
--aic-animation: aic-flip-3d;
|
|
25291
25337
|
--aic-origin: center;
|
|
25292
25338
|
}
|
|
25293
25339
|
|
|
25294
25340
|
.aic.aic-luc-wifi-off {
|
|
25295
25341
|
--aic-icon: url("./aic-icons/luc-wifi-off.svg");
|
|
25296
|
-
--aic-animation: aic-
|
|
25342
|
+
--aic-animation: aic-flip-3d;
|
|
25297
25343
|
--aic-origin: center;
|
|
25298
25344
|
}
|
|
25299
25345
|
|
|
25300
25346
|
.aic.aic-luc-wifi-pen {
|
|
25301
25347
|
--aic-icon: url("./aic-icons/luc-wifi-pen.svg");
|
|
25302
|
-
--aic-animation: aic-
|
|
25348
|
+
--aic-animation: aic-flip-3d;
|
|
25303
25349
|
--aic-origin: center;
|
|
25304
25350
|
}
|
|
25305
25351
|
|
|
25306
25352
|
.aic.aic-luc-wifi-sync {
|
|
25307
25353
|
--aic-icon: url("./aic-icons/luc-wifi-sync.svg");
|
|
25308
|
-
--aic-animation: aic-
|
|
25354
|
+
--aic-animation: aic-flip-3d;
|
|
25309
25355
|
--aic-origin: center;
|
|
25310
25356
|
}
|
|
25311
25357
|
|
|
25312
25358
|
.aic.aic-luc-wifi-zero {
|
|
25313
25359
|
--aic-icon: url("./aic-icons/luc-wifi-zero.svg");
|
|
25314
|
-
--aic-animation: aic-
|
|
25360
|
+
--aic-animation: aic-flip-3d;
|
|
25315
25361
|
--aic-origin: center;
|
|
25316
25362
|
}
|
|
25317
25363
|
|
|
@@ -25400,13 +25446,13 @@
|
|
|
25400
25446
|
|
|
25401
25447
|
.aic.aic-luc-zap {
|
|
25402
25448
|
--aic-icon: url("./aic-icons/luc-zap.svg");
|
|
25403
|
-
--aic-animation: aic-
|
|
25449
|
+
--aic-animation: aic-flip-in-3d;
|
|
25404
25450
|
--aic-origin: center;
|
|
25405
25451
|
}
|
|
25406
25452
|
|
|
25407
25453
|
.aic.aic-luc-zap-off {
|
|
25408
25454
|
--aic-icon: url("./aic-icons/luc-zap-off.svg");
|
|
25409
|
-
--aic-animation: aic-
|
|
25455
|
+
--aic-animation: aic-flip-in-3d;
|
|
25410
25456
|
--aic-origin: center;
|
|
25411
25457
|
}
|
|
25412
25458
|
|