Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_balance.scss 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .total-balance {
  2. p {
  3. margin-bottom: 0px;
  4. }
  5. }
  6. .balance-stats {
  7. background : #F5F6FA;
  8. margin-top : 15px;
  9. // border : 1px solid $border-color;
  10. padding : 21px;
  11. border-radius : $radius;
  12. &:hover,
  13. &:focus,
  14. &.active {
  15. border-color: $primary;
  16. background : $primary;
  17. p {
  18. color : $white;
  19. opacity: 0.75;
  20. }
  21. h3 {
  22. color: $white;
  23. }
  24. }
  25. p {
  26. color : $body-color;
  27. font-size : 14px;
  28. font-weight : 400;
  29. margin-bottom: 0px;
  30. }
  31. h3 {
  32. margin-bottom: 0px;
  33. font-size : 18px;
  34. }
  35. }
  36. .bills-widget-content {
  37. border : 1px solid $border-color;
  38. padding : 15px 20px;
  39. border-radius: $radius;
  40. margin-bottom: 18px;
  41. &:hover,
  42. &:focus,
  43. &.active {
  44. border-color: $primary;
  45. }
  46. &:last-child {
  47. margin-bottom: 0px;
  48. }
  49. p {
  50. margin-bottom: 5px;
  51. }
  52. h4 {
  53. margin-bottom: 0px;
  54. }
  55. }
  56. #transaction-graph {
  57. height: 300px !important;
  58. }