info-box.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Component: Info Box
  3. * -------------------
  4. */
  5. .info-box {
  6. display: block;
  7. min-height: 90px;
  8. background: #fff;
  9. width: 100%;
  10. box-shadow: @box-boxshadow;
  11. .border-radius(2px);
  12. margin-bottom: 15px;
  13. small {
  14. font-size: 14px;
  15. }
  16. .progress {
  17. background: rgba(0, 0, 0, .2);
  18. margin: 5px -10px 5px -10px;
  19. height: 2px;
  20. &,
  21. & .progress-bar {
  22. .border-radius(0);
  23. }
  24. .progress-bar {
  25. background: #fff;
  26. }
  27. }
  28. }
  29. .info-box-icon {
  30. .border-radius(2px; 0; 2px; 0);
  31. display: block;
  32. float: left;
  33. height: 90px;
  34. width: 90px;
  35. text-align: center;
  36. font-size: 45px;
  37. line-height: 90px;
  38. background: rgba(0, 0, 0, 0.2);
  39. > img {
  40. max-width: 100%;
  41. }
  42. }
  43. .info-box-content {
  44. padding: 5px 10px;
  45. margin-left: 90px;
  46. }
  47. .info-box-number {
  48. display: block;
  49. font-weight: bold;
  50. font-size: 18px;
  51. }
  52. .progress-description,
  53. .info-box-text {
  54. display: block;
  55. font-size: 14px;
  56. white-space: nowrap;
  57. overflow: hidden;
  58. text-overflow: ellipsis;
  59. }
  60. .info-box-text {
  61. text-transform: uppercase;
  62. }
  63. .info-box-more {
  64. display: block;
  65. }
  66. .progress-description {
  67. margin: 0;
  68. }