@gem-sdk/styles 1.36.8 → 2.0.0-dev.871
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/dist/builder.css +27 -6
- package/dist/builder.min.css +1 -1
- package/dist/toolbar.css +244 -75
- package/dist/toolbar.min.css +1 -1
- package/package.json +1 -1
- package/src/css/builds/builder.css +22 -2
- package/src/css/builds/toolbar.css +289 -84
|
@@ -200,10 +200,27 @@
|
|
|
200
200
|
}
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
+
[data-toolbar][data-toolbar-shopify-section='true'][data-toolbar-hover][data-toolbar-hover-focus] {
|
|
204
|
+
background: #29845A;
|
|
205
|
+
padding: 4px;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
[data-toolbar][data-toolbar-shopify-section='true'][data-toolbar-hover] {
|
|
209
|
+
&:hover {
|
|
210
|
+
background: #29845A;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
[data-toolbar][data-toolbar-shopify-section='true'][data-toolbar-active] {
|
|
215
|
+
&:hover {
|
|
216
|
+
background: #29845A;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
203
220
|
[data-toolbar][data-toolbar-active] {
|
|
204
221
|
opacity: 1;
|
|
205
222
|
visibility: visible;
|
|
206
|
-
z-index:
|
|
223
|
+
z-index: 1000;
|
|
207
224
|
height: 32px;
|
|
208
225
|
top: -35px;
|
|
209
226
|
background: #151515;
|
|
@@ -231,6 +248,14 @@
|
|
|
231
248
|
}
|
|
232
249
|
}
|
|
233
250
|
|
|
251
|
+
&[data-toolbar-shopify-section='true'] {
|
|
252
|
+
background: #29845A;
|
|
253
|
+
|
|
254
|
+
&[data-toolbar-hover-focus] {
|
|
255
|
+
background: #29845A;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
234
259
|
[data-toolbar-show-parent] {
|
|
235
260
|
padding: 4px;
|
|
236
261
|
margin-right: 9px;
|
|
@@ -276,7 +301,7 @@
|
|
|
276
301
|
}
|
|
277
302
|
|
|
278
303
|
&:hover {
|
|
279
|
-
background: rgba(225, 225, 225, 0.2);
|
|
304
|
+
background-color: rgba(225, 225, 225, 0.2);
|
|
280
305
|
}
|
|
281
306
|
|
|
282
307
|
[data-toolbar-icon-drag] {
|
|
@@ -301,7 +326,7 @@
|
|
|
301
326
|
}
|
|
302
327
|
|
|
303
328
|
&:hover {
|
|
304
|
-
background: rgba(225, 225, 225, 0.2);
|
|
329
|
+
background-color: rgba(225, 225, 225, 0.2);
|
|
305
330
|
}
|
|
306
331
|
|
|
307
332
|
&[data-toolbar-disable='true'] {
|
|
@@ -377,6 +402,11 @@
|
|
|
377
402
|
border-color: #9144da;
|
|
378
403
|
}
|
|
379
404
|
|
|
405
|
+
[data-toolbar][data-toolbar-shopify-section='true'][data-toolbar-hover-focus],
|
|
406
|
+
[data-toolbar][data-toolbar-shopify-section='true'][data-toolbar-active] {
|
|
407
|
+
border-color: #29845A;
|
|
408
|
+
}
|
|
409
|
+
|
|
380
410
|
[data-toolbar][data-toolbar-active][data-toolbar-limit='true'],
|
|
381
411
|
[data-toolbar][data-toolbar-hover][data-toolbar-limit='true'],
|
|
382
412
|
[data-toolbar][data-toolbar-hover][data-toolbar-hover-focus][data-toolbar-limit='true'],
|
|
@@ -406,6 +436,12 @@
|
|
|
406
436
|
transition: opacity 0ms ease-in-out;
|
|
407
437
|
}
|
|
408
438
|
|
|
439
|
+
&[data-section-exceeded][data-toolbar-wrap] {
|
|
440
|
+
[data-outline][data-outline-section='true'] {
|
|
441
|
+
border-color: #f44336;
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
|
|
409
445
|
/* State Outline */
|
|
410
446
|
[data-outline][data-outline-hover],
|
|
411
447
|
[data-outline][data-outline-force-hover] {
|
|
@@ -455,7 +491,9 @@
|
|
|
455
491
|
}
|
|
456
492
|
|
|
457
493
|
[data-component-tag='Heading'],
|
|
458
|
-
[data-component-tag='Text']
|
|
494
|
+
[data-component-tag='Text'],
|
|
495
|
+
[data-component-tag='PostPurchaseHeading'],
|
|
496
|
+
[data-component-tag='PostPurchaseText'] {
|
|
459
497
|
[data-outline][data-outline-editor-inline-focus] {
|
|
460
498
|
border-color: #3c67ff;
|
|
461
499
|
outline: 4px solid rgba(60, 103, 255, 0.24);
|
|
@@ -485,6 +523,13 @@
|
|
|
485
523
|
z-index: 0;
|
|
486
524
|
}
|
|
487
525
|
|
|
526
|
+
[data-outline][data-outline-shopify-section='true'],
|
|
527
|
+
[data-outline][data-outline-shopify-section='true'][data-outline-hover-focus],
|
|
528
|
+
[data-outline][data-outline-shopify-section='true'][data-outline-active] {
|
|
529
|
+
border-color: #29845A;
|
|
530
|
+
z-index: 0;
|
|
531
|
+
}
|
|
532
|
+
|
|
488
533
|
[data-outline][data-outline-active][data-outline-limit='true'],
|
|
489
534
|
[data-outline][data-outline-hover][data-outline-limit='true'],
|
|
490
535
|
[data-outline][data-outline-hover][data-outline-hover-focus][data-outline-limit='true'],
|
|
@@ -520,6 +565,21 @@
|
|
|
520
565
|
}
|
|
521
566
|
}
|
|
522
567
|
|
|
568
|
+
[data-shopify-section] {
|
|
569
|
+
/* disable delay animation on shopify section */
|
|
570
|
+
[data-toolbar][data-toolbar-hover][data-toolbar-hover-focus],
|
|
571
|
+
[data-outline][data-outline-hover][data-outline-hover-focus],
|
|
572
|
+
[data-toolbar-add-top],
|
|
573
|
+
[data-toolbar-add-bottom] {
|
|
574
|
+
transition-delay: 0ms;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
[data-toolbar-add-top],
|
|
578
|
+
[data-toolbar-add-bottom] {
|
|
579
|
+
border-color: #29845A;
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
|
|
523
583
|
[data-theme-section-status] {
|
|
524
584
|
display: none;
|
|
525
585
|
align-items: center;
|
|
@@ -692,6 +752,7 @@
|
|
|
692
752
|
}
|
|
693
753
|
|
|
694
754
|
[data-value-number] {
|
|
755
|
+
font-family: Inter;
|
|
695
756
|
background-color: #3c67ff;
|
|
696
757
|
border-radius: 6px;
|
|
697
758
|
color: #fff;
|
|
@@ -757,7 +818,7 @@
|
|
|
757
818
|
[data-toolbar-tooltip] {
|
|
758
819
|
width: unset;
|
|
759
820
|
max-width: unset;
|
|
760
|
-
background-color: #
|
|
821
|
+
background-color: #333333 !important;
|
|
761
822
|
color: #fff;
|
|
762
823
|
text-align: center;
|
|
763
824
|
border-radius: 6px;
|
|
@@ -789,7 +850,7 @@
|
|
|
789
850
|
margin-top: -5px;
|
|
790
851
|
border-width: 5px;
|
|
791
852
|
border-style: solid;
|
|
792
|
-
border-color: transparent #
|
|
853
|
+
border-color: transparent #333333 transparent transparent;
|
|
793
854
|
}
|
|
794
855
|
}
|
|
795
856
|
|
|
@@ -805,7 +866,7 @@
|
|
|
805
866
|
margin-top: -5px;
|
|
806
867
|
border-width: 5px;
|
|
807
868
|
border-style: solid;
|
|
808
|
-
border-color: transparent transparent transparent #
|
|
869
|
+
border-color: transparent transparent transparent #333333;
|
|
809
870
|
}
|
|
810
871
|
}
|
|
811
872
|
|
|
@@ -816,12 +877,12 @@
|
|
|
816
877
|
&::after {
|
|
817
878
|
content: ' ';
|
|
818
879
|
position: absolute;
|
|
819
|
-
top: 100
|
|
880
|
+
top: calc(100% - 0.5px);
|
|
820
881
|
left: 50%;
|
|
821
882
|
margin-left: -5px;
|
|
822
883
|
border-width: 5px;
|
|
823
884
|
border-style: solid;
|
|
824
|
-
border-color: #
|
|
885
|
+
border-color: #333333 transparent transparent transparent;
|
|
825
886
|
}
|
|
826
887
|
}
|
|
827
888
|
|
|
@@ -837,7 +898,7 @@
|
|
|
837
898
|
margin-left: -5px;
|
|
838
899
|
border-width: 5px;
|
|
839
900
|
border-style: solid;
|
|
840
|
-
border-color: transparent transparent #
|
|
901
|
+
border-color: transparent transparent #333333 transparent;
|
|
841
902
|
}
|
|
842
903
|
}
|
|
843
904
|
}
|
|
@@ -861,6 +922,36 @@
|
|
|
861
922
|
}
|
|
862
923
|
}
|
|
863
924
|
|
|
925
|
+
[data-toolbar-tooltip-trigger][data-toolbar-delete] {
|
|
926
|
+
position: relative;
|
|
927
|
+
|
|
928
|
+
[data-toolbar-tooltip] {
|
|
929
|
+
width: 206px;
|
|
930
|
+
white-space: normal;
|
|
931
|
+
font-size: 12px;
|
|
932
|
+
line-height: 20px;
|
|
933
|
+
text-align: left;
|
|
934
|
+
padding: 8px;
|
|
935
|
+
|
|
936
|
+
&[data-toolbar-tooltip-position='top'] {
|
|
937
|
+
margin-bottom: 12px;
|
|
938
|
+
left: 50%;
|
|
939
|
+
transform: translateX(-50%);
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
&[data-toolbar-tooltip-position='bottom'] {
|
|
943
|
+
top: 36px;
|
|
944
|
+
right: -4px;
|
|
945
|
+
left: unset;
|
|
946
|
+
|
|
947
|
+
&::after {
|
|
948
|
+
right: 10px;
|
|
949
|
+
left: unset;
|
|
950
|
+
}
|
|
951
|
+
}
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
|
|
864
955
|
[data-toolbar-tooltip-trigger][data-toolbar-add-top],
|
|
865
956
|
[data-toolbar-tooltip-trigger][data-toolbar-add-bottom] {
|
|
866
957
|
[data-toolbar-tooltip] {
|
|
@@ -869,6 +960,86 @@
|
|
|
869
960
|
transform: translateX(-50%);
|
|
870
961
|
}
|
|
871
962
|
}
|
|
963
|
+
|
|
964
|
+
/* Resize column */
|
|
965
|
+
[data-column] {
|
|
966
|
+
z-index: 10;
|
|
967
|
+
position: absolute;
|
|
968
|
+
width: 100%;
|
|
969
|
+
height: 100%;
|
|
970
|
+
top: 0;
|
|
971
|
+
left: 0;
|
|
972
|
+
pointer-events: none;
|
|
973
|
+
[data-column-hand-drag] {
|
|
974
|
+
justify-content: center;
|
|
975
|
+
align-items: center;
|
|
976
|
+
visibility: hidden;
|
|
977
|
+
opacity: 0;
|
|
978
|
+
cursor: grab;
|
|
979
|
+
pointer-events: auto;
|
|
980
|
+
|
|
981
|
+
[data-column-hand-visual] {
|
|
982
|
+
border-radius: 2px;
|
|
983
|
+
width: 3px;
|
|
984
|
+
height: 80%;
|
|
985
|
+
background-color: #d6d6d6;
|
|
986
|
+
transition: all 0.2s;
|
|
987
|
+
}
|
|
988
|
+
[data-column-hand-visual-drag] {
|
|
989
|
+
position: absolute;
|
|
990
|
+
top: 50%;
|
|
991
|
+
left: 50%;
|
|
992
|
+
transform: translate(-50%, -50%);
|
|
993
|
+
color: #3c67ff;
|
|
994
|
+
visibility: hidden;
|
|
995
|
+
opacity: 0;
|
|
996
|
+
transition: all 0.2s;
|
|
997
|
+
width: 16px;
|
|
998
|
+
svg {
|
|
999
|
+
width: 16px;
|
|
1000
|
+
height: 16px;
|
|
1001
|
+
transform: rotate(45deg);
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
1004
|
+
&:hover,
|
|
1005
|
+
&[data-column-hand-drag-active='true'] {
|
|
1006
|
+
[data-column-hand-visual] {
|
|
1007
|
+
background-color: #3c67ff;
|
|
1008
|
+
}
|
|
1009
|
+
[data-column-hand-visual-drag] {
|
|
1010
|
+
visibility: visible;
|
|
1011
|
+
opacity: 1;
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
}
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
[data-column][data-column-theme-section='true'] {
|
|
1018
|
+
[data-column-hand-drag] {
|
|
1019
|
+
[data-column-hand-visual-drag] {
|
|
1020
|
+
color: #9144da;
|
|
1021
|
+
}
|
|
1022
|
+
&:hover,
|
|
1023
|
+
&[data-column-hand-drag-active='true'] {
|
|
1024
|
+
[data-column-hand-visual] {
|
|
1025
|
+
background-color: #9144da;
|
|
1026
|
+
}
|
|
1027
|
+
[data-column-hand-visual-drag] {
|
|
1028
|
+
visibility: visible;
|
|
1029
|
+
opacity: 1;
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
[data-column][data-column-visible],
|
|
1036
|
+
[data-column][data-column-force-visible='true'],
|
|
1037
|
+
[data-column][data-column-is-drag-visible='true'] {
|
|
1038
|
+
[data-column-hand-drag] {
|
|
1039
|
+
visibility: visible;
|
|
1040
|
+
opacity: 1;
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
872
1043
|
}
|
|
873
1044
|
|
|
874
1045
|
[data-toolbar-debug] {
|
|
@@ -902,7 +1073,7 @@
|
|
|
902
1073
|
min-width: 284px;
|
|
903
1074
|
display: flex;
|
|
904
1075
|
flex-direction: column;
|
|
905
|
-
border-radius:
|
|
1076
|
+
border-radius: 12px;
|
|
906
1077
|
position: absolute;
|
|
907
1078
|
right: -4px;
|
|
908
1079
|
top: 100%;
|
|
@@ -922,7 +1093,7 @@
|
|
|
922
1093
|
|
|
923
1094
|
.theme-section-tooltip__image {
|
|
924
1095
|
background: #212121;
|
|
925
|
-
border-radius:
|
|
1096
|
+
border-radius: 12px 12px 0 0;
|
|
926
1097
|
padding-top: 16px;
|
|
927
1098
|
padding-bottom: 8px;
|
|
928
1099
|
padding-left: 21px;
|
|
@@ -955,7 +1126,7 @@
|
|
|
955
1126
|
|
|
956
1127
|
.theme-section-tooltip__action {
|
|
957
1128
|
padding: 16px;
|
|
958
|
-
border-radius: 0 0
|
|
1129
|
+
border-radius: 0 0 12px 12px;
|
|
959
1130
|
border-top: solid 1px #3b3b3b;
|
|
960
1131
|
background: #151515;
|
|
961
1132
|
display: flex;
|
|
@@ -966,7 +1137,7 @@
|
|
|
966
1137
|
width: 100%;
|
|
967
1138
|
text-align: center;
|
|
968
1139
|
background: #3c67ff;
|
|
969
|
-
border-radius:
|
|
1140
|
+
border-radius: 8px;
|
|
970
1141
|
height: 40px;
|
|
971
1142
|
font-size: 14px;
|
|
972
1143
|
line-height: 24px;
|
|
@@ -982,12 +1153,11 @@
|
|
|
982
1153
|
|
|
983
1154
|
.theme-section-tooltip__action-limit {
|
|
984
1155
|
button {
|
|
985
|
-
background: #
|
|
986
|
-
color: #212121 !important;
|
|
1156
|
+
background: #3c67ff !important;
|
|
987
1157
|
}
|
|
988
1158
|
|
|
989
1159
|
button:hover {
|
|
990
|
-
background: #
|
|
1160
|
+
background: #2856f8 !important;
|
|
991
1161
|
}
|
|
992
1162
|
}
|
|
993
1163
|
|
|
@@ -1007,81 +1177,116 @@
|
|
|
1007
1177
|
}
|
|
1008
1178
|
}
|
|
1009
1179
|
|
|
1180
|
+
/* Toolbar onboarding */
|
|
1181
|
+
[data-toolbar-onboarding] {
|
|
1182
|
+
position: absolute;
|
|
1183
|
+
left: 0;
|
|
1184
|
+
top: 0;
|
|
1185
|
+
width: 320px;
|
|
1186
|
+
background-color: #fff;
|
|
1187
|
+
color: rgba(60, 103, 255, 0.24);
|
|
1188
|
+
border-radius: 8px;
|
|
1189
|
+
box-shadow:
|
|
1190
|
+
0px 4px 16px 0px rgba(0, 0, 0, 0.12),
|
|
1191
|
+
0px -4px 16px 0px rgba(0, 0, 0, 0.06);
|
|
1192
|
+
z-index: 40;
|
|
1193
|
+
visibility: hidden;
|
|
1194
|
+
opacity: 0;
|
|
1195
|
+
|
|
1196
|
+
&[data-onboarding-active] {
|
|
1197
|
+
visibility: visible;
|
|
1198
|
+
opacity: 1;
|
|
1199
|
+
transition: opacity 0.25s;
|
|
1200
|
+
}
|
|
1010
1201
|
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
position: absolute;
|
|
1014
|
-
left: 0;
|
|
1015
|
-
top: 0;
|
|
1016
|
-
width: 320px;
|
|
1017
|
-
background-color: #fff;
|
|
1018
|
-
color:rgba(60, 103, 255, 0.24);
|
|
1019
|
-
border-radius: 8px;
|
|
1020
|
-
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12), 0px -4px 16px 0px rgba(0, 0, 0, 0.06);
|
|
1021
|
-
z-index: 40;
|
|
1022
|
-
visibility: hidden;
|
|
1023
|
-
opacity: 0;
|
|
1202
|
+
[data-onboarding-wrapper] {
|
|
1203
|
+
}
|
|
1024
1204
|
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1205
|
+
[data-icon] {
|
|
1206
|
+
position: absolute;
|
|
1207
|
+
top: -4px;
|
|
1208
|
+
left: 16px;
|
|
1209
|
+
/* Popover */
|
|
1210
|
+
box-shadow:
|
|
1211
|
+
0px 4px 16px 0px rgba(0, 0, 0, 0.12),
|
|
1212
|
+
0px -4px 16px 0px rgba(0, 0, 0, 0.06);
|
|
1213
|
+
|
|
1214
|
+
&[data-position='top'] {
|
|
1215
|
+
top: unset;
|
|
1216
|
+
bottom: -4px;
|
|
1029
1217
|
}
|
|
1218
|
+
}
|
|
1219
|
+
[data-close] {
|
|
1220
|
+
position: absolute;
|
|
1221
|
+
top: 8px;
|
|
1222
|
+
right: 8px;
|
|
1223
|
+
z-index: 99;
|
|
1224
|
+
border-radius: 8px;
|
|
1225
|
+
background-color: transparent;
|
|
1226
|
+
transition: background 0.25s;
|
|
1030
1227
|
|
|
1031
|
-
|
|
1032
|
-
|
|
1228
|
+
&:hover {
|
|
1229
|
+
background-color: #e2e2e2;
|
|
1033
1230
|
}
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
position: absolute;
|
|
1037
|
-
top: -4px;
|
|
1038
|
-
left: 16px;
|
|
1039
|
-
/* Popover */
|
|
1040
|
-
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12), 0px -4px 16px 0px rgba(0, 0, 0, 0.06);
|
|
1041
|
-
|
|
1042
|
-
&[data-position="top"] {
|
|
1043
|
-
top: unset;
|
|
1044
|
-
bottom: -4px;
|
|
1045
|
-
}
|
|
1231
|
+
svg {
|
|
1232
|
+
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
|
|
1046
1233
|
}
|
|
1047
|
-
|
|
1048
|
-
position: absolute;
|
|
1049
|
-
top: 8px;
|
|
1050
|
-
right: 8px;
|
|
1051
|
-
z-index: 99;
|
|
1052
|
-
border-radius: 8px;
|
|
1053
|
-
background-color: transparent;
|
|
1054
|
-
transition: background .25s;
|
|
1234
|
+
}
|
|
1055
1235
|
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
}
|
|
1236
|
+
[data-icon] {
|
|
1237
|
+
position: absolute;
|
|
1238
|
+
top: -4px;
|
|
1239
|
+
left: 16px;
|
|
1240
|
+
/* Popover */
|
|
1241
|
+
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12), 0px -4px 16px 0px rgba(0, 0, 0, 0.06);
|
|
1063
1242
|
|
|
1064
|
-
[data-
|
|
1065
|
-
|
|
1243
|
+
&[data-position="top"] {
|
|
1244
|
+
top: unset;
|
|
1245
|
+
bottom: -4px;
|
|
1066
1246
|
}
|
|
1067
|
-
|
|
1068
|
-
|
|
1247
|
+
}
|
|
1248
|
+
[data-close] {
|
|
1249
|
+
position: absolute;
|
|
1250
|
+
top: 8px;
|
|
1251
|
+
right: 8px;
|
|
1252
|
+
z-index: 99;
|
|
1253
|
+
border-radius: 8px;
|
|
1254
|
+
background-color: transparent;
|
|
1255
|
+
transition: background .25s;
|
|
1256
|
+
|
|
1257
|
+
&:hover {
|
|
1258
|
+
background-color: #E2E2E2;
|
|
1069
1259
|
}
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
font-family: Inter;
|
|
1073
|
-
font-size: 16px;
|
|
1074
|
-
font-style: normal;
|
|
1075
|
-
font-weight: 600;
|
|
1076
|
-
line-height: 24px; /* 150% */
|
|
1077
|
-
letter-spacing: -0.32px;
|
|
1078
|
-
}
|
|
1079
|
-
p{
|
|
1080
|
-
color: #676767;
|
|
1081
|
-
font-family: Inter;
|
|
1082
|
-
font-size: 14px;
|
|
1083
|
-
font-style: normal;
|
|
1084
|
-
font-weight: 400;
|
|
1085
|
-
line-height: 24px; /* 171.429% */
|
|
1260
|
+
svg {
|
|
1261
|
+
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
|
|
1086
1262
|
}
|
|
1087
|
-
}
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
[data-content] {
|
|
1266
|
+
padding: 16px;
|
|
1267
|
+
}
|
|
1268
|
+
video {
|
|
1269
|
+
border-radius: 8px 8px 0 0;
|
|
1270
|
+
}
|
|
1271
|
+
h3 {
|
|
1272
|
+
color: #212121;
|
|
1273
|
+
font-family: Inter;
|
|
1274
|
+
font-size: 16px;
|
|
1275
|
+
font-style: normal;
|
|
1276
|
+
font-weight: 600;
|
|
1277
|
+
line-height: 24px; /* 150% */
|
|
1278
|
+
letter-spacing: -0.32px;
|
|
1279
|
+
}
|
|
1280
|
+
p {
|
|
1281
|
+
color: #676767;
|
|
1282
|
+
font-family: Inter;
|
|
1283
|
+
font-size: 14px;
|
|
1284
|
+
font-style: normal;
|
|
1285
|
+
font-weight: 400;
|
|
1286
|
+
line-height: 24px; /* 171.429% */
|
|
1287
|
+
}
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
[data-slot="children"] {
|
|
1291
|
+
font-family: Inter;
|
|
1292
|
+
}
|