Advertisement
kobial8

Pricing Table- Style 2 | CSS

Apr 2nd, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.88 KB | None | 0 0
  1. .btn-custom {
  2.   color: #bdc3c7;
  3.   font-size: 18px;
  4.   border: 1px solid #bdc3c7;
  5. }
  6. .btn-custom:hover {
  7.   color: #ffffff;
  8.   border: 1px solid #ffffff;
  9. }
  10. #pricing-table {
  11.   padding-top: 50px;
  12. }
  13. #pricing-table .pricing {
  14.   marign: 0;
  15.   padding: 0;
  16.   font-family: 'Robot', sans-serif;
  17. }
  18. #pricing-table .pricing .pricing-table {
  19.   padding-bottom: 30px;
  20. }
  21. #pricing-table .pricing .pricing-table .pricing-header {
  22.   position: relative;
  23.   background: #34495e;
  24.   padding: 22px 22px;
  25.   text-align: center;
  26.   border-top-right-radius: 4px;
  27.   border-top-left-radius: 4px;
  28. }
  29. #pricing-table .pricing .pricing-table .pricing-header .pricing-title {
  30.   color: #ffffff;
  31.   text-transform: uppercase;
  32.   letter-spacing: 2px;
  33.   font-size: 24px;
  34.   text-align: center;
  35.   font-weight: 700;
  36. }
  37. #pricing-table .pricing .pricing-table .pricing-header .pricing-rate {
  38.   font-size: 70px;
  39.   font-weight: 700;
  40.   color: #ffffff;
  41.   position: relative;
  42.   text-align: center;
  43. }
  44. #pricing-table .pricing .pricing-table .pricing-header .pricing-rate sup {
  45.   font-size: 24px;
  46.   position: relative;
  47.   top: -30px;
  48.   color: #bdc3c7;
  49. }
  50. #pricing-table .pricing .pricing-table .pricing-header .pricing-rate span {
  51.   font-size: 16px;
  52.   color: #bdc3c7;
  53.   text-transform: uppercase;
  54. }
  55. #pricing-table .pricing .pricing-list {
  56.   padding: 20px 0 40px 0;
  57.   background: #ffffff;
  58.   border: 1px solid #e3e3e3;
  59. }
  60. #pricing-table .pricing .pricing-list ul {
  61.   padding: 0px;
  62.   display: table;
  63.   margin: 0px auto;
  64. }
  65. #pricing-table .pricing .pricing-list ul li {
  66.   list-style: none;
  67.   border-bottom: 1px solid #EAECEB;
  68.   color: #bdc3c7;
  69.   font-size: 16px;
  70.   line-height: 42px;
  71. }
  72. #pricing-table .pricing .pricing-list ul li:last-child {
  73.   border: none;
  74. }
  75. #pricing-table .pricing .pricing-list ul li i {
  76.   margin-right: 12px;
  77.   color: #bdc3c7;
  78. }
  79. #pricing-table .pricing .pricing-list ul li span {
  80.   color: #34495e;
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement