_pricing.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. // PRICING TABLES
  2. // -----------------------------------------------------------------------------
  3. .pricing-table {
  4. margin: 25px 0;
  5. padding-left: 0;
  6. text-align: center;
  7. ul {
  8. list-style: none;
  9. margin: 20px 0 0 0;
  10. padding: 0;
  11. }
  12. li {
  13. border-top: 1px solid #ddd;
  14. padding: 10px 0;
  15. }
  16. h3 {
  17. background-color: #eee;
  18. border-radius: 2px 2px 0 0;
  19. font-size: 20px;
  20. font-weight: normal;
  21. margin: -20px -20px 50px -20px;
  22. padding: 20px;
  23. span {
  24. background: #FFF;
  25. border: 5px solid #FFF;
  26. border-radius: 100px;
  27. box-shadow: 0 5px 20px #ddd inset, 0 3px 0 #999 inset;
  28. color: $color-primary;
  29. display: block;
  30. font: bold 25px / 100px Georgia, Serif;
  31. height: 100px;
  32. margin: 20px auto -65px;
  33. width: 100px;
  34. }
  35. }
  36. .most-popular {
  37. border: 3px solid #CCC;
  38. box-shadow: 11px 0 10px -10px rgba(0, 0, 0, 0.1), -11px 0 10px -10px rgba(0, 0, 0, 0.1);
  39. padding: 30px 20px;
  40. top: -10px;
  41. z-index: 2;
  42. h3 {
  43. background-color: $color-primary;
  44. color: #FFF;
  45. padding-top: 30px;
  46. }
  47. }
  48. .plan-ribbon-wrapper {
  49. height: 88px;
  50. overflow: hidden;
  51. position: absolute;
  52. right: -5px;
  53. top: -5px;
  54. width: 85px;
  55. }
  56. .plan-ribbon {
  57. @include transform(rotate(45deg));
  58. @include background-image(linear-gradient(top, #bfdc7a, #8ebf45));
  59. background-color: #bfdc7a;
  60. box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  61. color: #333;
  62. font-size: 14px;
  63. left: -5px;
  64. padding: 7px 0;
  65. position: relative;
  66. text-align: center;
  67. top: 15px;
  68. width: 120px;
  69. &:before {
  70. left: 0;
  71. border-left: 3px solid transparent;
  72. border-right: 3px solid transparent;
  73. bottom: -3px;
  74. content: "";
  75. position: absolute;
  76. }
  77. &:after {
  78. border-left: 3px solid transparent;
  79. border-right: 3px solid transparent;
  80. bottom: -3px;
  81. content: "";
  82. position: absolute;
  83. right: 0;
  84. }
  85. }
  86. .plan {
  87. background: #FFF;
  88. border: 1px solid #ddd;
  89. border-radius: 5px;
  90. color: #333;
  91. margin-bottom: 35px;
  92. margin-right: 0;
  93. padding: 20px;
  94. position: relative;
  95. }
  96. .btn {
  97. margin-top: 5px;
  98. }
  99. }
  100. // DARK
  101. // -----------------------------------------------------------------------------
  102. /* dark */
  103. html.dark {
  104. .pricing-table {
  105. li {
  106. border-top-color: $dark-color-2;
  107. }
  108. h3 {
  109. background-color: $dark-color-2;
  110. text-shadow: none;
  111. span {
  112. background: $dark-color-4;
  113. border-color: $dark-color-5;
  114. box-shadow: 0 5px 20px $dark-color-5 inset, 0 3px 0 $dark-color-3 inset;
  115. color: $color-default;
  116. }
  117. }
  118. .most-popular {
  119. border-color: $dark-color-3;
  120. h3 {
  121. background-color: $dark-color-3;
  122. color: $dark-default-text;
  123. text-shadow: none;
  124. }
  125. }
  126. .plan-ribbon {
  127. background-color: $dark-color-3;
  128. }
  129. .plan {
  130. background: $dark-color-3;
  131. border: 1px solid $dark-color-3;
  132. color: $dark-default-text;
  133. text-shadow: none;
  134. }
  135. }
  136. }