panels.less 973 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // Panels
  3. // --------------------------------------------------
  4. // Messages
  5. @media screen and (max-width: @screen-sm-max) {
  6. .panel-message-body {
  7. text-align: center;
  8. .message-icon {
  9. margin: @line-height-computed * 1.5;
  10. .material-icon {
  11. font-size: @message-page-icon-size * 2;
  12. }
  13. }
  14. }
  15. }
  16. // Full displays
  17. @media screen and (min-width: @screen-md-min) {
  18. .panel-message-body {
  19. padding: @line-height-computed;
  20. padding-bottom: @line-height-computed * 1.5;
  21. .message-icon {
  22. float: left;
  23. .material-icon {
  24. font-size: @line-height-computed * 2.5;
  25. }
  26. }
  27. .message-body {
  28. margin-left: @line-height-computed * 3.25;
  29. margin-top: @line-height-computed * .6 - 2px;
  30. .lead {
  31. margin-bottom: 0px;
  32. }
  33. .help-block {
  34. margin-top: @line-height-computed * .66;
  35. }
  36. }
  37. }
  38. }
  39. // Loading
  40. .panel-body-loading {
  41. padding: 0px;
  42. text-align: center;
  43. }