@open-condo/ui 1.5.0 → 1.6.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.
package/dist/styles.css CHANGED
@@ -2167,6 +2167,16 @@ a.condo-btn-sm {
2167
2167
  .condo-btn-primary:active::before {
2168
2168
  opacity: 0.9;
2169
2169
  }
2170
+ .condo-btn-primary.condo-btn-stateless:focus,
2171
+ .condo-btn-primary.condo-btn-stateless:hover,
2172
+ .condo-btn-primary.condo-btn-stateless:active {
2173
+ background: #222;
2174
+ }
2175
+ .condo-btn-primary.condo-btn-stateless:focus::before,
2176
+ .condo-btn-primary.condo-btn-stateless:hover::before,
2177
+ .condo-btn-primary.condo-btn-stateless:active::before {
2178
+ opacity: 0;
2179
+ }
2170
2180
  .condo-btn-primary.condo-btn-dangerous {
2171
2181
  background: #ff3b30;
2172
2182
  transition: background 0.15s ease-in-out;
@@ -2180,6 +2190,11 @@ a.condo-btn-sm {
2180
2190
  .condo-btn-primary.condo-btn-dangerous:active {
2181
2191
  background: #ff3b30;
2182
2192
  }
2193
+ .condo-btn-primary.condo-btn-dangerous.condo-btn-stateless:focus,
2194
+ .condo-btn-primary.condo-btn-dangerous.condo-btn-stateless:hover,
2195
+ .condo-btn-primary.condo-btn-dangerous.condo-btn-stateless:active {
2196
+ background: #ff3b30;
2197
+ }
2183
2198
  .condo-btn-primary.condo-btn-dangerous::before {
2184
2199
  opacity: 0;
2185
2200
  }
@@ -2321,6 +2336,29 @@ a.condo-btn-sm {
2321
2336
  .condo-btn-secondary.condo-btn-dangerous:active::before {
2322
2337
  background: #ff3b30 border-box;
2323
2338
  }
2339
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:hover > .condo-btn-icon,
2340
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:active > .condo-btn-icon,
2341
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:focus > .condo-btn-icon {
2342
+ color: #ff3b30;
2343
+ transition: color 0.15s ease-out;
2344
+ }
2345
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:hover > .condo-btn-icon svg,
2346
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:active > .condo-btn-icon svg,
2347
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:focus > .condo-btn-icon svg {
2348
+ fill: currentcolor;
2349
+ }
2350
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:hover > .condo-btn-text,
2351
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:active > .condo-btn-text,
2352
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:focus > .condo-btn-text {
2353
+ color: #ff3b30;
2354
+ transition: color 0.15s ease-out;
2355
+ }
2356
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless::before,
2357
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:focus::before,
2358
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:hover::before,
2359
+ .condo-btn-secondary.condo-btn-dangerous.condo-btn-stateless:active::before {
2360
+ background: #ff3b30 border-box;
2361
+ }
2324
2362
  .condo-btn-secondary::before {
2325
2363
  position: absolute;
2326
2364
  top: -1px;
@@ -2354,7 +2392,46 @@ a.condo-btn-sm {
2354
2392
  background: linear-gradient(90deg, #4cd174 0%, #6db8f2 100%) border-box;
2355
2393
  opacity: 0.9;
2356
2394
  }
2357
- .condo-btn-secondary:disabled,
2395
+ .condo-btn-secondary:disabled {
2396
+ background: transparent;
2397
+ border: 1px solid #707695;
2398
+ opacity: 0.5;
2399
+ }
2400
+ .condo-btn-secondary:disabled > .condo-btn-icon {
2401
+ color: #222;
2402
+ transition: color 0.15s ease-out;
2403
+ }
2404
+ .condo-btn-secondary:disabled > .condo-btn-icon svg {
2405
+ fill: currentcolor;
2406
+ }
2407
+ .condo-btn-secondary:disabled > .condo-btn-text {
2408
+ color: #222;
2409
+ transition: color 0.15s ease-out;
2410
+ }
2411
+ .condo-btn-secondary:disabled > .condo-btn-text::before {
2412
+ opacity: 0;
2413
+ }
2414
+ .condo-btn-secondary:disabled::before {
2415
+ opacity: 0;
2416
+ }
2417
+ .condo-btn-secondary.condo-btn-stateless:not(.condo-btn-dangerous) > .condo-btn-icon {
2418
+ color: #222;
2419
+ transition: color 0.15s ease-out;
2420
+ }
2421
+ .condo-btn-secondary.condo-btn-stateless:not(.condo-btn-dangerous) > .condo-btn-icon svg {
2422
+ fill: currentcolor;
2423
+ }
2424
+ .condo-btn-secondary.condo-btn-stateless:not(.condo-btn-dangerous):hover {
2425
+ border: 1px solid #707695;
2426
+ }
2427
+ .condo-btn-secondary.condo-btn-stateless:hover::before,
2428
+ .condo-btn-secondary.condo-btn-stateless:active::before {
2429
+ opacity: 0;
2430
+ }
2431
+ .condo-btn-secondary.condo-btn-stateless:hover > .condo-btn-text::before,
2432
+ .condo-btn-secondary.condo-btn-stateless:active > .condo-btn-text::before {
2433
+ opacity: 0;
2434
+ }
2358
2435
  .condo-btn-secondary:disabled:hover,
2359
2436
  .condo-btn-secondary:disabled:active,
2360
2437
  .condo-btn-secondary:disabled:focus,
@@ -2366,7 +2443,6 @@ a.condo-btn-sm {
2366
2443
  border: 1px solid #707695;
2367
2444
  opacity: 0.5;
2368
2445
  }
2369
- .condo-btn-secondary:disabled > .condo-btn-icon,
2370
2446
  .condo-btn-secondary:disabled:hover > .condo-btn-icon,
2371
2447
  .condo-btn-secondary:disabled:active > .condo-btn-icon,
2372
2448
  .condo-btn-secondary:disabled:focus > .condo-btn-icon,
@@ -2377,7 +2453,6 @@ a.condo-btn-sm {
2377
2453
  color: #222;
2378
2454
  transition: color 0.15s ease-out;
2379
2455
  }
2380
- .condo-btn-secondary:disabled > .condo-btn-icon svg,
2381
2456
  .condo-btn-secondary:disabled:hover > .condo-btn-icon svg,
2382
2457
  .condo-btn-secondary:disabled:active > .condo-btn-icon svg,
2383
2458
  .condo-btn-secondary:disabled:focus > .condo-btn-icon svg,
@@ -2387,7 +2462,6 @@ a.condo-btn-sm {
2387
2462
  .condo-btn-secondary.condo-btn-dangerous:disabled:focus > .condo-btn-icon svg {
2388
2463
  fill: currentcolor;
2389
2464
  }
2390
- .condo-btn-secondary:disabled > .condo-btn-text,
2391
2465
  .condo-btn-secondary:disabled:hover > .condo-btn-text,
2392
2466
  .condo-btn-secondary:disabled:active > .condo-btn-text,
2393
2467
  .condo-btn-secondary:disabled:focus > .condo-btn-text,
@@ -2398,7 +2472,6 @@ a.condo-btn-sm {
2398
2472
  color: #222;
2399
2473
  transition: color 0.15s ease-out;
2400
2474
  }
2401
- .condo-btn-secondary:disabled > .condo-btn-text::before,
2402
2475
  .condo-btn-secondary:disabled:hover > .condo-btn-text::before,
2403
2476
  .condo-btn-secondary:disabled:active > .condo-btn-text::before,
2404
2477
  .condo-btn-secondary:disabled:focus > .condo-btn-text::before,
@@ -2408,7 +2481,6 @@ a.condo-btn-sm {
2408
2481
  .condo-btn-secondary.condo-btn-dangerous:disabled:focus > .condo-btn-text::before {
2409
2482
  opacity: 0;
2410
2483
  }
2411
- .condo-btn-secondary:disabled::before,
2412
2484
  .condo-btn-secondary:disabled:hover::before,
2413
2485
  .condo-btn-secondary:disabled:active::before,
2414
2486
  .condo-btn-secondary:disabled:focus::before,
@@ -2419,6 +2491,353 @@ a.condo-btn-sm {
2419
2491
  opacity: 0;
2420
2492
  }
2421
2493
 
2494
+ .condo-typography {
2495
+ color: #222;
2496
+ word-break: break-word;
2497
+ }
2498
+ .condo-typography,
2499
+ .condo-typography-large {
2500
+ margin: 0;
2501
+ font-weight: 400;
2502
+ font-size: 16px;
2503
+ font-family: "Open Sans", sans-serif;
2504
+ line-height: 24px;
2505
+ letter-spacing: -0.01em;
2506
+ }
2507
+ .condo-typography-medium {
2508
+ margin: 0;
2509
+ font-weight: 400;
2510
+ font-size: 14px;
2511
+ font-family: "Open Sans", sans-serif;
2512
+ line-height: 22px;
2513
+ letter-spacing: -0.01em;
2514
+ }
2515
+ .condo-typography-small {
2516
+ margin: 0;
2517
+ font-weight: 400;
2518
+ font-size: 12px;
2519
+ font-family: "Open Sans", sans-serif;
2520
+ line-height: 20px;
2521
+ letter-spacing: -0.01em;
2522
+ }
2523
+ .condo-typography-secondary {
2524
+ color: #707695;
2525
+ }
2526
+ .condo-typography-inverted {
2527
+ color: #fff;
2528
+ }
2529
+ .condo-typography-info {
2530
+ color: #2696f3;
2531
+ }
2532
+ .condo-typography-success {
2533
+ color: #39ce66;
2534
+ }
2535
+ .condo-typography-warning {
2536
+ color: #ff9500;
2537
+ }
2538
+ .condo-typography-danger {
2539
+ color: #ff3b30;
2540
+ }
2541
+ .condo-typography-disabled {
2542
+ cursor: not-allowed;
2543
+ opacity: 0.5;
2544
+ -webkit-user-select: none;
2545
+ -moz-user-select: none;
2546
+ -ms-user-select: none;
2547
+ user-select: none;
2548
+ }
2549
+ .condo-typography u,
2550
+ .condo-typography ins {
2551
+ text-decoration: underline;
2552
+ -webkit-text-decoration-skip: ink;
2553
+ text-decoration-skip-ink: auto;
2554
+ text-decoration-thickness: 1px;
2555
+ }
2556
+ .condo-typography s,
2557
+ .condo-typography del {
2558
+ text-decoration: line-through;
2559
+ text-decoration-thickness: 1px;
2560
+ }
2561
+ .condo-typography strong {
2562
+ font-weight: 600;
2563
+ }
2564
+ .condo-typography code {
2565
+ box-sizing: border-box;
2566
+ margin: 0 0.2em;
2567
+ padding: 0.25em 0.4em;
2568
+ font-size: 95%;
2569
+ font-family: "Noto Sans Mono", monospace;
2570
+ background: #f2f4f6;
2571
+ border: 1px solid #e1e5ed;
2572
+ border-radius: 4px;
2573
+ }
2574
+ div.condo-typography:not(:last-of-type),
2575
+ .condo-typography p:not(:last-of-type) {
2576
+ margin-bottom: 16px;
2577
+ }
2578
+ div.condo-typography:not(:last-of-type).condo-typography-medium,
2579
+ .condo-typography p:not(:last-of-type).condo-typography-medium {
2580
+ margin-bottom: 14px;
2581
+ }
2582
+ div.condo-typography:not(:last-of-type).condo-typography-small,
2583
+ .condo-typography p:not(:last-of-type).condo-typography-small {
2584
+ margin-bottom: 12px;
2585
+ }
2586
+ h1.condo-typography,
2587
+ div.condo-typography-h1,
2588
+ div.condo-typography-h1 > textarea,
2589
+ .condo-typography h1 {
2590
+ font-weight: 700;
2591
+ font-size: 38px;
2592
+ font-family: "Open Sans", sans-serif;
2593
+ line-height: 46px;
2594
+ letter-spacing: -0.01em;
2595
+ margin: 0;
2596
+ }
2597
+ h2.condo-typography,
2598
+ div.condo-typography-h2,
2599
+ div.condo-typography-h2 > textarea,
2600
+ .condo-typography h2 {
2601
+ font-weight: 700;
2602
+ font-size: 24px;
2603
+ font-family: "Open Sans", sans-serif;
2604
+ line-height: 32px;
2605
+ letter-spacing: -0.01em;
2606
+ margin: 0;
2607
+ }
2608
+ h3.condo-typography,
2609
+ div.condo-typography-h3,
2610
+ div.condo-typography-h3 > textarea,
2611
+ .condo-typography h3 {
2612
+ font-weight: 700;
2613
+ font-size: 20px;
2614
+ font-family: "Open Sans", sans-serif;
2615
+ line-height: 28px;
2616
+ letter-spacing: -0.01em;
2617
+ margin: 0;
2618
+ }
2619
+ h4.condo-typography,
2620
+ div.condo-typography-h4,
2621
+ div.condo-typography-h4 > textarea,
2622
+ .condo-typography h4 {
2623
+ font-weight: 600;
2624
+ font-size: 16px;
2625
+ font-family: "Open Sans", sans-serif;
2626
+ line-height: 24px;
2627
+ letter-spacing: -0.01em;
2628
+ margin: 0;
2629
+ }
2630
+ h5.condo-typography,
2631
+ div.condo-typography-h5,
2632
+ div.condo-typography-h5 > textarea,
2633
+ .condo-typography h5 {
2634
+ font-weight: 600;
2635
+ font-size: 14px;
2636
+ font-family: "Open Sans", sans-serif;
2637
+ line-height: 22px;
2638
+ letter-spacing: -0.01em;
2639
+ margin: 0;
2640
+ }
2641
+ h6.condo-typography,
2642
+ div.condo-typography-h6,
2643
+ div.condo-typography-h6 > textarea,
2644
+ .condo-typography h6 {
2645
+ font-weight: 600;
2646
+ font-size: 12px;
2647
+ font-family: "Open Sans", sans-serif;
2648
+ line-height: 20px;
2649
+ letter-spacing: -0.01em;
2650
+ margin: 0;
2651
+ }
2652
+ a.condo-typography-ellipsis,
2653
+ span.condo-typography-ellipsis {
2654
+ display: inline-block;
2655
+ max-width: 100%;
2656
+ }
2657
+ a.condo-typography,
2658
+ .condo-typography a {
2659
+ color: #222;
2660
+ text-decoration: underline;
2661
+ text-underline-offset: 0.2em;
2662
+ text-decoration-thickness: 1px;
2663
+ -webkit-text-decoration-color: #707695;
2664
+ text-decoration-color: #707695;
2665
+ outline: none;
2666
+ cursor: pointer;
2667
+ transition-duration: 0.15s;
2668
+ transition-property: color, -webkit-text-decoration-color;
2669
+ transition-property: color, text-decoration-color;
2670
+ transition-property: color, text-decoration-color, -webkit-text-decoration-color;
2671
+ }
2672
+ a.condo-typography.focus-visible,
2673
+ .condo-typography a.focus-visible,
2674
+ a.condo-typography:hover,
2675
+ .condo-typography a:hover {
2676
+ color: #39ce66;
2677
+ -webkit-text-decoration-color: #39ce66;
2678
+ text-decoration-color: #39ce66;
2679
+ }
2680
+ a.condo-typography:focus-visible,
2681
+ .condo-typography a:focus-visible,
2682
+ a.condo-typography:hover,
2683
+ .condo-typography a:hover {
2684
+ color: #39ce66;
2685
+ -webkit-text-decoration-color: #39ce66;
2686
+ text-decoration-color: #39ce66;
2687
+ }
2688
+ a.condo-typography:active,
2689
+ .condo-typography a:active {
2690
+ color: #39ce66;
2691
+ opacity: 0.8;
2692
+ -webkit-text-decoration-color: #39ce66;
2693
+ text-decoration-color: #39ce66;
2694
+ }
2695
+ a.condo-typography:not(.condo-typography-large):not(.condo-typography-medium):not(.condo-typography-small),
2696
+ .condo-typography a:not(.condo-typography-large):not(.condo-typography-medium):not(.condo-typography-small) {
2697
+ font-size: inherit;
2698
+ }
2699
+ a.condo-typography[disabled],
2700
+ .condo-typography a[disabled],
2701
+ a.condo-typography.condo-typography-disabled,
2702
+ .condo-typography a.condo-typography-disabled,
2703
+ a.condo-typography[disabled].focus-visible,
2704
+ .condo-typography a[disabled].focus-visible,
2705
+ a.condo-typography.condo-typography-disabled.focus-visible,
2706
+ .condo-typography a.condo-typography-disabled.focus-visible,
2707
+ a.condo-typography[disabled]:hover,
2708
+ .condo-typography a[disabled]:hover,
2709
+ a.condo-typography.condo-typography-disabled:hover,
2710
+ .condo-typography a.condo-typography-disabled:hover,
2711
+ a.condo-typography[disabled]:active,
2712
+ .condo-typography a[disabled]:active,
2713
+ a.condo-typography.condo-typography-disabled:active,
2714
+ .condo-typography a.condo-typography-disabled:active {
2715
+ color: #222;
2716
+ cursor: not-allowed;
2717
+ opacity: 0.5;
2718
+ pointer-events: none;
2719
+ }
2720
+ a.condo-typography[disabled],
2721
+ .condo-typography a[disabled],
2722
+ a.condo-typography.condo-typography-disabled,
2723
+ .condo-typography a.condo-typography-disabled,
2724
+ a.condo-typography[disabled].focus-visible,
2725
+ .condo-typography a[disabled].focus-visible,
2726
+ a.condo-typography.condo-typography-disabled.focus-visible,
2727
+ .condo-typography a.condo-typography-disabled.focus-visible,
2728
+ a.condo-typography[disabled]:hover,
2729
+ .condo-typography a[disabled]:hover,
2730
+ a.condo-typography.condo-typography-disabled:hover,
2731
+ .condo-typography a.condo-typography-disabled:hover,
2732
+ a.condo-typography[disabled]:active,
2733
+ .condo-typography a[disabled]:active,
2734
+ a.condo-typography.condo-typography-disabled:active,
2735
+ .condo-typography a.condo-typography-disabled:active {
2736
+ color: #222;
2737
+ cursor: not-allowed;
2738
+ opacity: 0.5;
2739
+ pointer-events: none;
2740
+ }
2741
+ a.condo-typography[disabled],
2742
+ .condo-typography a[disabled],
2743
+ a.condo-typography.condo-typography-disabled,
2744
+ .condo-typography a.condo-typography-disabled,
2745
+ a.condo-typography[disabled]:focus-visible,
2746
+ .condo-typography a[disabled]:focus-visible,
2747
+ a.condo-typography.condo-typography-disabled:focus-visible,
2748
+ .condo-typography a.condo-typography-disabled:focus-visible,
2749
+ a.condo-typography[disabled]:hover,
2750
+ .condo-typography a[disabled]:hover,
2751
+ a.condo-typography.condo-typography-disabled:hover,
2752
+ .condo-typography a.condo-typography-disabled:hover,
2753
+ a.condo-typography[disabled]:active,
2754
+ .condo-typography a[disabled]:active,
2755
+ a.condo-typography.condo-typography-disabled:active,
2756
+ .condo-typography a.condo-typography-disabled:active {
2757
+ color: #222;
2758
+ cursor: not-allowed;
2759
+ opacity: 0.5;
2760
+ pointer-events: none;
2761
+ }
2762
+ .condo-typography-single-line {
2763
+ white-space: nowrap;
2764
+ }
2765
+ .condo-typography-ellipsis-single-line {
2766
+ overflow: hidden;
2767
+ text-overflow: ellipsis;
2768
+ }
2769
+ a.condo-typography-ellipsis-single-line,
2770
+ span.condo-typography-ellipsis-single-line {
2771
+ vertical-align: bottom;
2772
+ }
2773
+ .condo-typography-ellipsis-multiple-line {
2774
+ /* stylelint-disable-next-line value-no-vendor-prefix */
2775
+ display: -webkit-box;
2776
+ overflow: hidden;
2777
+ -webkit-line-clamp: 3;
2778
+ /*! autoprefixer: ignore next */
2779
+ -webkit-box-orient: vertical;
2780
+ }
2781
+
2782
+ .condo-promo-block {
2783
+ display: flex;
2784
+ flex-direction: row;
2785
+ align-items: center;
2786
+ justify-content: flex-start;
2787
+ width: 100%;
2788
+ height: 320px;
2789
+ overflow: hidden;
2790
+ border-radius: 12px;
2791
+ cursor: pointer;
2792
+ }
2793
+ .condo-promo-block-image-container,
2794
+ .condo-promo-block-content-container {
2795
+ box-sizing: border-box;
2796
+ width: 50%;
2797
+ height: 100%;
2798
+ }
2799
+ .condo-promo-block-content-container {
2800
+ display: flex;
2801
+ flex-direction: column;
2802
+ align-items: flex-start;
2803
+ justify-content: space-between;
2804
+ padding: 60px 12px 60px 60px;
2805
+ }
2806
+ .condo-promo-block-content-container-md,
2807
+ .condo-promo-block-content-container-sm {
2808
+ padding: 52px 12px 52px 40px;
2809
+ }
2810
+ .condo-promo-block-content-container-xs {
2811
+ padding: 40px;
2812
+ }
2813
+ .condo-promo-block-content-container-xxs {
2814
+ padding: 40px 32px;
2815
+ }
2816
+ .condo-promo-block-no-image > .condo-promo-block-content-container {
2817
+ width: 100%;
2818
+ padding-right: 60px;
2819
+ }
2820
+ .condo-promo-block-no-image > .condo-promo-block-content-container-md,
2821
+ .condo-promo-block-no-image > .condo-promo-block-content-container-sm {
2822
+ padding-right: 52px;
2823
+ }
2824
+ .condo-promo-block-text-container > *:not(:last-child) {
2825
+ margin-bottom: 16px;
2826
+ }
2827
+ .condo-promo-block-image-container > img {
2828
+ width: 100%;
2829
+ height: 100%;
2830
+ -o-object-fit: cover;
2831
+ object-fit: cover;
2832
+ -o-object-position: right center;
2833
+ object-position: right center;
2834
+ -webkit-user-select: none;
2835
+ -moz-user-select: none;
2836
+ -ms-user-select: none;
2837
+ user-select: none;
2838
+ -webkit-user-drag: none;
2839
+ }
2840
+
2422
2841
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2423
2842
  /* stylelint-disable no-duplicate-selectors */
2424
2843
  /* stylelint-disable */
@@ -2767,281 +3186,83 @@ a.condo-btn-sm {
2767
3186
  .condo-carousel .slick-arrow.slick-disabled {
2768
3187
  display: none !important;
2769
3188
  }
2770
- .condo-carousel .slick-list {
2771
- margin: 0 -20px;
2772
- }
2773
- .condo-carousel .slick-slide > div {
2774
- margin: 0 20px;
2775
- overflow: hidden;
2776
- }
2777
-
2778
- .condo-typography {
2779
- color: #222;
2780
- word-break: break-word;
2781
- }
2782
- .condo-typography,
2783
- .condo-typography-large {
2784
- margin: 0;
2785
- font-weight: 400;
2786
- font-size: 16px;
2787
- font-family: "Open Sans", sans-serif;
2788
- line-height: 24px;
2789
- letter-spacing: -0.01em;
2790
- }
2791
- .condo-typography-medium {
2792
- margin: 0;
2793
- font-weight: 400;
2794
- font-size: 14px;
2795
- font-family: "Open Sans", sans-serif;
2796
- line-height: 22px;
2797
- letter-spacing: -0.01em;
2798
- }
2799
- .condo-typography-small {
2800
- margin: 0;
2801
- font-weight: 400;
2802
- font-size: 12px;
2803
- font-family: "Open Sans", sans-serif;
2804
- line-height: 20px;
2805
- letter-spacing: -0.01em;
2806
- }
2807
- .condo-typography-secondary {
2808
- color: #707695;
2809
- }
2810
- .condo-typography-inverted {
2811
- color: #fff;
2812
- }
2813
- .condo-typography-info {
2814
- color: #2696f3;
2815
- }
2816
- .condo-typography-success {
2817
- color: #39ce66;
2818
- }
2819
- .condo-typography-warning {
2820
- color: #ff9500;
2821
- }
2822
- .condo-typography-danger {
2823
- color: #ff3b30;
2824
- }
2825
- .condo-typography-disabled {
2826
- cursor: not-allowed;
2827
- opacity: 0.5;
2828
- -webkit-user-select: none;
2829
- -moz-user-select: none;
2830
- -ms-user-select: none;
2831
- user-select: none;
2832
- }
2833
- .condo-typography u,
2834
- .condo-typography ins {
2835
- text-decoration: underline;
2836
- -webkit-text-decoration-skip: ink;
2837
- text-decoration-skip-ink: auto;
2838
- text-decoration-thickness: 1px;
2839
- }
2840
- .condo-typography s,
2841
- .condo-typography del {
2842
- text-decoration: line-through;
2843
- text-decoration-thickness: 1px;
2844
- }
2845
- .condo-typography strong {
2846
- font-weight: 600;
2847
- }
2848
- .condo-typography code {
2849
- box-sizing: border-box;
2850
- margin: 0 0.2em;
2851
- padding: 0.25em 0.4em;
2852
- font-size: 95%;
2853
- font-family: "Noto Sans Mono", monospace;
2854
- background: #f2f4f6;
2855
- border: 1px solid #e1e5ed;
2856
- border-radius: 4px;
2857
- }
2858
- div.condo-typography:not(:last-of-type),
2859
- .condo-typography p:not(:last-of-type) {
2860
- margin-bottom: 16px;
2861
- }
2862
- div.condo-typography:not(:last-of-type).condo-typography-medium,
2863
- .condo-typography p:not(:last-of-type).condo-typography-medium {
2864
- margin-bottom: 14px;
2865
- }
2866
- div.condo-typography:not(:last-of-type).condo-typography-small,
2867
- .condo-typography p:not(:last-of-type).condo-typography-small {
2868
- margin-bottom: 12px;
2869
- }
2870
- h1.condo-typography,
2871
- div.condo-typography-h1,
2872
- div.condo-typography-h1 > textarea,
2873
- .condo-typography h1 {
2874
- font-weight: 700;
2875
- font-size: 38px;
2876
- font-family: "Open Sans", sans-serif;
2877
- line-height: 46px;
2878
- letter-spacing: -0.01em;
2879
- margin: 0;
2880
- }
2881
- h2.condo-typography,
2882
- div.condo-typography-h2,
2883
- div.condo-typography-h2 > textarea,
2884
- .condo-typography h2 {
2885
- font-weight: 700;
2886
- font-size: 24px;
2887
- font-family: "Open Sans", sans-serif;
2888
- line-height: 32px;
2889
- letter-spacing: -0.01em;
2890
- margin: 0;
2891
- }
2892
- h3.condo-typography,
2893
- div.condo-typography-h3,
2894
- div.condo-typography-h3 > textarea,
2895
- .condo-typography h3 {
2896
- font-weight: 700;
2897
- font-size: 20px;
2898
- font-family: "Open Sans", sans-serif;
2899
- line-height: 28px;
2900
- letter-spacing: -0.01em;
2901
- margin: 0;
2902
- }
2903
- h4.condo-typography,
2904
- div.condo-typography-h4,
2905
- div.condo-typography-h4 > textarea,
2906
- .condo-typography h4 {
2907
- font-weight: 600;
2908
- font-size: 16px;
2909
- font-family: "Open Sans", sans-serif;
2910
- line-height: 24px;
2911
- letter-spacing: -0.01em;
2912
- margin: 0;
3189
+ .condo-carousel .slick-list {
3190
+ margin: 0 -20px;
2913
3191
  }
2914
- h5.condo-typography,
2915
- div.condo-typography-h5,
2916
- div.condo-typography-h5 > textarea,
2917
- .condo-typography h5 {
2918
- font-weight: 600;
2919
- font-size: 14px;
2920
- font-family: "Open Sans", sans-serif;
2921
- line-height: 22px;
2922
- letter-spacing: -0.01em;
2923
- margin: 0;
3192
+ .condo-carousel .slick-slide > div {
3193
+ margin: 0 20px;
3194
+ overflow: hidden;
2924
3195
  }
2925
- h6.condo-typography,
2926
- div.condo-typography-h6,
2927
- div.condo-typography-h6 > textarea,
2928
- .condo-typography h6 {
2929
- font-weight: 600;
2930
- font-size: 12px;
2931
- font-family: "Open Sans", sans-serif;
2932
- line-height: 20px;
2933
- letter-spacing: -0.01em;
2934
- margin: 0;
3196
+
3197
+ .condo-markdown h1:not(:first-child),
3198
+ .condo-markdown h2:not(:first-child),
3199
+ .condo-markdown h3:not(:first-child),
3200
+ .condo-markdown h4:not(:first-child),
3201
+ .condo-markdown h5:not(:first-child),
3202
+ .condo-markdown h6:not(:first-child) {
3203
+ margin: 1.8em 0 0.6em;
2935
3204
  }
2936
- a.condo-typography-ellipsis,
2937
- span.condo-typography-ellipsis {
2938
- display: inline-block;
3205
+ .condo-markdown img {
2939
3206
  max-width: 100%;
2940
3207
  }
2941
- a.condo-typography,
2942
- .condo-typography a {
2943
- color: #222;
2944
- text-decoration: underline;
2945
- text-underline-offset: 0.2em;
2946
- text-decoration-thickness: 1px;
2947
- -webkit-text-decoration-color: #707695;
2948
- text-decoration-color: #707695;
2949
- outline: none;
2950
- cursor: pointer;
2951
- transition-duration: 0.15s;
2952
- transition-property: color, -webkit-text-decoration-color;
2953
- transition-property: color, text-decoration-color;
2954
- transition-property: color, text-decoration-color, -webkit-text-decoration-color;
3208
+ .condo-markdown pre code {
3209
+ display: block;
3210
+ margin: 0 0 16px;
2955
3211
  }
2956
- a.condo-typography.focus-visible,
2957
- .condo-typography a.focus-visible,
2958
- a.condo-typography:hover,
2959
- .condo-typography a:hover {
2960
- color: #39ce66;
2961
- -webkit-text-decoration-color: #39ce66;
2962
- text-decoration-color: #39ce66;
3212
+ .condo-markdown ul,
3213
+ .condo-markdown ol {
3214
+ margin-bottom: 1.8em;
3215
+ padding-left: 0.75em;
3216
+ color: #707695;
3217
+ list-style-position: inside;
2963
3218
  }
2964
- a.condo-typography:focus-visible,
2965
- .condo-typography a:focus-visible,
2966
- a.condo-typography:hover,
2967
- .condo-typography a:hover {
2968
- color: #39ce66;
2969
- -webkit-text-decoration-color: #39ce66;
2970
- text-decoration-color: #39ce66;
3219
+ .condo-markdown ul.contains-task-list,
3220
+ .condo-markdown ol.contains-task-list {
3221
+ padding-left: 0;
2971
3222
  }
2972
- a.condo-typography:active,
2973
- .condo-typography a:active {
2974
- color: #39ce66;
2975
- opacity: 0.8;
2976
- -webkit-text-decoration-color: #39ce66;
2977
- text-decoration-color: #39ce66;
3223
+ .condo-markdown ul.contains-task-list > li,
3224
+ .condo-markdown ol.contains-task-list > li {
3225
+ list-style-type: none;
2978
3226
  }
2979
- a.condo-typography:not(.condo-typography-large):not(.condo-typography-medium):not(.condo-typography-small),
2980
- .condo-typography a:not(.condo-typography-large):not(.condo-typography-medium):not(.condo-typography-small) {
2981
- font-size: inherit;
3227
+ .condo-markdown ul ul,
3228
+ .condo-markdown ol ul,
3229
+ .condo-markdown ul ol,
3230
+ .condo-markdown ol ol {
3231
+ padding-left: 20px;
2982
3232
  }
2983
- a.condo-typography[disabled],
2984
- .condo-typography a[disabled],
2985
- a.condo-typography.condo-typography-disabled,
2986
- .condo-typography a.condo-typography-disabled,
2987
- a.condo-typography[disabled].focus-visible,
2988
- .condo-typography a[disabled].focus-visible,
2989
- a.condo-typography.condo-typography-disabled.focus-visible,
2990
- .condo-typography a.condo-typography-disabled.focus-visible,
2991
- a.condo-typography[disabled]:hover,
2992
- .condo-typography a[disabled]:hover,
2993
- a.condo-typography.condo-typography-disabled:hover,
2994
- .condo-typography a.condo-typography-disabled:hover,
2995
- a.condo-typography[disabled]:active,
2996
- .condo-typography a[disabled]:active,
2997
- a.condo-typography.condo-typography-disabled:active,
2998
- .condo-typography a.condo-typography-disabled:active {
2999
- color: #222;
3000
- cursor: not-allowed;
3001
- opacity: 0.5;
3002
- pointer-events: none;
3233
+ .condo-markdown ul > li:not(:last-child),
3234
+ .condo-markdown ol > li:not(:last-child),
3235
+ .condo-markdown ul > li ul:not(:last-child),
3236
+ .condo-markdown ol > li ul:not(:last-child),
3237
+ .condo-markdown ul > li ol:not(:last-child),
3238
+ .condo-markdown ol > li ol:not(:last-child) {
3239
+ margin-bottom: 0.5em;
3003
3240
  }
3004
- a.condo-typography[disabled],
3005
- .condo-typography a[disabled],
3006
- a.condo-typography.condo-typography-disabled,
3007
- .condo-typography a.condo-typography-disabled,
3008
- a.condo-typography[disabled].focus-visible,
3009
- .condo-typography a[disabled].focus-visible,
3010
- a.condo-typography.condo-typography-disabled.focus-visible,
3011
- .condo-typography a.condo-typography-disabled.focus-visible,
3012
- a.condo-typography[disabled]:hover,
3013
- .condo-typography a[disabled]:hover,
3014
- a.condo-typography.condo-typography-disabled:hover,
3015
- .condo-typography a.condo-typography-disabled:hover,
3016
- a.condo-typography[disabled]:active,
3017
- .condo-typography a[disabled]:active,
3018
- a.condo-typography.condo-typography-disabled:active,
3019
- .condo-typography a.condo-typography-disabled:active {
3020
- color: #222;
3021
- cursor: not-allowed;
3022
- opacity: 0.5;
3023
- pointer-events: none;
3241
+ .condo-markdown ul > li ul:first-child,
3242
+ .condo-markdown ol > li ul:first-child,
3243
+ .condo-markdown ul > li ol:first-child,
3244
+ .condo-markdown ol > li ol:first-child {
3245
+ margin-top: 0.5em;
3024
3246
  }
3025
- a.condo-typography[disabled],
3026
- .condo-typography a[disabled],
3027
- a.condo-typography.condo-typography-disabled,
3028
- .condo-typography a.condo-typography-disabled,
3029
- a.condo-typography[disabled]:focus-visible,
3030
- .condo-typography a[disabled]:focus-visible,
3031
- a.condo-typography.condo-typography-disabled:focus-visible,
3032
- .condo-typography a.condo-typography-disabled:focus-visible,
3033
- a.condo-typography[disabled]:hover,
3034
- .condo-typography a[disabled]:hover,
3035
- a.condo-typography.condo-typography-disabled:hover,
3036
- .condo-typography a.condo-typography-disabled:hover,
3037
- a.condo-typography[disabled]:active,
3038
- .condo-typography a[disabled]:active,
3039
- a.condo-typography.condo-typography-disabled:active,
3040
- .condo-typography a.condo-typography-disabled:active {
3041
- color: #222;
3042
- cursor: not-allowed;
3043
- opacity: 0.5;
3044
- pointer-events: none;
3247
+ .condo-markdown ul li::marker,
3248
+ .condo-markdown ol li::marker {
3249
+ margin: 0;
3250
+ font-weight: 400;
3251
+ font-size: 16px;
3252
+ font-family: "Open Sans", sans-serif;
3253
+ line-height: 24px;
3254
+ letter-spacing: -0.01em;
3255
+ }
3256
+ .condo-markdown blockquote {
3257
+ margin: 1em 0;
3258
+ padding-left: 1em;
3259
+ border-left: 0.25em solid #d0d3e5;
3260
+ }
3261
+ .condo-markdown blockquote > .condo-typography {
3262
+ padding: 0.5em 0;
3263
+ }
3264
+ .condo-markdown blockquote > blockquote:not(:first-child) {
3265
+ margin-top: 0.5em;
3045
3266
  }
3046
3267
 
3047
3268
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
@@ -3360,74 +3581,3 @@ a.condo-typography.condo-typography-disabled:active,
3360
3581
  margin-left: 0;
3361
3582
  }
3362
3583
 
3363
- .condo-markdown h1:not(:first-child),
3364
- .condo-markdown h2:not(:first-child),
3365
- .condo-markdown h3:not(:first-child),
3366
- .condo-markdown h4:not(:first-child),
3367
- .condo-markdown h5:not(:first-child),
3368
- .condo-markdown h6:not(:first-child) {
3369
- margin: 1.8em 0 0.6em;
3370
- }
3371
- .condo-markdown img {
3372
- max-width: 100%;
3373
- }
3374
- .condo-markdown pre code {
3375
- display: block;
3376
- margin: 0 0 16px;
3377
- }
3378
- .condo-markdown ul,
3379
- .condo-markdown ol {
3380
- margin-bottom: 1.8em;
3381
- padding-left: 0.75em;
3382
- color: #707695;
3383
- list-style-position: inside;
3384
- }
3385
- .condo-markdown ul.contains-task-list,
3386
- .condo-markdown ol.contains-task-list {
3387
- padding-left: 0;
3388
- }
3389
- .condo-markdown ul.contains-task-list > li,
3390
- .condo-markdown ol.contains-task-list > li {
3391
- list-style-type: none;
3392
- }
3393
- .condo-markdown ul ul,
3394
- .condo-markdown ol ul,
3395
- .condo-markdown ul ol,
3396
- .condo-markdown ol ol {
3397
- padding-left: 20px;
3398
- }
3399
- .condo-markdown ul > li:not(:last-child),
3400
- .condo-markdown ol > li:not(:last-child),
3401
- .condo-markdown ul > li ul:not(:last-child),
3402
- .condo-markdown ol > li ul:not(:last-child),
3403
- .condo-markdown ul > li ol:not(:last-child),
3404
- .condo-markdown ol > li ol:not(:last-child) {
3405
- margin-bottom: 0.5em;
3406
- }
3407
- .condo-markdown ul > li ul:first-child,
3408
- .condo-markdown ol > li ul:first-child,
3409
- .condo-markdown ul > li ol:first-child,
3410
- .condo-markdown ol > li ol:first-child {
3411
- margin-top: 0.5em;
3412
- }
3413
- .condo-markdown ul li::marker,
3414
- .condo-markdown ol li::marker {
3415
- margin: 0;
3416
- font-weight: 400;
3417
- font-size: 16px;
3418
- font-family: "Open Sans", sans-serif;
3419
- line-height: 24px;
3420
- letter-spacing: -0.01em;
3421
- }
3422
- .condo-markdown blockquote {
3423
- margin: 1em 0;
3424
- padding-left: 1em;
3425
- border-left: 0.25em solid #d0d3e5;
3426
- }
3427
- .condo-markdown blockquote > .condo-typography {
3428
- padding: 0.5em 0;
3429
- }
3430
- .condo-markdown blockquote > blockquote:not(:first-child) {
3431
- margin-top: 0.5em;
3432
- }
3433
-