@aws-amplify/ui 2.0.4-unstable.93 → 3.0.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.
Files changed (63) hide show
  1. package/README.md +7 -0
  2. package/dist/esm/index.js +32 -0
  3. package/dist/esm/index.js.map +7 -0
  4. package/dist/index.d.ts +788 -0
  5. package/dist/index.js +32 -0
  6. package/dist/index.js.map +7 -0
  7. package/dist/styles.css +2697 -0
  8. package/dist/theme.css +781 -0
  9. package/package.json +51 -28
  10. package/CHANGELOG.md +0 -331
  11. package/Readme.md +0 -5
  12. package/dist/aws-amplify-ui.js +0 -2
  13. package/dist/aws-amplify-ui.js.map +0 -1
  14. package/dist/aws-amplify-ui.min.js +0 -2
  15. package/dist/aws-amplify-ui.min.js.map +0 -1
  16. package/dist/style.css +0 -775
  17. package/dist/style.css.map +0 -1
  18. package/lib/Anchor.css.d.ts +0 -2
  19. package/lib/Button.css.d.ts +0 -10
  20. package/lib/Form.css.d.ts +0 -5
  21. package/lib/Hint.css.d.ts +0 -2
  22. package/lib/Input.css.d.ts +0 -5
  23. package/lib/Nav.css.d.ts +0 -5
  24. package/lib/PhotoPicker.css.d.ts +0 -4
  25. package/lib/Section.css.d.ts +0 -10
  26. package/lib/SelectInput.css.d.ts +0 -2
  27. package/lib/Strike.css.d.ts +0 -3
  28. package/lib/Toast.css.d.ts +0 -3
  29. package/lib/Totp.css.d.ts +0 -2
  30. package/lib/XR.css.d.ts +0 -17
  31. package/lib/index.d.ts +0 -13
  32. package/postcss.config.js +0 -3
  33. package/src/Anchor.css +0 -10
  34. package/src/Anchor.css.d.ts +0 -2
  35. package/src/Angular.css +0 -607
  36. package/src/Button.css +0 -131
  37. package/src/Button.css.d.ts +0 -10
  38. package/src/Form.css +0 -43
  39. package/src/Form.css.d.ts +0 -5
  40. package/src/Hint.css +0 -6
  41. package/src/Hint.css.d.ts +0 -2
  42. package/src/Input.css +0 -41
  43. package/src/Input.css.d.ts +0 -5
  44. package/src/Nav.css +0 -21
  45. package/src/Nav.css.d.ts +0 -5
  46. package/src/PhotoPicker.css +0 -15
  47. package/src/PhotoPicker.css.d.ts +0 -4
  48. package/src/Section.css +0 -67
  49. package/src/Section.css.d.ts +0 -10
  50. package/src/SelectInput.css +0 -36
  51. package/src/SelectInput.css.d.ts +0 -2
  52. package/src/Strike.css +0 -17
  53. package/src/Strike.css.d.ts +0 -3
  54. package/src/Theme.css +0 -150
  55. package/src/Toast.css +0 -63
  56. package/src/Toast.css.d.ts +0 -3
  57. package/src/Totp.css +0 -4
  58. package/src/Totp.css.d.ts +0 -2
  59. package/src/XR.css +0 -201
  60. package/src/XR.css.d.ts +0 -17
  61. package/src/index.ts +0 -25
  62. package/tsconfig.json +0 -29
  63. package/webpack.config.js +0 -63
package/dist/style.css DELETED
@@ -1,775 +0,0 @@
1
- /*
2
- * Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
- * the License. A copy of the License is located at
6
- *
7
- * http://aws.amazon.com/apache2.0/
8
- *
9
- * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
10
- * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
11
- * and limitations under the License.
12
- */
13
- :root {
14
-
15
- /* Colors */
16
- --amazonOrange: #FF9900;
17
- --lightAmazonOrange: #FFAC31;
18
- --darkAmazonOrange: #E88B01;
19
- --squidInk: #232F3E;
20
- --lightSquidInk: #31465F;
21
- --deepSquidInk: #152939;
22
- --grey: #828282;
23
- --lightGrey: #C4C4C4;
24
- --silver: #E1E4EA;
25
- --darkBlue: #31465F;
26
- --red: #DD3F5B;
27
- --white: #FFFFFF;
28
- --light-blue: #00a1c9;
29
-
30
-
31
- /* Theme */
32
- --button-color: var(--white);
33
- --button-background-color: var(--amazonOrange);
34
- --button-click: var(--darkAmazonOrange);
35
- --link-color: var(--amazonOrange);
36
- --form-color: var(--white);
37
- --input-color: var(--deepSquidInk);
38
- --input-background-color: var(--white);
39
-
40
- --font-family: "Amazon Ember","Helvetica Neue Light","Helvetica Neue","Helvetica" ,"Arial","sans-serif";
41
- --body-background: #F8F4F4;
42
-
43
- /** Angular Theme **/
44
- --component-width-desktop: 460px;
45
- --component-width-mobile: 100%;
46
-
47
- --color-primary: #FF9900;
48
- --color-primary-accent: #232F3E;
49
- --color-primary-highlight: #FFC46D;
50
-
51
- --color-background:#232F3E;
52
-
53
- --color-secondary: #152939;
54
- --color-secondary-accent: #31465F;
55
-
56
- --color-danger: #DD3F5B;
57
- --color-error: #D0021B;
58
-
59
- --color-accent-brown: #828282;
60
- --color-accent-blue: #E1E4EA;
61
-
62
- --gradient-blaze: linear-gradient(270deg, #FFC300 0%, #FF9000 100%);
63
-
64
- --color-blue: #007EB9;
65
- --color-purple: #527FFF;
66
- --color-gray: #828282;
67
- --color-white: #FFFFFF;
68
-
69
- --input-border: 1px solid #C4C4C4;
70
- --input-padding: 0.5em 0.5em 0.3em 1em;
71
-
72
- --box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.15);
73
- --button-height: 42px;
74
-
75
- --interactions-conversation-height: 250px;
76
-
77
- /* Ionic Theme */
78
-
79
- /** primary **/
80
- --ion-color-primary: #FF9900;
81
- --ion-color-primary-rgb: 255,153,0;
82
- --ion-color-primary-contrast: #fff;
83
- --ion-color-primary-contrast-rgb: 255,255,255;
84
- --ion-color-primary-shade: #232F3E;
85
- --ion-color-primary-tint: #FFC46D;
86
-
87
- /** secondary **/
88
- --ion-color-secondary: #32db64;
89
- --ion-color-secondary-rgb: 50,219,100;
90
- --ion-color-secondary-contrast: #fff;
91
- --ion-color-secondary-contrast-rgb: 255,255,255;
92
- --ion-color-secondary-shade: #2cc158;
93
- --ion-color-secondary-tint: #47df74;
94
-
95
- /** tertiary **/
96
- --ion-color-tertiary: #f4a942;
97
- --ion-color-tertiary-rgb: 244,169,66;
98
- --ion-color-tertiary-contrast: #fff;
99
- --ion-color-tertiary-contrast-rgb: 255,255,255;
100
- --ion-color-tertiary-shade: #d7953a;
101
- --ion-color-tertiary-tint: #f5b255;
102
-
103
- /** success **/
104
- --ion-color-success: #10dc60;
105
- --ion-color-success-rgb: 16,220,96;
106
- --ion-color-success-contrast: #fff;
107
- --ion-color-success-contrast-rgb: 255,255,255;
108
- --ion-color-success-shade: #0ec254;
109
- --ion-color-success-tint: #28e070;
110
-
111
- /** warning **/
112
- --ion-color-warning: #ffce00;
113
- --ion-color-warning-rgb: 255,206,0;
114
- --ion-color-warning-contrast: #000;
115
- --ion-color-warning-contrast-rgb: 0,0,0;
116
- --ion-color-warning-shade: #e0b500;
117
- --ion-color-warning-tint: #ffd31a;
118
-
119
- /** danger **/
120
- --ion-color-danger: #f53d3d;
121
- --ion-color-danger-rgb: 245,61,61;
122
- --ion-color-danger-contrast: #fff;
123
- --ion-color-danger-contrast-rgb: 255,255,255;
124
- --ion-color-danger-shade: #d83636;
125
- --ion-color-danger-tint: #f65050;
126
-
127
- /** light **/
128
- --ion-color-light: #f4f4f4;
129
- --ion-color-light-rgb: 244,244,244;
130
- --ion-color-light-contrast: #000;
131
- --ion-color-light-contrast-rgb: 0,0,0;
132
- --ion-color-light-shade: #d7d7d7;
133
- --ion-color-light-tint: #f5f5f5;
134
-
135
- /** medium **/
136
- --ion-color-medium: #989aa2;
137
- --ion-color-medium-rgb: 152,154,162;
138
- --ion-color-medium-contrast: #000;
139
- --ion-color-medium-contrast-rgb: 0,0,0;
140
- --ion-color-medium-shade: #86888f;
141
- --ion-color-medium-tint: #a2a4ab;
142
-
143
- /** dark **/
144
- --ion-color-dark: #222;
145
- --ion-color-dark-rgb: 34,34,34;
146
- --ion-color-dark-contrast: #fff;
147
- --ion-color-dark-contrast-rgb: 255,255,255;
148
- --ion-color-dark-shade: #1e1e1e;
149
- --ion-color-dark-tint: #383838;
150
- }
151
-
152
- .Anchor__a___1_Iz8 {
153
- color: var(--link-color);
154
- cursor: pointer;
155
- }
156
-
157
- .Anchor__a___1_Iz8:hover {
158
- text-decoration: underline;
159
- }
160
- .Button__button___vS7Mv {
161
- min-width: 153px;
162
- display: inline-block;
163
- margin-bottom: 0;
164
- font-size: 12px;
165
- font-weight: 400;
166
- line-height: 1.42857143;
167
- text-align: center;
168
- white-space: nowrap;
169
- vertical-align: middle;
170
- touch-action: manipulation;
171
- cursor: pointer;
172
- -webkit-user-select: none;
173
- -moz-user-select: none;
174
- -ms-user-select: none;
175
- user-select: none;
176
- background-image: none;
177
- color: var(--button-color);
178
- background-color: var(--button-background-color);
179
- border-color: #ccc;
180
- text-transform: uppercase;
181
- padding: 14px 0;
182
- letter-spacing: 1.1px;
183
- border: none;
184
- }
185
-
186
- .Button__button___vS7Mv:active {
187
- opacity: 1;
188
- background-color: var(--button-click);
189
- }
190
-
191
- .Button__button___vS7Mv:hover,
192
- .Button__signInButton___3bUH-:hover {
193
- opacity: 0.8;
194
- }
195
-
196
- .Button__button___vS7Mv:disabled {
197
- opacity: 1;
198
- cursor: auto;
199
- background-color: var(--ion-color-primary-tint);
200
- }
201
-
202
- .Button__signInButton___3bUH- {
203
- position: relative;
204
- width: 100%;
205
- border-radius: 4px;
206
- margin-bottom: 10px;
207
- cursor: pointer;
208
- padding: 0;
209
- color: var(--deepSquidInk);
210
- font-size: 14px;
211
- box-sizing: content-box;
212
- }
213
-
214
- #Button__googleSignInButton___1YiCu {
215
- background-color: #4285f4;
216
- font-family: Roboto;
217
- border: 1px solid #4285f4;
218
- color: var(--white);
219
- }
220
-
221
- #Button__googleSignInButton___1YiCu > .Button__signInButtonIcon___ihN75 {
222
- background-color: var(--white);
223
- border-radius: 4px 0 0 4px;
224
- height: 28px;
225
- width: 28px;
226
- padding: 12px;
227
- }
228
-
229
- #Button__auth0SignInButton___znnCj {
230
- background-color: #eb5424;
231
- font-family: Roboto;
232
- border: 1px solid #e14615;
233
- color: #fff;
234
- }
235
-
236
- #Button__auth0SignInButton___znnCj > .Button__signInButtonIcon___ihN75 {
237
- border-radius: 4px 0 0 4px;
238
- height: 28px;
239
- width: 28px;
240
- padding: 12px;
241
- fill: #fff;
242
- }
243
-
244
- #Button__facebookSignInButton___34Txh {
245
- background-color: #4267b2;
246
- border-color: #4267b2;
247
- font-family: 'Helvetica Neue';
248
- color: var(--white);
249
- }
250
-
251
- #Button__facebookSignInButton___34Txh > .Button__signInButtonIcon___ihN75 {
252
- height: 33px;
253
- width: 18px;
254
- padding: 10px 14px;
255
- }
256
-
257
- #Button__amazonSignInButton___2EMtl {
258
- background-color: var(--amazonOrange);
259
- border: none;
260
- color: var(--white);
261
- font-family: 'Amazon Ember';
262
- }
263
-
264
- #Button__amazonSignInButton___2EMtl > .Button__signInButtonIcon___ihN75 {
265
- padding: 10px;
266
- height: 32px;
267
- width: 32px;
268
- }
269
-
270
- #Button__oAuthSignInButton___3UGOl {
271
- background-color: var(--white);
272
- color: var(--deepSquidInk);
273
- }
274
-
275
- .Button__signInButtonIcon___ihN75 {
276
- position: absolute;
277
- left: 0;
278
- box-sizing: content-box;
279
- }
280
-
281
- .Button__signInButtonContent___xqTXJ {
282
- text-align: center;
283
- display: block;
284
- padding: 18px 0;
285
- text-align: left;
286
- white-space: nowrap;
287
- overflow: hidden;
288
- text-overflow: ellipsis;
289
- text-align: center;
290
- line-height: initial;
291
- }
292
-
293
- .Form__formContainer___1GA3x {
294
- text-align: center;
295
- margin-top: 20px;
296
- margin: 5% auto 50px;
297
- }
298
-
299
- .Form__formSection___1PPvW {
300
- position: relative;
301
- margin-bottom: 20px;
302
- background-color: var(--form-color);
303
- padding: 35px 40px;
304
- text-align: left;
305
- display: inline-block;
306
- min-width: 460px;
307
- border-radius: 6px;
308
- box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.15);
309
- box-sizing: border-box;
310
- }
311
-
312
- .Form__formField___38Ikl {
313
- margin-bottom: 22px;
314
- }
315
-
316
- .Form__formRow___2mwRs {
317
- margin-bottom: 12px;
318
- }
319
-
320
- @media only screen and (max-width: 599px) {
321
- .Form__formContainer___1GA3x {
322
- margin: 0;
323
- }
324
-
325
- .Form__formSection___1PPvW {
326
- width: 100%;
327
- box-sizing: border-box;
328
- padding: 35px 25px;
329
- box-shadow: none;
330
- border-radius: 0;
331
- min-width: auto;
332
- }
333
- }
334
- .Hint__hint___2XngB {
335
- color: var(--grey);
336
- font-size: 12px;
337
- }
338
- .Input__input___3e_bf {
339
- display: block;
340
- width: 100%;
341
- padding: 16px;
342
- font-size: 14px;
343
- color: var(--input-color);
344
- background-color: var(--input-background-color);
345
- background-image: none;
346
- border: 1px solid var(--lightGrey);
347
- border-radius: 3px;
348
- box-sizing: border-box;
349
- margin-bottom: 10px;
350
- }
351
-
352
- .Input__input___3e_bf:disabled {
353
- color: #545454;
354
- background-color: var(--silver);
355
- }
356
-
357
- .Input__inputLabel___3VF0S {
358
- color: var(--input-color);
359
- font-size: 14px;
360
- margin-bottom: 8px;
361
- }
362
-
363
- .Input__label___23sO8 {
364
- color: var(--input-color);
365
- }
366
-
367
- .Input__radio___2hllK {
368
- margin-right: 18px;
369
- vertical-align: bottom;
370
- }
371
-
372
- @media only screen and (max-width: 599px) {
373
- .Input__input___3e_bf {
374
- font-size: 16px;
375
- }
376
- }
377
- .Nav__navBar___xtCFA {
378
- position: relative;
379
- border: 1px solid transparent;
380
- border-color: #e7e7e7;
381
- background-color: #fff;
382
- }
383
-
384
- .Nav__navRight___1QG2J {
385
- text-align: right
386
- }
387
-
388
- .Nav__nav___2Dx2Y {
389
- padding: 10px;
390
- }
391
-
392
- .Nav__navItem___1LtFQ {
393
- display: inline-block;
394
- padding: 10px 5px;
395
- line-height: 20px;
396
- margin-right: 12px;
397
- }
398
- .PhotoPicker__photoPickerButton___2XdVn {
399
- width: 100%;
400
- }
401
-
402
- .PhotoPicker__photoPlaceholder___2JXO4 {
403
- border: 2px dotted var(--grey);
404
- padding: 64px 0 64px;
405
- }
406
-
407
- .PhotoPicker__photoPlaceholderIcon___3Et71 {
408
- text-align: center;
409
- opacity: 0.2;
410
- }
411
- .Section__container___3YYTG {
412
- font-weight: 400;
413
- }
414
-
415
- .Section__actionRow___2LWSU {
416
- margin-bottom: 15px;
417
- }
418
-
419
- .Section__sectionHeader___2djyg {
420
- color: var(--deepSquidInk);
421
- margin-bottom: 24px;
422
- font-size: 18px;
423
- font-weight: 500;
424
- }
425
-
426
- .Section__sectionHeaderHint___3Wxdc {
427
- color: var(--grey);
428
- font-size: 16px;
429
- font-weight: 400;
430
- margin-top: 4px;
431
- }
432
-
433
- .Section__sectionBody___ihqqd {
434
- margin-bottom: 30px;
435
- }
436
-
437
- .Section__sectionHeaderContent___1UCqa {
438
- }
439
-
440
- .Section__sectionFooter___1T54C {
441
- font-size: 14px;
442
- color: var(--grey);
443
- display: flex;
444
- flex-direction: row-reverse;
445
- align-items: flex-start;
446
- }
447
-
448
- .Section__sectionFooterPrimaryContent___2r9ZX {
449
- margin-left: auto;
450
- }
451
-
452
- .Section__sectionFooterSecondaryContent___Nj41Q {
453
- margin-right: auto;
454
- align-self: center;
455
- }
456
-
457
- @media only screen and (max-width: 599px) {
458
- .Section__sectionFooter___1T54C {
459
- flex-wrap: wrap;
460
- }
461
-
462
- .Section__sectionFooterPrimaryContent___2r9ZX {
463
- width: 100%;
464
- margin-bottom: 32px;
465
- }
466
-
467
- .Section__sectionFooterPrimaryContent___2r9ZX > button {
468
- width: 100%;
469
- }
470
-
471
- .Section__sectionFooterSecondaryContent___Nj41Q {
472
- text-align: center;
473
- flex: 0 0 100%;
474
- }
475
- }
476
-
477
- .SelectInput__selectInput___3efO4 {
478
- display: flex;
479
- }
480
-
481
- .SelectInput__selectInput___3efO4 > input {
482
- flex: 1;
483
- border-radius: 0 3px 3px 0 !important;
484
- }
485
-
486
- .SelectInput__selectInput___3efO4 > select {
487
- padding: 16px 20px 16px 16px;
488
- font-size: 14px;
489
- color: var(--deepSquidInk);
490
- background-color: #fff;
491
- background-image: none;
492
- border: 1px solid var(--lightGrey);
493
- border-right: none;
494
- border-radius: 3px 0 0 3px;
495
- box-sizing: border-box;
496
- margin-bottom: 10px;
497
- -webkit-appearance: none;
498
- -moz-appearance: none;
499
- appearance: none;
500
- flex-basis: 22%;
501
- width: 1%;
502
-
503
- background-image: linear-gradient(45deg, transparent 50%, gray 50%),
504
- linear-gradient(135deg, gray 50%, transparent 50%),
505
- linear-gradient(to right, #ccc, #ccc);
506
- background-position: calc(100% - 10px) calc(1em + 8px),
507
- calc(100% - 4px) calc(1em + 8px), calc(100% - 2.5em) 0.5em;
508
- background-size: 6px 5px, 6px 5px, 0px 1.5em;
509
- background-repeat: no-repeat;
510
- }
511
-
512
- .Strike__strike___1XV1b {
513
- width: 100%;
514
- text-align: center;
515
- border-bottom: 1px solid var(--lightGrey);
516
- line-height: 0.1em;
517
- margin: 32px 0;
518
- color: var(--grey);
519
- }
520
-
521
- .Strike__strikeContent___10gLb {
522
- background: var(--form-color);
523
- padding: 0 25px;
524
- font-size: 14px;
525
- font-weight: 500;
526
- }
527
- .Toast__toast___XXr3v {
528
- display: flex;
529
- justify-content: space-between;
530
- position: absolute;
531
- top: 0;
532
- left: 0;
533
- width: 100%;
534
- z-index: 99;
535
- box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
536
- padding: 16px;
537
- background-color: var(--lightSquidInk);
538
- font-size: 14px;
539
- color: #fff;
540
- box-sizing: border-box;
541
- }
542
-
543
- .Toast__toast___XXr3v > span {
544
- margin-right: 10px;
545
- }
546
-
547
- .Toast__toastClose___18lU4 {
548
- margin-left: auto;
549
- align-self: center;
550
- position: relative;
551
- width: 18px;
552
- height: 18px;
553
- overflow: hidden;
554
- cursor: pointer;
555
- }
556
-
557
- .Toast__toastClose___18lU4::before,
558
- .Toast__toastClose___18lU4::after {
559
- content: '';
560
- position: absolute;
561
- height: 2px;
562
- width: 100%;
563
- top: 50%;
564
- left: 0;
565
- margin-top: -1px;
566
- background: var(--lightGrey);
567
- }
568
-
569
- .Toast__toastClose___18lU4:hover::before,
570
- .Toast__toastClose___18lU4:hover::after {
571
- background: var(--red);
572
- }
573
-
574
- .Toast__toastClose___18lU4::before {
575
- transform: rotate(45deg);
576
- }
577
- .Toast__toastClose___18lU4::after {
578
- transform: rotate(-45deg);
579
- }
580
- .Totp__totpQrcode___1crLx {
581
- text-align: center;
582
- margin-bottom: 30px;
583
- }
584
- /*
585
- * Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
586
- *
587
- * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
588
- * the License. A copy of the License is located at
589
- *
590
- * http://aws.amazon.com/apache2.0/
591
- *
592
- * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
593
- * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
594
- * and limitations under the License.
595
- */
596
-
597
- .XR__sumerianSceneContainer___3nVMt {
598
- width: 100%;
599
- height: 100%;
600
- position: relative;
601
- }
602
-
603
- .XR__sumerianScene___2Tt7- {
604
- width: 100%;
605
- height: 100%;
606
- }
607
-
608
- .XR__loadingOverlay___IbqcI {
609
- display: flex;
610
- align-items: center;
611
- justify-content: center;
612
- width: 100%;
613
- height: 100%;
614
- background-color: var(--lightSquidInk);
615
- }
616
-
617
- .XR__loadingContainer___2Itxb {
618
- display: flex;
619
- flex-direction: column;
620
- align-items: center;
621
- justify-content: center;
622
- }
623
-
624
- .XR__loadingLogo___Ub7xQ {
625
- margin-bottom: 20px;
626
- width: 80px;
627
- fill: var(--white);
628
- }
629
-
630
- .XR__loadingSceneName___3__ne {
631
- color: var(--white);
632
- margin: 0 2px 20px 2px;
633
- font-size: 18px;
634
- font-family: 'Amazon Ember';
635
- }
636
-
637
- .XR__loadingBar___2vcke {
638
- height: 2px;
639
- width: 100%;
640
- border-radius: 2px;
641
- background-color: var(--deepSquidInk);
642
- }
643
-
644
- .XR__loadingBarFill___3M-D9 {
645
- background-color: var(--light-blue);
646
- height: 100%;
647
- border-radius: 2px;
648
- }
649
-
650
- .XR__sceneErrorText___2y0tp {
651
- color: var(--red);
652
- font-size: 14px;
653
- font-family: 'Amazon Ember';
654
- }
655
-
656
- .XR__sceneBar___2ShrP {
657
- display: flex;
658
- align-items: center;
659
- font-size: 100%;
660
- position: absolute;
661
- bottom: 0;
662
- width: 100%;
663
- }
664
-
665
- .XR__sceneName___1ApHr {
666
- color: var(--white);
667
- margin: 0 1.5em;
668
- font-size: 1em;
669
- }
670
-
671
- .XR__sceneActions___7plGs {
672
- margin-left: auto;
673
- margin-right: 16px;
674
- margin-bottom: 16px;
675
- }
676
-
677
- .XR__actionButton___2poIM {
678
- position: relative;
679
- padding: 0;
680
- background: none;
681
- height: 54px;
682
- width: 54px;
683
- cursor:pointer;
684
- outline: none;
685
- text-decoration: none;
686
- border: none;
687
- border-radius: 30px;
688
- transition: all .3s ease-in-out;
689
- color: var(--white);
690
- fill: currentColor;
691
- }
692
-
693
- .XR__actionButton___2poIM:hover {
694
- background-color: var(--deepSquidInk);
695
- box-shadow: 0.3px 0.3px 0.3px rgba(0, 0, 0, 0.3);
696
- }
697
-
698
- .XR__actionButton___2poIM:hover > .XR__tooltip___UYyhn {
699
- display: block;
700
- }
701
-
702
- .XR__actionButton___2poIM:hover > svg {
703
- filter: none;
704
- }
705
-
706
- .XR__actionButton___2poIM:focus {
707
- outline: none;
708
- }
709
-
710
- .XR__actionButton___2poIM > svg {
711
- width: 1.8em;
712
- height: 1.8em;
713
- filter: drop-shadow(1px 1px 1px var(--grey));
714
- }
715
-
716
- .XR__actionIcon___2qnd2 {
717
- fill: var(--white);
718
- }
719
-
720
- .XR__tooltip___UYyhn {
721
- display: inline;
722
- position: relative;
723
- font-size: 12px;
724
- font-family: 'Amazon Ember';
725
- margin: 0 0 0 16px;
726
- }
727
-
728
- .XR__autoShowTooltip___V1QH7 .XR__actionButton___2poIM {
729
- background-color: var(--deepSquidInk);
730
- }
731
-
732
- .XR__tooltip___UYyhn:after {
733
- background-color: var(--deepSquidInk);
734
- border-radius: 2px;
735
- bottom: 46px;
736
- color: var(--white);
737
- content: attr(data-text);
738
- text-decoration: none;
739
- padding: 10px;
740
- left: 50%;
741
- transform: translateX(-50%);
742
- position: absolute;
743
- white-space: nowrap;
744
- opacity: 0;
745
- transition: all .3s ease-in-out;
746
- }
747
-
748
- .XR__tooltip___UYyhn:before {
749
- border: solid;
750
- border-color: var(--deepSquidInk) transparent transparent transparent;
751
- border-width: 5px;
752
- bottom: 36px;
753
- content:"";
754
- left: 50%;
755
- transform: translateX(-50%);
756
- position: absolute;
757
- font-size: 14px;
758
- opacity: 0;
759
- transition: all .3s ease-in-out;
760
- }
761
-
762
-
763
- .XR__autoShowTooltip___V1QH7:after,
764
- .XR__tooltip___UYyhn:hover:after {
765
- opacity: 1;
766
- transition-delay: 1s;
767
- }
768
-
769
- .XR__autoShowTooltip___V1QH7:before,
770
- .XR__tooltip___UYyhn:hover:before {
771
- opacity: 1;
772
- transition-delay: 1s;
773
- }
774
-
775
- /*# sourceMappingURL=style.css.map*/