@acorex/styles 7.5.0 → 7.8.0

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.
@@ -1,4 +1,4 @@
1
- @mixin solid-appearance() {
1
+ @mixin solid-look() {
2
2
  background-color: rgba(var(--ax-color-input-surface));
3
3
  border: 1px solid;
4
4
  border-color: rgba(var(--ax-color-border-default));
@@ -34,9 +34,11 @@
34
34
  }
35
35
  }
36
36
  }
37
- @mixin flat-appearance() {
37
+ @mixin flat-look() {
38
38
  border-bottom: 1px solid;
39
39
  border-color: rgba(var(--ax-color-border-default));
40
+ border-radius: 0;
41
+
40
42
  &:focus-within {
41
43
  border-color: rgba(var(--ax-color-primary-500));
42
44
  }
@@ -62,12 +64,12 @@
62
64
  }
63
65
  }
64
66
 
65
- @mixin outline-appearance() {
67
+ @mixin outline-look() {
66
68
  background-color: transparent !important;
67
69
  }
68
70
 
69
- @mixin fill-appearance() {
70
- background-color: rgba(var(--ax-color-input-surface-fill));
71
+ @mixin fill-look() {
72
+ background-color: rgba(var(--ax-color-on-surface));
71
73
  border-radius: var(--ax-rounded-border-default);
72
74
  &:focus-within {
73
75
  box-shadow: 0 0 0 2px rgba(var(--ax-color-primary-500));
@@ -9,7 +9,7 @@
9
9
 
10
10
  &:hover,
11
11
  &:focus {
12
- background-color: rgba(var(--ax-color-gray-200));
12
+ background-color: rgba(var(--ax-color-on-surface));
13
13
  color: rgba(var(--ax-color-#{$color}-600));
14
14
  }
15
15
 
@@ -32,8 +32,8 @@
32
32
  &:hover,
33
33
  &:focus,
34
34
  &:active {
35
- background-color: rgba(var(--ax-color-default));
36
- color: rgba(var(--ax-color-default-fore));
35
+ background-color: rgba(var(--ax-color-on-surface));
36
+ color: rgba(var(--ax-color-on-surface-fore));
37
37
  }
38
38
 
39
39
  &.ax-state-selected {
@@ -53,7 +53,7 @@
53
53
  font-size: 0.875rem;
54
54
  overflow-y: hidden;
55
55
  overflow-x: auto;
56
-
56
+ text-transform: capitalize;
57
57
  &.ax-state-disabled {
58
58
  opacity: 0.5;
59
59
  cursor: not-allowed;
@@ -121,12 +121,20 @@
121
121
  display: inline-flex;
122
122
  align-items: center;
123
123
  justify-content: flex-start;
124
- padding: 0.5rem 1rem;
124
+ padding: 0.5rem;
125
+ padding-inline-start: 1rem;
126
+ padding-inline-end: 2.5rem;
125
127
  font-size: 0.875rem;
126
128
  color: rgba(var(--ax-color-text-default));
127
129
  user-select: none;
128
130
  cursor: pointer;
129
131
 
132
+ &:hover {
133
+ &:not(&.ax-state-disabled) {
134
+ background-color: rgba(var(--ax-color-on-surface));
135
+ }
136
+ }
137
+
130
138
  &.ax-divide {
131
139
  border: 1px solid;
132
140
  border-color: rgba(var(--ax-color-border-default));
@@ -2,7 +2,7 @@
2
2
 
3
3
  @include darkMode() {
4
4
  .ax-editor-container {
5
- &.ax-appearance-fill {
5
+ &.ax-look-fill {
6
6
  &.ax-state-error {
7
7
  background-color: rgba(var(--ax-color-danger-500), 0.25);
8
8
  }
@@ -17,22 +17,23 @@
17
17
  width: 100%;
18
18
  height: var(--ax-size-default);
19
19
  display: flex;
20
+ align-items: center;
20
21
  color: rgba(var(--ax-color-input-surface-fore));
21
22
  font-size: 0.875rem;
22
23
  overflow: hidden;
23
-
24
- &.ax-appearance-solid,
25
- &.ax-appearance-outline {
26
- @include solid-appearance();
24
+ line-height: 1;
25
+ &.ax-look-solid,
26
+ &.ax-look-outline {
27
+ @include solid-look();
27
28
  }
28
- &.ax-appearance-flat {
29
- @include flat-appearance();
29
+ &.ax-look-flat {
30
+ @include flat-look();
30
31
  }
31
- &.ax-appearance-outline {
32
- @include outline-appearance();
32
+ &.ax-look-outline {
33
+ @include outline-look();
33
34
  }
34
- &.ax-appearance-fill {
35
- @include fill-appearance();
35
+ &.ax-look-fill {
36
+ @include fill-look();
36
37
  }
37
38
 
38
39
  .ax-editor-input {
@@ -46,7 +47,7 @@
46
47
  padding: 0 0.75rem;
47
48
 
48
49
  &::placeholder {
49
- color: rgba(var(--ax-color-text-default), 0.25);
50
+ color: rgba(var(--ax-color-text-default), 0.5);
50
51
  font-weight: 500;
51
52
  font-size: inherit;
52
53
  }
@@ -55,31 +56,33 @@
55
56
  &.ax-xs {
56
57
  .ax-input {
57
58
  font-size: 0.75rem;
58
- line-height: 1.25rem;
59
+ line-height: calc(var(--ax-size-base) - 0.75rem);
60
+ padding: 0.5rem;
59
61
  }
60
62
  }
61
63
  &.ax-sm {
62
64
  .ax-input {
63
65
  font-size: 0.875rem;
64
- line-height: 1.25rem;
66
+ line-height: calc(var(--ax-size-base) - 0.5rem);
67
+ padding: 0.5rem;
65
68
  }
66
69
  }
67
70
  &.ax-md {
68
71
  .ax-input {
69
72
  font-size: 0.875rem;
70
- line-height: 1.5rem;
73
+ line-height: var(--ax-size-base);
71
74
  }
72
75
  }
73
76
  &.ax-lg {
74
77
  .ax-input {
75
78
  font-size: 1.125rem;
76
- line-height: 1.5rem;
79
+ line-height: calc(var(--ax-size-base) + 0.5rem);
77
80
  }
78
81
  }
79
82
  &.ax-xl {
80
83
  .ax-input {
81
84
  font-size: 1.25rem;
82
- line-height: 1.5rem;
85
+ line-height: calc(var(--ax-size-base) + 1rem);
83
86
  }
84
87
  }
85
88
 
@@ -87,12 +90,13 @@
87
90
  display: flex;
88
91
  align-items: center;
89
92
  justify-content: center;
90
- width: var(--ax-size-default);
91
- min-width: var(--ax-size-default);
93
+ // width: var(--ax-size-default);
94
+ // min-width: var(--ax-size-default);
95
+ padding-inline-start: 0.5rem;
92
96
  height: 100%;
93
97
  font-size: 1.25rem;
94
98
  line-height: 1.25rem;
95
- color: rgba(var(--ax-color-default-fore));
99
+ color: rgba(var(--ax-color-text-default));
96
100
  }
97
101
 
98
102
  &.ax-button-icon {
@@ -139,6 +143,7 @@
139
143
 
140
144
  & > ax-prefix,
141
145
  & > ax-suffix {
146
+ height: 100%;
142
147
  * {
143
148
  height: 100%;
144
149
  display: flex;
@@ -182,15 +187,14 @@
182
187
  opacity: 0.5;
183
188
  }
184
189
  }
185
- span.ripple {
190
+ .ax-ripple {
186
191
  position: absolute;
187
192
  border-radius: 50%;
188
193
  transform: scale(0);
189
- animation: ripple 300ms linear;
190
- background-color: rgba(var(--ax-color-white), 0.7);
194
+ animation: ripple 225ms linear;
191
195
  @keyframes ripple {
192
196
  to {
193
- transform: scale(4);
197
+ transform: scale3d(1, 1, 1);
194
198
  opacity: 0;
195
199
  }
196
200
  }
@@ -7,16 +7,15 @@
7
7
  font-size: 0.875rem;
8
8
  cursor: pointer;
9
9
  transition: background-color 0.3s;
10
- color: rgba(var(--ax-color-default-fore), 0.6);
11
-
10
+ color: rgba(var(--ax-color-text-default), 0.6);
11
+ border-radius: var(--ax-rounded-border-default);
12
12
  &:is(&:hover):not(&:disabled, .ax-state-disabled) {
13
- background: rgba(var(--ax-color-default));
14
- color: rgba(var(--ax-color-default-fore), 0.87);
13
+ color: rgba(var(--ax-color-primary-500));
15
14
  }
16
15
 
17
16
  &:is(&:focus, &:focus-visible):not(&:disabled, .ax-state-disabled) {
18
- background-color: rgba(var(--ax-color-default));
19
- outline-color: transparent;
17
+ color: rgba(var(--ax-color-primary-700));
18
+ // outline-color: transparent;
20
19
  }
21
20
 
22
21
  &:is(&:active):not(&:disabled, .ax-state-disabled) {
@@ -26,8 +25,8 @@
26
25
  &.ax-button-icon {
27
26
  padding: 0 0.5rem;
28
27
  font-size: 1.25rem;
29
- min-width: var(--ax-size-default);
30
- width: var(--ax-size-default);
28
+ // min-width: var(--ax-size-default);
29
+ // width: var(--ax-size-default);
31
30
  // min-height: 100%;
32
31
  > button {
33
32
  display: flex;
@@ -45,3 +44,23 @@
45
44
  cursor: not-allowed;
46
45
  }
47
46
  }
47
+ .ax-clear-button {
48
+ font-size: 1rem;
49
+ line-height: 1;
50
+ color: rgba(var(--ax-color-text-default), 0.6);
51
+ height: var(--ax-size-default);
52
+ display: inline-flex;
53
+ align-items: center;
54
+ justify-content: center;
55
+ padding: 0 0.5rem;
56
+ > button {
57
+ display: flex;
58
+ }
59
+ &:is(&:hover):not(&:disabled, .ax-state-disabled) {
60
+ color: rgba(var(--ax-color-text-default), 0.75);
61
+ }
62
+ &:is(&:focus, &:focus-visible):not(&:disabled, .ax-state-disabled) {
63
+ color: rgba(var(--ax-color-text-default));
64
+ // outline-color: transparent;
65
+ }
66
+ }
@@ -122,8 +122,8 @@
122
122
  }
123
123
  }
124
124
  &.ax-state-selected {
125
- background-color: rgba(var(--ax-color-default)) !important;
126
- color: rgba(var(--ax-color-default-fore)) !important;
125
+ background-color: rgba(var(--ax-color-primary-500)) !important;
126
+ color: rgba(var(--ax-color-primary-fore)) !important;
127
127
  .ax-selected-icon {
128
128
  color: rgba(var(--ax-color-primary-500));
129
129
  font-size: 1.5rem;
@@ -142,10 +142,10 @@
142
142
 
143
143
  &:focus-visible,
144
144
  &:hover {
145
- background-color: rgba(var(--ax-color-default));
145
+ background-color: rgba(var(--ax-color-on-surface));
146
146
  }
147
147
  &.ax-state-focus {
148
- background-color: rgba(var(--ax-color-default));
148
+ background-color: rgba(var(--ax-color-on-surface));
149
149
  }
150
150
  }
151
151
  }
@@ -2,7 +2,7 @@
2
2
  @include darkMode() {
3
3
  .ax-table {
4
4
  thead {
5
- background-color: rgba(var(--ax-color-gray-900));
5
+ background-color: rgba(var(--ax-color-on-surface));
6
6
  }
7
7
  }
8
8
  }
@@ -21,7 +21,7 @@
21
21
  padding: 0.875rem 1rem;
22
22
  }
23
23
  thead {
24
- background-color: rgba(var(--ax-color-gray-200));
24
+ background-color: rgba(var(--ax-color-on-surface));
25
25
  border-bottom: 1px solid;
26
26
  border-color: rgba(var(--ax-color-border-default));
27
27
  th {
@@ -35,7 +35,7 @@
35
35
  tbody {
36
36
  tr {
37
37
  &:nth-child(even) {
38
- background-color: rgba(var(--ax-color-gray-200));
38
+ background-color: rgba(var(--ax-color-on-surface));
39
39
  }
40
40
  }
41
41
  }
@@ -5,26 +5,6 @@
5
5
  vertical-align: middle;
6
6
  }
7
7
 
8
- .ax-rotaion-0 {
9
- transform: rotate(0);
10
- }
11
-
12
- @each $deg in $degrees {
13
- .ax-rotation-#{$deg} {
14
- transform: rotate(#{$deg}deg);
15
- }
16
-
17
- .-ax-rotation-#{$deg} {
18
- transform: rotate(-#{$deg}deg);
19
- }
20
- }
21
-
22
- .ax-transition-all {
23
- transition-property: all;
24
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25
- transition-duration: 150ms;
26
- }
27
-
28
8
  .ax-w-full {
29
9
  width: 100%;
30
10
  }
@@ -50,6 +30,32 @@
50
30
  border-color: rgba(var(--ax-color-border-default));
51
31
  border-radius: var(--ax-rounded-border-default);
52
32
  }
33
+
53
34
  .ax-hidden {
54
35
  display: none;
55
36
  }
37
+
38
+ .ax-drop-over-state {
39
+ width: 100%;
40
+ height: 100%;
41
+ position: absolute;
42
+ top: 0;
43
+ inset-inline-start: 0;
44
+ background-color: rgba(var(--ax-color-primary-500), 0.15);
45
+ pointer-events: none;
46
+ outline: 2px dashed rgba(var(--ax-color-primary-500));
47
+ outline-offset: -4px;
48
+ border-radius: inherit;
49
+ display: flex;
50
+ align-items: center;
51
+ justify-content: center;
52
+ flex-direction: column;
53
+ font-size: 0.875rem;
54
+ gap: 0.5rem;
55
+ cursor: pointer;
56
+ color: rgba(var(--ax-color-primary-700));
57
+ transition: all 0.3s;
58
+ .ax-icon {
59
+ font-size: 1.5rem;
60
+ }
61
+ }
@@ -1,13 +1,11 @@
1
- @import "./actionsheet";
2
- @import "./check-box";
3
- @import "./decoration";
4
- @import "./drop-down";
5
- @import "./editor-container";
6
- @import "./general-button";
7
- @import "./icon-control";
8
- @import "./inputs";
9
- @import "./list";
10
- @import "./radio";
11
- @import "./skeleton";
12
- @import "./table";
13
- @import "./utils";
1
+ @import './actionsheet';
2
+ @import './check-box';
3
+ @import './decoration';
4
+ @import './drop-down';
5
+ @import './editor-container';
6
+ @import './general-button';
7
+ @import './inputs';
8
+ @import './list';
9
+ @import './radio';
10
+ @import './table';
11
+ @import './utils';
@@ -5,26 +5,23 @@
5
5
  --ax-rounded-border-default: 0.5rem;
6
6
  --ax-color-border-default: 224, 224, 224;
7
7
 
8
- --ax-color-background-default: 246, 247, 249;
8
+ --ax-color-background-default: 249, 250, 251;
9
9
  --ax-color-text-default: 22, 22, 22;
10
10
 
11
11
  --ax-color-surface: 255, 255, 255;
12
12
  --ax-color-surface-fore: 22, 22, 22;
13
13
 
14
- --ax-color-on-surface: 248, 248, 248;
14
+ --ax-color-on-surface: 243, 244, 246;
15
15
  --ax-color-on-surface-fore: 22, 22, 22;
16
16
 
17
17
  --ax-color-input-surface: 255, 255, 255;
18
- --ax-color-input-surface-fill: 247, 247, 247;
19
18
  --ax-color-input-surface-fore: 22, 22, 22;
20
19
 
21
- --ax-color-default: 229, 231, 235;
22
- --ax-color-default-fore: 22, 22, 22;
23
-
24
20
  --ax-color-ghost: 255, 255, 255;
25
21
  --ax-color-ghost-fore: 22, 22, 22;
26
22
 
27
23
  --ax-color-primary-fore: 255, 255, 255;
24
+ --ax-color-primary-fore-lighten: 29, 78, 216;
28
25
  --ax-color-primary-50: 239, 246, 255;
29
26
  --ax-color-primary-100: 219, 234, 254;
30
27
  --ax-color-primary-200: 191, 219, 254;
@@ -38,6 +35,7 @@
38
35
  --ax-color-primary-950: 23, 37, 84;
39
36
 
40
37
  --ax-color-secondary-fore: 255, 255, 255;
38
+ --ax-color-secondary-fore-lighten: 57, 65, 79;
41
39
  --ax-color-secondary-50: 233, 234, 236;
42
40
  --ax-color-secondary-100: 200, 203, 208;
43
41
  --ax-color-secondary-200: 164, 169, 176;
@@ -51,6 +49,7 @@
51
49
  --ax-color-secondary-950: 22, 27, 35;
52
50
 
53
51
  --ax-color-success-fore: 255, 255, 255;
52
+ --ax-color-success-fore-lighten: 4, 120, 87;
54
53
  --ax-color-success-50: 236, 253, 245;
55
54
  --ax-color-success-100: 209, 250, 229;
56
55
  --ax-color-success-200: 167, 243, 208;
@@ -64,6 +63,7 @@
64
63
  --ax-color-success-950: 2, 44, 34;
65
64
 
66
65
  --ax-color-danger-fore: 255, 255, 255;
66
+ --ax-color-danger-fore-lighten: 185, 28, 28;
67
67
  --ax-color-danger-50: 254, 242, 242;
68
68
  --ax-color-danger-100: 254, 226, 226;
69
69
  --ax-color-danger-200: 254, 202, 202;
@@ -77,6 +77,7 @@
77
77
  --ax-color-danger-950: 69, 10, 10;
78
78
 
79
79
  --ax-color-warning-fore: 48, 26, 10;
80
+ --ax-color-warning-fore-lighten: 255, 160, 0;
80
81
  --ax-color-warning-50: 255, 248, 225;
81
82
  --ax-color-warning-100: 255, 236, 179;
82
83
  --ax-color-warning-200: 255, 224, 130;
@@ -90,6 +91,7 @@
90
91
  --ax-color-warning-950: 72, 40, 15;
91
92
 
92
93
  --ax-color-info-fore: 255, 255, 255;
94
+ --ax-color-info-fore-lighten: 67, 56, 202;
93
95
  --ax-color-info-50: 238, 242, 255;
94
96
  --ax-color-info-100: 224, 231, 255;
95
97
  --ax-color-info-200: 199, 210, 254;
@@ -102,28 +104,28 @@
102
104
  --ax-color-info-900: 49, 46, 129;
103
105
  --ax-color-info-950: 30, 27, 75;
104
106
 
105
- --ax-color-gray-fore: 3, 7, 18;
106
- --ax-color-gray-50: 249, 250, 251;
107
- --ax-color-gray-100: 243, 244, 246;
108
- --ax-color-gray-200: 229, 231, 235;
109
- --ax-color-gray-300: 209, 213, 219;
110
- --ax-color-gray-400: 156, 163, 175;
111
- --ax-color-gray-500: 107, 114, 128;
112
- --ax-color-gray-600: 75, 85, 99;
113
- --ax-color-gray-700: 55, 65, 81;
114
- --ax-color-gray-800: 31, 41, 55;
115
- --ax-color-gray-900: 17, 24, 39;
116
- --ax-color-gray-950: 3, 7, 18;
107
+ --ax-color-neutral-fore: 3, 7, 18;
108
+ --ax-color-neutral-fore-lighten: 55, 65, 81;
109
+ --ax-color-neutral-50: 249, 250, 251;
110
+ --ax-color-neutral-100: 243, 244, 246;
111
+ --ax-color-neutral-200: 229, 231, 235;
112
+ --ax-color-neutral-300: 209, 213, 219;
113
+ --ax-color-neutral-400: 156, 163, 175;
114
+ --ax-color-neutral-500: 107, 114, 128;
115
+ --ax-color-neutral-600: 75, 85, 99;
116
+ --ax-color-neutral-700: 55, 65, 81;
117
+ --ax-color-neutral-800: 31, 41, 55;
118
+ --ax-color-neutral-900: 17, 24, 39;
119
+ --ax-color-neutral-950: 3, 7, 18;
117
120
  }
118
121
 
119
122
  .ax-dark {
120
123
  --ax-color-border-default: 75, 85, 99;
121
124
 
122
- --ax-color-background-default: 23, 23, 23;
125
+ --ax-color-background-default: 24, 32, 43;
123
126
  --ax-color-text-default: 255, 255, 255;
124
127
 
125
128
  --ax-color-surface: 31, 41, 55;
126
- --ax-color-input-surface-fill: 31, 41, 55;
127
129
  --ax-color-surface-fore: 255, 255, 255;
128
130
 
129
131
  --ax-color-on-surface: 55, 65, 81;
@@ -132,9 +134,6 @@
132
134
  --ax-color-input-surface: 38, 45, 57;
133
135
  --ax-color-input-surface-fore: 224, 224, 224;
134
136
 
135
- --ax-color-default: 77, 91, 113;
136
- --ax-color-default-fore: 255, 255, 255;
137
-
138
137
  --ax-color-ghost: 77, 91, 113;
139
138
  --ax-color-ghost-fore: 255, 255, 255;
140
139
  }
@@ -1,2 +1,2 @@
1
1
  $color_names: 'primary', 'secondary', 'success', 'warning', 'danger', 'info';
2
- $look_names: 'default', 'outline', 'blank';
2
+ $look_names: 'solid', 'twotone', 'outline', 'blank';
package/tailwind-base.js CHANGED
@@ -117,20 +117,20 @@ module.exports = withAnimations({
117
117
  900: withOpacityValue('--ax-color-info-900'),
118
118
  950: withOpacityValue('--ax-color-info-950'),
119
119
  },
120
- gray: {
121
- DEFAULT: withOpacityValue('--ax-color-gray-500'),
122
- fore: withOpacityValue('--ax-color-gray-fore'),
123
- 50: withOpacityValue('--ax-color-gray-50'),
124
- 100: withOpacityValue('--ax-color-gray-100'),
125
- 200: withOpacityValue('--ax-color-gray-200'),
126
- 300: withOpacityValue('--ax-color-gray-300'),
127
- 400: withOpacityValue('--ax-color-gray-400'),
128
- 500: withOpacityValue('--ax-color-gray-500'),
129
- 600: withOpacityValue('--ax-color-gray-600'),
130
- 700: withOpacityValue('--ax-color-gray-700'),
131
- 800: withOpacityValue('--ax-color-gray-800'),
132
- 900: withOpacityValue('--ax-color-gray-900'),
133
- 950: withOpacityValue('--ax-color-gray-950'),
120
+ neutral: {
121
+ DEFAULT: withOpacityValue('--ax-color-neutral-500'),
122
+ fore: withOpacityValue('--ax-color-neutral-fore'),
123
+ 50: withOpacityValue('--ax-color-neutral-50'),
124
+ 100: withOpacityValue('--ax-color-neutral-100'),
125
+ 200: withOpacityValue('--ax-color-neutral-200'),
126
+ 300: withOpacityValue('--ax-color-neutral-300'),
127
+ 400: withOpacityValue('--ax-color-neutral-400'),
128
+ 500: withOpacityValue('--ax-color-neutral-500'),
129
+ 600: withOpacityValue('--ax-color-neutral-600'),
130
+ 700: withOpacityValue('--ax-color-neutral-700'),
131
+ 800: withOpacityValue('--ax-color-neutral-800'),
132
+ 900: withOpacityValue('--ax-color-neutral-900'),
133
+ 950: withOpacityValue('--ax-color-neutral-950'),
134
134
  },
135
135
  },
136
136
  textColor: {
@@ -277,12 +277,6 @@ module.exports = withAnimations({
277
277
  '.tabs-fit': {
278
278
  width: '100%',
279
279
  },
280
- '.skeleton': {
281
- position: 'relative',
282
- overflow: 'hidden',
283
- backgroundColor: 'rgba(var(--ax-color-default), 0.15)',
284
- },
285
- '.skeleton-animate': {},
286
280
  '.xs': {
287
281
  '--ax-size-default': '2rem',
288
282
  },
File without changes
@@ -1,26 +0,0 @@
1
- .ax-skeleton {
2
- position: relative;
3
- overflow: hidden;
4
- background-color: rgba(var(--ax-color-default));
5
- &.ax-skeleton-animate {
6
- &::before {
7
- content: '';
8
- display: block;
9
- position: absolute;
10
- top: 0;
11
- height: 100%;
12
- width: 14rem;
13
- left: -200px;
14
- background: linear-gradient(to right, transparent 0%, rgba(var(--ax-color-default-fore), 0.15) 50%, transparent 100%);
15
- animation: load 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
16
- }
17
- }
18
- }
19
- @keyframes load {
20
- from {
21
- left: -200px;
22
- }
23
- to {
24
- left: 100%;
25
- }
26
- }