Advertisement
talalaite

Kaching test task2

Apr 3rd, 2025
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.67 KB | None | 0 0
  1. .kaching-bundles .kaching-bundles__bar-main {
  2.     display: flex;
  3.     align-items: center;
  4.     gap: 18px;
  5.     min-height: 55px;
  6.     margin-top: 12px;
  7. }
  8.  
  9. .kaching-bundles .kaching-bundles__bar-most-popular__content {
  10.     margin: 0 8px;
  11.     padding: 6px 46px;
  12.     border-bottom-left-radius: 5px;
  13.     border-bottom-right-radius: 5px;
  14.     font-family: sans-serif;
  15.     font-size: 12px;
  16.     font-weight: 700;
  17.     line-height: 1;
  18.     color: var(--bar-most-popular-color, #fff);
  19.     background-color: var(--bar-most-popular-background-color);
  20. }
  21.  
  22. .kaching-bundles .kaching-bundles__bar-container * {
  23.     display: flex;
  24.     flex-direction: column;
  25.     letter-spacing: normal;
  26.     text-transform: initial;
  27.     text-align: center;
  28. }
  29.  
  30. .kaching-bundles .kaching-bundles__bars {
  31.     display: flex;
  32.     gap: 5px;
  33.     align-items: flex-start;
  34. }
  35. .kaching-bundles .kaching-bundles__bar-content-left {
  36.     display: flex;
  37.     flex: 1;
  38.     align-items: center;
  39. }
  40.  
  41. .kaching-bundles .kaching-bundles__bar-pricing {
  42.     align-items: center;
  43.     display: flex;
  44.     flex-direction: column;
  45. }
  46.  
  47. .kaching-bundles .kaching-bundles__bar--selected .kaching-bundles__bar-variants {
  48.     display: flex
  49. ;
  50. }
  51.  
  52. .kaching-bundles .kaching-bundles__bar-variant__content {
  53.     display: flex
  54. ;
  55.     flex-direction: row;
  56.     align-items: center;
  57. }
  58.  
  59. .kaching-bundles .kaching-bundles__bar-variant-number {
  60.     font-size: 12px;
  61.     margin-right: 2px;
  62.     min-width: 20px;
  63.     display: flex
  64. ;
  65.     flex-direction: row;
  66.     color: var(--bar-title-color, #000);
  67. }
  68.  
  69. .kaching-bundles .kaching-bundles__bar-variant-select {
  70.     font-size: 14px;
  71.     font-weight: 400;
  72.     font-style: normal;
  73.     font-family: system-ui;
  74.     -moz-appearance: none;
  75.     -webkit-appearance: none;
  76.     appearance: none;
  77.     border: none;
  78.     padding: 7px 25px 7px 7px;
  79.     margin: 0;
  80.     text-overflow: ellipsis;
  81.     white-space: nowrap;
  82.     overflow: hidden;
  83.     background-image: url(data:image/svg+xml;utf8,<svg width='10' height='4' viewBox='0 0 10 4' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 4L0.669872 0.25L9.33013 0.249999L5 4Z' fill='black'/></svg>) !important;
  84.     background-repeat: no-repeat !important;
  85.     background-position: right 8px center !important;
  86.     background-color: #fff;
  87.     background-size: initial;
  88.     color: #000;
  89.     outline: none;
  90.     max-width: 100%;
  91.     width: auto;
  92.     height: auto;
  93.     min-height: auto;
  94.     display: flex
  95. ;
  96.     align-items: center;
  97.     flex-direction: row;
  98.     gap: 10px;
  99.     cursor: pointer;
  100.     box-shadow: inset 0 0 0 1px var(--bar-border-color, rgba(0, 0, 0, .3));
  101.     border-radius: var(--bar-variant-select-border-radius, 0);
  102. }
  103.  
  104.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement