rates.component.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .chart-container {
  2. display: block;
  3. height: 420px;
  4. @media screen and (max-width: 960px) {
  5. height: 350px;
  6. }
  7. position: relative;
  8. }
  9. .card-img-holder {
  10. margin-bottom: 10px;
  11. }
  12. .hidden-element {
  13. display: none;
  14. }
  15. .widget {
  16. background: #ffffff none repeat scroll 0 0;
  17. float: left;
  18. margin-top: 14px;
  19. position: relative;
  20. width: 100%;
  21. border-radius: 5px;
  22. .chart-padding {
  23. padding: 10px;
  24. }
  25. .mini-stats {
  26. background: #ffffff none repeat scroll 0 0;
  27. border-radius: 5px;
  28. float: left;
  29. padding: 10px 15px;
  30. width: 100%;
  31. height: inherit;
  32. p {
  33. color: #878888;
  34. //display: block;
  35. font-size: 14px;
  36. line-height: 25px;
  37. margin: 6px 0 0;
  38. text-transform: uppercase;
  39. width: auto;
  40. }
  41. span {
  42. border: 1px solid;
  43. border-radius: 50%;
  44. color: #fff;
  45. //float: left;
  46. font-size: 30px;
  47. height: 53px;
  48. line-height: 53px;
  49. text-align: center;
  50. width: 53px;
  51. position: absolute;
  52. right: 15px;
  53. bottom: 15px;
  54. @media screen and (max-width: 960px) {
  55. height: 48px;
  56. width: 48px;
  57. line-height: 48px;
  58. font-size: 24px;
  59. }
  60. @media screen and (max-width: 800px) {
  61. height: 44px;
  62. width: 44px;
  63. line-height: 44px;
  64. font-size: 24px;
  65. right: 10px;
  66. }
  67. @media screen and (min-width: 960px) and (max-width: 1024px) {
  68. height: 48px;
  69. width: 48px;
  70. line-height: 48px;
  71. font-size: 24px;
  72. }
  73. //display: block;
  74. }
  75. span.savings-skin {
  76. color: #47a44b;
  77. background: #fff;
  78. border: none;
  79. font-size: 48px;
  80. line-height: 50px;
  81. width: 64px;
  82. position: absolute;
  83. @media screen and (max-width: 960px) {
  84. top: 0;
  85. width: 50px;
  86. i {
  87. font-size: 36px;
  88. }
  89. }
  90. }
  91. h3 {
  92. margin: 0;
  93. font-size: 1.8rem;
  94. @media screen and (max-width: 1152px) {
  95. font-size: 1.5rem;
  96. }
  97. @media screen and (min-width: 960px) and (max-width: 1024px) {
  98. font-size: 1.3rem;
  99. }
  100. @media screen and (max-width: 800px) {
  101. font-size: 1.4rem;
  102. }
  103. font-weight: 400;
  104. }
  105. }
  106. }