_pricing.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. .pricing-one {
  2. padding-top: 110px;
  3. padding-bottom: 90px;
  4. /* The switch - the box around the slider */
  5. .switch {
  6. position: relative;
  7. display: inline-block;
  8. width: 85px;
  9. height: 40px;
  10. vertical-align: middle;
  11. margin: 0;
  12. }
  13. /* Hide default HTML checkbox */
  14. .switch input {
  15. display: none;
  16. }
  17. /* The slider */
  18. .slider {
  19. position: absolute;
  20. cursor: pointer;
  21. top: 0;
  22. left: 0;
  23. right: 0;
  24. bottom: 0;
  25. -webkit-transition: .4s;
  26. transition: .4s;
  27. border-style: solid;
  28. border-width: 1px;
  29. border-color: rgb(239, 239, 239);
  30. background-color: rgb(255, 255, 255);
  31. }
  32. .slider:before {
  33. position: absolute;
  34. content: "";
  35. height: 27px;
  36. width: 27px;
  37. left: 6px;
  38. bottom: 6px;
  39. transform: translateX(0px);
  40. background-image: linear-gradient(40deg, $thm-base-color 0%, $thm-base-color-2 100%);
  41. -webkit-transition: .4s;
  42. transition: .4s;
  43. }
  44. .switch.off .slider {}
  45. input:focus+.slider {
  46. box-shadow: 0 0 1px #2196F3;
  47. }
  48. .switch.off .slider:before {
  49. transform: translateX(44px);
  50. }
  51. /* Rounded sliders */
  52. .slider.round {
  53. border-radius: 34px;
  54. }
  55. .slider.round:before {
  56. border-radius: 50%;
  57. }
  58. ul.switch-toggler-list {
  59. display: flex;
  60. align-items: center;
  61. justify-content: center;
  62. margin-bottom: 50px;
  63. li {
  64. a {
  65. font-size: 18px;
  66. font-weight: 400;
  67. color: #74727a;
  68. padding-left: 10px;
  69. padding-right: 10px;
  70. display: block;
  71. }
  72. &.active {
  73. a {
  74. color: $thm-black;
  75. }
  76. }
  77. }
  78. }
  79. [class*=col-] {
  80. margin-bottom: 30px;
  81. }
  82. [class*=col-]+[class*=col-] {
  83. border-left: 1px solid #efefef;
  84. }
  85. [class*=col-]:nth-child(2) {
  86. .pricing-one__btn {
  87. background-image: linear-gradient(40deg, rgb(57, 174, 254) 0%, rgb(60, 255, 83) 100%);
  88. }
  89. }
  90. [class*=col-]:nth-child(3) {
  91. .pricing-one__btn {
  92. background-image: linear-gradient(40deg, rgb(13, 184, 255) 0%, rgb(240, 51, 255) 100%);
  93. }
  94. }
  95. .tabed-content {
  96. #year,
  97. #month {
  98. display: none;
  99. }
  100. }
  101. }
  102. .pricing-one__single {
  103. padding-left: 40px;
  104. padding-right: 40px;
  105. h3,
  106. p,
  107. ul,
  108. span {
  109. display: block;
  110. margin: 0;
  111. }
  112. h3 {
  113. color: #ff4eb5;
  114. font-size: 60px;
  115. letter-spacing: -0.04em;
  116. line-height: 1em;
  117. font-weight: 400;
  118. margin-bottom: 25px;
  119. }
  120. p,
  121. span.tag-line {
  122. color: $thm-black;
  123. font-size: 14px;
  124. text-transform: uppercase;
  125. font-weight: 500;
  126. line-height: 1em;
  127. letter-spacing: .2em;
  128. }
  129. ul {
  130. border-top: 1px solid #efefef;
  131. margin-top: 50px;
  132. padding-top: 50px;
  133. margin-bottom: 50px;
  134. li {
  135. color: #74727a;
  136. font-size: 16px;
  137. font-weight: 400;
  138. line-height: 1em;
  139. +li {
  140. margin-top: 30px;
  141. }
  142. }
  143. }
  144. span.tag-line {
  145. font-size: 12px;
  146. color: #74727a;
  147. margin-top: 30px;
  148. }
  149. }
  150. .pricing-one__btn {
  151. padding: 18px 55.5px;
  152. }