_pricing.scss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /* Pricing Table */
  2. #pricing{
  3. padding: 30px 0;
  4. }
  5. .pricing-table{
  6. background: #353b48;
  7. padding: 30px;
  8. text-align: center;
  9. .table-header{
  10. h3{
  11. font-size: 20px;
  12. margin-bottom: 20px;
  13. color: #fff;
  14. }
  15. }
  16. .plan{
  17. .price{
  18. font-size: 24px;
  19. color: #fff;
  20. }
  21. }
  22. .plan-info{
  23. margin-top: 30px;
  24. p{
  25. color: #fff;
  26. }
  27. }
  28. .button-area{
  29. margin-top: 30px;
  30. }
  31. }
  32. /* Pricing Table */
  33. .pricing-tables{
  34. padding: 25px 0;
  35. text-align: center;
  36. .pricing-table-block{
  37. background: #f6f6f6;
  38. text-align: center;
  39. position: relative;
  40. background-color: #fff;
  41. -webkit-transition: all 0.2s linear;
  42. -moz-transition: all 0.2s linear;
  43. -o-transition: all 0.2s linear;
  44. transition: all 0.2s linear;
  45. border: 1px solid #f1f1f1;
  46. }
  47. .highlight-plan {
  48. margin: -15px 0;
  49. margin-right: -1px;
  50. z-index: 1;
  51. background: #f6f6f6;
  52. }
  53. .pricing-table-block .highlight-plan{
  54. .plan-name {
  55. padding: 25px 0;
  56. h3 {
  57. color: #fff;
  58. }
  59. }
  60. .plan-signup {
  61. padding: 30px 0;
  62. background: $primary;
  63. .btn-system.border-btn {
  64. border-color: #fff;
  65. color: #fff;
  66. }
  67. }
  68. }
  69. }
  70. .pricing-table-block{
  71. background: #f6f6f6;
  72. text-align: center;
  73. position: relative;
  74. -webkit-transition: all 0.2s linear;
  75. -moz-transition: all 0.2s linear;
  76. -o-transition: all 0.2s linear;
  77. transition: all 0.2s linear;
  78. .plan-name {
  79. padding: 25px;
  80. background: $primary;
  81. margin-bottom: 20px;
  82. h3 {
  83. font-size: 22px;
  84. line-height: 24px;
  85. margin: 0;
  86. color: #fff;
  87. }
  88. }
  89. .plan-price {
  90. margin-bottom: 30px;
  91. .price-value {
  92. font-size: 50px;
  93. line-height: 76px;
  94. font-weight: 700;
  95. color: #333333;
  96. span {
  97. font-size: 22px;
  98. font-weight: 400;
  99. line-height: 18px;
  100. }
  101. }
  102. .interval {
  103. line-height: 16px;
  104. font-size: 14px;
  105. font-weight: $bold;
  106. }
  107. }
  108. .plan-list {
  109. li {
  110. padding: 10px;
  111. font-size: 15px;
  112. letter-spacing: 1px;
  113. border-bottom: 1px solid #ddd;
  114. i{
  115. margin-right: 10px;
  116. }
  117. }
  118. }
  119. .plan-signup {
  120. padding: 15px 0px 30px;
  121. a {
  122. text-transform: uppercase;
  123. }
  124. }
  125. }
  126. // Pricing Table 3
  127. .pricing-table-item{
  128. border: 1px solid #ddd;
  129. border-radius: 4px;
  130. text-align: center;
  131. position: relative;
  132. box-shadow: 0px 1px 11px 0px rgba(198, 198, 198, 0.3);
  133. -webkit-transition: all 0.2s linear;
  134. -moz-transition: all 0.2s linear;
  135. -o-transition: all 0.2s linear;
  136. transition: all 0.2s linear;
  137. .plan-name {
  138. padding: 25px;
  139. margin-bottom: 0px;
  140. h3 {
  141. font-size: 22px;
  142. line-height: 24px;
  143. margin: 0;
  144. color: #333333;
  145. }
  146. }
  147. .plan-price {
  148. margin-bottom: 30px;
  149. .price-value {
  150. font-size: 50px;
  151. line-height: 76px;
  152. font-weight: 700;
  153. color: #333333;
  154. span {
  155. font-size: 22px;
  156. font-weight: 400;
  157. line-height: 18px;
  158. }
  159. }
  160. .interval {
  161. line-height: 16px;
  162. font-size: 14px;
  163. font-weight: $bold;
  164. }
  165. }
  166. .plan-list {
  167. li {
  168. padding: 10px;
  169. font-size: 15px;
  170. letter-spacing: 1px;
  171. i{
  172. margin-right: 10px;
  173. }
  174. }
  175. }
  176. .plan-signup {
  177. padding: 15px 0px 30px;
  178. a {
  179. text-transform: uppercase;
  180. }
  181. }
  182. }
  183. .table-active{
  184. background: $primary;
  185. .plan-name {
  186. h3 {
  187. color: #fff;
  188. }
  189. }
  190. .plan-price {
  191. .price-value {
  192. color: #fff;
  193. span {
  194. color: #fff;
  195. }
  196. }
  197. .interval {
  198. color: #fff;
  199. }
  200. }
  201. .plan-list {
  202. li {
  203. color: #fff;
  204. i{
  205. margin-right: 10px;
  206. }
  207. }
  208. }
  209. .plan-signup {
  210. .btn-common{
  211. background: #fff;
  212. &:hover{
  213. color: $primary;
  214. }
  215. }
  216. }
  217. }