-
Notifications
You must be signed in to change notification settings - Fork 555
/
Copy pathindex.styl
1394 lines (1150 loc) · 41.2 KB
/
index.styl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.auth0-lock
@require "_normalize"
@import "social_icons"
@import "_animate"
@import "_transitions"
@import "_mixins&keyframes"
headerHeight = 118px
submitHeight = 70px
iphoneBar = 68px
tabsHeight = 40px
@media screen and (max-width: 480px)
html.auth0-lock-html body
& > *
display none
.auth0-lock-container
background white
display block!important
// Lock base style
.auth0-lock.auth0-lock
&, *
-webkit-box-sizing initial
-moz-box-sizing initial
box-sizing initial
svg
background-color transparent
.auth0-global-message
color white
text-align center
padding 10px
line-height 1.8
font-size 11px
font-weight 600
text-transform uppercase
&.auth0-global-message-error
background #FF3E00
&.auth0-global-message-success
background #7ED321
&.auth0-global-message-info
background #44C7F4
&.global-message-enter
height 0
paddingTop 0
paddingBottom 0
&.global-message-enter.global-message-enter-active
transition all 0.2s
height auto
paddingTop 10px
paddingBottom 10px
&.global-message-exit
transition all 0.2s
height 0
paddingTop 0
paddingBottom 0
span
-webkit-animation-delay .2s
animation-delay .2s
.auth0-lock.auth0-lock
font-family "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, sans-serif
text-rendering optimizeLegibility
pointer-events none
position fixed
bottom 0
left 0
width 100%
height 100%
right 0
z-index 1000000
+breakpoint("mobile")
display table
a
text-decoration none
&:active, &:focus
outline none
input:focus, button:focus
outline none
.auth0-lock-overlay
background radial-gradient(lighten(#222228, 15%), #111118) rgba(34,34,40, .94)
position fixed
top 0
bottom 0
right 0
left 0
z-index -1
opacity 0
-webkit-transition opacity .2s ease-in .4s
transition opacity .2s ease-in .4s
.auth0-lock-center
+breakpoint("mobile")
vertical-align middle
display table-cell
margin auto
.auth0-lock-widget
width 300px
opacity 0
-webkit-transform translateY(100%) scale(.8)
transform translateY(100%) scale(.8)
-webkit-transition-timing-function cubic-bezier(.3, 0, 0, 1.4)
transition-timing-function cubic-bezier(.3, 0, 0, 1.4)
margin 0 auto
border-radius 5px
max-height 100vh
+breakpoint("mobile")
-webkit-transition -webkit-transform .4s, opacity .3s
transition transform .4s, opacity .3s
.auth0-lock-widget-container
position relative
.auth0-lock-cred-pane
height 100%
border-radius 6px
background white
position relative
&.horizontal-fade-exit
.auth0-lock-content, .auth0-lock-terms
opacity .3
pointer-events none
&.auth0-lock-moving
overflow hidden
// Lock header content
.auth0-lock-header
text-align center
padding 11px
height headerHeight
color #333
position relative
background #fff
border-radius 5px 5px 0 0
overflow hidden
-webkit-box-sizing border-box
box-sizing border-box
.auth0-lock-close-button, .auth0-lock-back-button
-webkit-box-sizing content-box !important
-moz-box-sizing content-box !important
box-sizing content-box !important
background white
border-radius 100px
height 10px
width 10px
padding 0
position absolute
top 14px
right 14px
box-shadow 0 1px 3px rgba(0,0,0,.1)
color #333
z-index 100
border 6px solid white
cursor pointer
line-height 0
&:focus
outline: none
box-shadow 0 3px 3px rgba(0,0,0,.3)
svg
-webkit-box-sizing content-box
-moz-box-sizing content-box
box-sizing content-box
polygon
fill #373737
.auth0-lock-back-button
left 14px
.auth0-lock-header-avatar
height 80px
width 80px
display block
border-radius 100px
margin -16px auto 0
position absolute
left 0
right 0
z-index 1000
box-shadow 0 1px 2px rgba(0,0,0,.4)
-webkit-animation fadeIn .75s both
animation fadeIn .75s both
+breakpoint("tablet")
-webkit-animation fadeInDown .75s both
animation fadeInDown .75s both
.auth0-lock-header-bg
position absolute
height headerHeight
width 100%
overflow hidden
top 0
left 0
pointer-events none
+breakpoint("mobile")
background rgba(#f1f1f1,.8)
.auth0-lock-header-bg-blur
display none
height 100%
width 100%
border-top-left-radius 5px
border-top-right-radius 5px
-webkit-filter blur(40px) grayscale(1)
-ms-filter blur(40px) grayscale(1)
filter blur(40px) grayscale(1)
-webkit-backdrop-filter: blur(0);
background-color #fff
background-position center
background-repeat no-repeat
background-size 300px
opacity 0
-webkit-transition 0s ease 0s
transition 0s ease 0s
&.auth0-lock-no-grayscale
-webkit-filter blur(30px)
-ms-filter blur(30px)
filter blur(30px)
-webkit-backdrop-filter: blur(0);
background-position center
background-size 800px
&.auth0-lock-blur-support
.auth0-lock-header-bg-blur
+breakpoint("mobile")
display block
.auth0-lock-header-bg-solid
height 100%
opacity .08
.auth0-lock-header-welcome
font-size 18px
position relative
.auth0-lock-header-logo
width auto
height 58px
display inline-block
margin 0 0 11px
vertical-align middle
-webkit-transition margin-top .4s
transition margin-top .4s
&.centered
margin-top 20px
.auth0-lock-firstname
font-size 18px
margin-top 64px
text-overflow ellipsis
white-space nowrap
overflow hidden
padding 0 10px
.auth0-lock-name
font-size 22px
text-overflow ellipsis
white-space nowrap
overflow hidden
padding 0 10px
line-height 30px
// Lock body content
.auth0-lock-content
padding 20px
-webkit-box-sizing border-box
-moz-box-sizing border-box
box-sizing border-box
.auth0-lock-form
display initial
-webkit-animation fadeIn .2s
animation fadeIn .2s
h2
font-size 22px
font-weight normal
text-align center
margin 0 0 15px
color black
p
font-size 13px
line-height 1.8
text-align center
margin-top 0
margin-bottom 15px
color rgba(0,0,0,.54)
.auth0-lock-alternative
margin-top 20px
margin-bottom 0
.auth0-lock-alternative-link
font-size 13px
color rgba(0,0,0,.87)
cursor pointer
margin-bottom 0
&:focus
text-decoration underline
.auth0-lock-input-block
position relative
margin-bottom 15px
+breakpoint("mobile")
margin-bottom 10px
&:last-child
margin-bottom 0
.auth0-lock-input-wrap
border-radius 3px
border 1px solid #f1f1f1
position relative
background #f1f1f1
-webkit-transition border-color .8s
transition border-color .8s
&.auth0-lock-input-wrap-with-icon
padding-left 40px
.auth0-lock-icon-arrow
position absolute
top 14px
width 12px
height 14px
right 14px
pointer-events none
.auth0-lock-icon, .auth0-lock-custom-icon
position absolute
font-size 12px
top 13px
left 14px
// width 14px
// height 10px
path
fill #888
&.auth0-lock-icon-mobile
width 9px
height 14px
top 14px
left 16px
&.auth0-lock-icon-box
width 12px
height 14px
top auto
bottom 14px
left 14px
&.auth0-lock-focused
border-color #A0A0A0
.auth0-lock-input
border 0
padding 0 14px
right 0
height 40px
font-size 13px
width 100%
border-radius 0 2px 2px 0
-webkit-box-sizing border-box
-moz-box-sizing border-box
box-sizing border-box
position relative
color rgba(0,0,0,.87)
&.animated
-webkit-animation-duration .5s
animation-duration .5s
&.auth0-lock-input-location
background-color #F9F9F9
text-align left
&.auth0-lock-input-with-placeholder
color rgba(0,0,0,.54);
.auth0-lock-error .auth0-lock-input-wrap
border-color red
transition .3s ease-in-out
.auth0-lock-input-checkbox
text-align left
display block
font-size 12px
color rgba(0,0,0,0.54)
line-height 22px
position relative
label input
float left
margin-top 5px
span
display block
margin-left 20px
// Social
.auth-lock-social-buttons-pane, .auth0-lock-last-login-pane
position relative
.auth0-loading-container
-webkit-animation fadeIn .75s ease-in-out!important
animation fadeIn .75s ease-in-out!important
position absolute
width 54px
height 54px
top 50%
left 50%
-webkit-transform translate(-50%,-50%)
transform translate(-50%,-50%)
.auth0-loading
width 50px
height 50px
border-radius 50%
top 0
left 0
opacity 1
.auth0-lock-social-buttons-container
text-align center
.auth0-lock-social-button
border 0
padding 0
display inline-block
-webkit-box-sizing border-box
box-sizing border-box
overflow hidden
border-radius 3px
margin 4px
position relative
width 40px
height 40px
-webkit-transition background-color .2s ease-in-out
transition background-color .2s ease-in-out
&[data-provider^=google]
.auth0-lock-social-button-icon
background-color: #ffffff
border: 2px #4285f4 solid
border-radius: 3px 0px 0px 3px
height: 36px
width: 36px
&:hover, &:focus
.auth0-lock-social-button-icon
background-color: #ffffff !important
border-color: #3367d6
.auth0-lock-social-button-text
background-color: #3367d6 !important
&.auth0-lock-social-big-button
.auth0-lock-social-button-icon
background-color: #ffffff
width: 38px
.auth0-lock-social-button-icon
width 40px
height 40px
position absolute
top 0
left 0
transition background-color 0.3s, border .2s ease-in-out
-webkit-transition background-color 0.3s, border .2s ease-in-out
&:hover, &:focus
.auth0-lock-social-button-icon
background-color rgba(0, 0, 0, .3)
.auth0-lock-social-button-text
display none
&.auth0-lock-social-big-button
display block
margin 10px 0 0
width 100%
&:first-child
margin-top 0
&[data-provider=""],
&[data-provider="auth0"]
background-color #c0c0c0
.auth0-lock-social-button-icon
background-image url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iNTNweCIgaGVpZ2h0PSI2NXB4IiB2aWV3Qm94PSIwIDAgNTMgNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+ICAgICAgICA8dGl0bGU+U2hhcGU8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxnIGlkPSI2NHB4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTE1My4wMDAwMDAsIC02MDMzLjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPiAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMTYxLjEyNSw2MDk4IEMxMTU2LjYzNzk3LDYwOTggMTE1Myw2MDk0LjM2MTg2IDExNTMsNjA4OS44NzU2MyBMMTE1Myw2MDY1LjQ5OTQ5IEMxMTUzLDYwNjEuMDEyMjUgMTE1Ni42Mzc5Nyw2MDU3LjM3MzEgMTE2MS4xMjUsNjA1Ny4zNzMxIEwxMTYxLjEyNSw2MDUxLjI4MjExIEMxMTYxLjEyNSw2MDQxLjE4NjMyIDExNjkuMzA5OTIsNjAzMyAxMTc5LjQwNjI1LDYwMzMgQzExODkuNTAyNTgsNjAzMyAxMTk3LjY4NzUsNjA0MS4xODYzMiAxMTk3LjY4NzUsNjA1MS4yODIxMSBMMTE5Ny42ODc1LDYwNTcuMzc0MTEgQzEyMDIuMTc0NTMsNjA1Ny4zNzQxMSAxMjA1LjgxMjUsNjA2MS4wMTIyNSAxMjA1LjgxMjUsNjA2NS40OTk0OSBMMTIwNS44MTI1LDYwODkuODc1NjMgQzEyMDUuODEyNSw2MDk0LjM2MTg2IDEyMDIuMTc0NTMsNjA5OCAxMTk3LjY4NzUsNjA5OCBMMTE2MS4xMjUsNjA5OCBaIE0xMTkzLjYyNjAyLDYwNTEuMjgyMTEgQzExOTMuNjI2MDIsNjA0My40Mjk5NCAxMTg3LjI1OTA2LDYwMzcuMDYyNjkgMTE3OS40MDcyNyw2MDM3LjA2MjY5IEMxMTcxLjU1NTQ3LDYwMzcuMDYyNjkgMTE2NS4xODg1Miw2MDQzLjQyOTk0IDExNjUuMTg4NTIsNjA1MS4yODIxMSBMMTE2NS4xODg1Miw2MDU3LjM3MzEgTDExOTMuNjI2MDIsNjA1Ny4zNzMxIEwxMTkzLjYyNjAyLDYwNTEuMjgyMTEgTDExOTMuNjI2MDIsNjA1MS4yODIxMSBaIE0xMjAxLjc1LDYwNjUuNDk5NDkgQzEyMDEuNzUsNjA2My4yNTQ4NiAxMTk5LjkzMTAyLDYwNjEuNDM1NzkgMTE5Ny42ODc1LDYwNjEuNDM1NzkgTDExNjEuMTI1LDYwNjEuNDM1NzkgQzExNTguODgxNDgsNjA2MS40MzU3OSAxMTU3LjA2MjUsNjA2My4yNTQ4NiAxMTU3LjA2MjUsNjA2NS40OTk0OSBMMTE1Ny4wNjI1LDYwODkuODc1NjMgQzExNTcuMDYyNSw2MDkyLjExNjIxIDExNTguODgxNDgsNjA5My45MzUyOCAxMTYxLjEyNSw2MDkzLjkzNTI4IEwxMTk3LjY4NzUsNjA5My45MzUyOCBDMTE5OS45MzEwMiw2MDkzLjkzNTI4IDEyMDEuNzUsNjA5Mi4xMTYyMSAxMjAxLjc1LDYwODkuODc1NjMgTDEyMDEuNzUsNjA2NS40OTk0OSBMMTIwMS43NSw2MDY1LjQ5OTQ5IFogTTExNzcuMzc1LDYwODMuNzgwNTggTDExNzcuMzc1LDYwNzEuNTkyNTEgQzExNzcuMzc1LDYwNzAuNDcxMjEgMTE3OC4yODM5OCw2MDY5LjU2MTE3IDExNzkuNDA2MjUsNjA2OS41NjExNyBDMTE4MC41Mjg1Miw2MDY5LjU2MTE3IDExODEuNDM3NSw2MDcwLjQ3MTIxIDExODEuNDM3NSw2MDcxLjU5MjUxIEwxMTgxLjQzNzUsNjA4My43ODA1OCBDMTE4MS40Mzc1LDYwODQuOTAwODcgMTE4MC41Mjg1Miw2MDg1LjgxMDkxIDExNzkuNDA2MjUsNjA4NS44MTA5MSBDMTE3OC4yODUsNjA4NS44MTA5MSAxMTc3LjM3NSw2MDg0LjkwMDg3IDExNzcuMzc1LDYwODMuNzgwNTggWiIgaWQ9IlNoYXBlIj48L3BhdGg+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=')
background-size 38%
.auth0-lock-social-button-icon
background-color rgba(0, 0, 0, .3)
.auth0-lock-social-button-text
-webkit-box-sizing border-box
box-sizing border-box
display block
overflow hidden
width 100%
padding-left 54px
padding-right 15px
line-height 40px
text-align left
text-transform uppercase
text-overflow ellipsis
font-size 10px
font-weight 600
letter-spacing .7px
color #fff
white-space nowrap
transition background 0.3s
-webkit-transition background 0.3s
&:hover:not([disabled]), &:focus:not([disabled])
.auth0-lock-social-button-icon
background-color rgba(0, 0, 0, .3)
.auth0-lock-social-button-text
background-color rgba(0, 0, 0, .3)
&[disabled]
background-color #9b9b9b !important
// Lock terms content
.auth0-lock-terms
background #EEE
text-align center
display block
font-size 12px
color rgba(black,.54)
line-height 22px
padding 10px
position relative
a
color rgba(black,.87)
//Lock submit content
.auth0-lock-submit
border 0
padding 14px
display block
-webkit-box-sizing border-box
box-sizing border-box
width 100%
height submitHeight
overflow hidden
border-radius 0 0 5px 5px
-webkit-transition .2s ease-in-out
transition .2s ease-in-out
color white
letter-spacing 1px
font-size 14px
text-transform uppercase
span
display inline-block
-webkit-transition .2s ease-in-out
transition .2s ease-in-out
svg
vertical-align middle
display inline
&.icon-text
margin -4px 0 0 5px
.auth0-label-submit
height 42px
line-height 42px
+breakpoint("mobile")
&:hover:not([disabled])
span
-webkit-transform scale(1.05)
transform scale(1.05)
&:focus
box-shadow inset 0 0 100px 20px rgba(black,.2)
&[disabled]
background-color #9b9b9b !important
span svg
circle, path
stroke rgba(white,.6)
-webkit-transition .2s ease-in-out
transition .2s ease-in-out
path
fill rgba(white,.6)
/*submit button animation*/
&.vslide-enter
opacity 0
&.vslide-enter.vslide-enter-active
opacity 1
transition-duration .5s
.auth0-loading-container
position relative
display none
.auth0-loading
position absolute
top 4px
left 44%
width 30px
height 30px
border-width 2px
border-style solid
border-color rgba(0,0,0,.4) rgba(0,0,0,.4) rgba(0,0,0,.2) rgba(0,0,0,.2)
opacity .9
border-radius 20px
-webkit-animation rotate 1s linear infinite
animation rotate 1s linear infinite
// Content mode loading
&.auth0-lock-mode-loading
.auth0-lock-content, .auth0-lock-terms
opacity .3
pointer-events none
.auth0-lock-submit
background-color #eee!important
-webkit-transition background .5s ease
transition background .5s ease
cursor initial
pointer-events none
span
-webkit-animation fadeOutDownBig 1s both
animation fadeOutDownBig 1s both
.auth0-loading-container
-webkit-animation fadeInDownBig 1s both
animation fadeInDownBig 1s both
display block
.auth0-lock-back-button
opacity 0
visibility hidden
-webkit-transition .25s
transition .25s
// When showing auxiliary pane
&.auth0-lock-auxiliary
.auth0-lock-header-avatar
-webkit-animation fadeOut .3s both
animation fadeOut .3s both
.auth0-lock-content, .auth0-lock-terms, .auth0-lock-submit
opacity .3
pointer-events none
.auth0-lock-back-button
opacity 0
visibility hidden
-webkit-transition .25s
transition .25s
// Lock country numbers
.auth0-lock-select-country
background-color white
position absolute
padding 0
font-size 14px
color #666
bottom 0
top 0
right 0
left 0
border-radius 5px
overflow hidden
z-index 200
.auth0-lock-back-button
opacity 1
visibility visible
top 19px
.auth0-lock-search
background-color #E3E5E9
padding 10px
.auth0-lock-input-wrap
margin 0
border none
margin-left 40px
overflow hidden
.auth0-lock-icon
width 16px
height 16px
top 12px
left 9px
z-index 1
.auth0-lock-input-search
border none
.auth0-lock-list-code
position relative
height calc(100% - 60px) //inputCode
overflow-y scroll
ul
margin 0
padding 0
li
list-style none
text-align left
border-bottom 1px solid #EEE
cursor pointer
color black
font-size 14px
padding 15px 20px
margin 0
text-overflow ellipsis
width: 100%
white-space nowrap
overflow hidden
box-sizing border-box
+breakpoint("mobile")
padding 10px 20px
&.auth0-lock-list-code-highlighted
background-color #2EB5FF
color white
// Lock confirmation content
.auth0-lock-confirmation
background-color white
position absolute
text-align center
line-height 2
font-size 14px
color #666
width 100%
height 100%
top 0
left 0
z-index 200
border-radius 5px
.auth0-lock-confirmation-content
width 100%
top 50%
left 50%
-webkit-transform translate(-50%,-50%)
transform translate(-50%,-50%)
position absolute
p
padding 0 14px
margin-bottom 6px
a
display block
font-weight 500
color #09c
svg
width 15px
height 16px
margin-bottom -4px
margin-left 0px
display inline-block
-webkit-transition -webkit-transform 1s ease
transition transform 1s ease
-webkit-transform rotate(120deg)
transform rotate(120deg)
path
fill #09c
&:hover svg
-webkit-transform rotate(490deg)
transform rotate(490deg)
.auth0-lock-sent-label
color green
-webkit-animation fadeIn 1s both
animation fadeIn 1s both
font-weight 600
.auth0-lock-sent-failed-label
color red
-webkit-animation fadeIn 1s both
animation fadeIn 1s both
font-weight 600
.checkmark__circle
stroke-dasharray 166
stroke-dashoffset 166
stroke-width 2
stroke-miterlimit 10
stroke #7ac142
fill none
-webkit-animation stroke 0.6s .4s cubic-bezier(0.65, 0, 0.45, 1) forwards
animation stroke 0.6s .4s cubic-bezier(0.65, 0, 0.45, 1) forwards
.checkmark
width 56px
height 56px
border-radius 50%
display block
stroke-width 2
stroke #fff
stroke-miterlimit 10
margin 0 auto
box-shadow inset 0px 0px 0px #7ac142
-webkit-animation fill .4s ease-in-out .7s forwards, scale .3s ease-in-out 1.1s both
animation fill .4s ease-in-out .7s forwards, scale .3s ease-in-out 1.1s both
.checkmark__check
transform-origin 50% 50%
// stroke-dasharray 48
// stroke-dashoffset 48
// -webkit-animation stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 1s forwards
// animation stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 1s forwards
.auth0-lock-back-button
opacity 1
visibility visible
.auth0-lock-forgot-link
font-size 12px
display block
text-align center
margin 30px 0 0 0
color #5C666F
// Lock badge bottom link
.auth0-lock-badge-bottom
position absolute
bottom 15px
left 15px
z-index -1
text-align center
padding: 6px 10px;
-webkit-border-radius: 3px;
border-radius: 3px;
background: rgba(255,255,255,0.1);
.auth0-lock-badge
display inline-block
color rgba(white,.7)
font-size 14px
svg
vertical-align middle
margin 0 4px
&:hover
svg
g#LogoBadge
fill #EB5424
fill-opacity 1
// Opened in modal
&.auth0-lock-opened
opacity 1
pointer-events auto
.auth0-lock-center
+breakpoint("mobile")
overflow-y auto
//mobile view
@media screen and (max-width: 480px)
position absolute
.auth0-lock-overlay
opacity .9
-webkit-transition opacity .3s ease-in 0s
transition opacity .3s ease-in 0s
//mobile view
@media screen and (max-width: 480px)
display none
.auth0-lock-header
//mobile view
@media screen and (max-width: 480px)
border-radius 0
.auth0-lock-header-bg .auth0-lock-header-bg-blur
opacity .4
-webkit-transition 1s ease 1s
transition 1s ease 1s
.auth0-lock-header-avatar
//mobile view
@media screen and (max-width: 480px)
width 70px
height 70px
margin 10px auto 0
.auth0-lock-firstname
@media screen and (max-width: 480px)
margin-top 72px
.auth0-lock-widget
opacity 1
-webkit-transform translateY(0%) scale(1)
transform translateY(0%) scale(1)
+breakpoint("mobile")
-webkit-transition -webkit-transform .6s, opacity .6s
transition transform .6s, opacity .6s
-webkit-transition-delay .5s
transition-delay .5s
box-shadow 0 0 40px 4px #111118
// mobile view
@media screen and (max-width: 480px)
width 100%
height 100%
// min-height 480px
position absolute
top 0
bottom 0
// overflow auto
border-radius 0
.auth0-lock-widget-container
//mobile view
@media screen and (max-width: 480px)
height 100%
.auth0-lock-cred-pane
//mobile view
@media screen and (max-width: 480px)
// min-height 480px
border-radius 0
.auth0-lock-body-content
//mobile view
@media screen and (max-width: 480px)
background white
min-height "calc(100vh - %s)" % (headerHeight + submitHeight)
// min-height 375px
display table
width 100%
.auth0-lock-content
//mobile view
@media screen and (max-width: 480px)
width 100%
display table-cell
vertical-align middle
.auth0-lock-form p
@media screen and (max-width: 480px)
font-size 14px