1
0

common.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. body {
  2. background-color: #f2f3f8;
  3. }
  4. .portlet {
  5. display: -webkit-box;
  6. display: flex;
  7. -webkit-box-flex: 1;
  8. flex-grow: 1;
  9. -webkit-box-orient: vertical;
  10. -webkit-box-direction: normal;
  11. flex-direction: column;
  12. box-shadow: 0px 0px 13px 3px rgba(82, 63, 105, 0.05);
  13. background-color: #ffffff;
  14. margin-bottom: 20px;
  15. border-radius: 4px;
  16. }
  17. .portlet .portlet__head {
  18. display: flex;
  19. -webkit-box-align: stretch;
  20. -webkit-box-pack: justify;
  21. justify-content: space-between;
  22. position: relative;
  23. padding: 0 20px;
  24. margin: 0;
  25. border-bottom: 1px solid #ebedf2;
  26. min-height: 60px;
  27. border-top-left-radius: 4px;
  28. border-top-right-radius: 4px;
  29. align-items: center;
  30. font-size: 1.2rem;
  31. font-weight: 540;
  32. color: #48465b;
  33. }
  34. .portlet .portlet__body {
  35. display: -webkit-box;
  36. display: -ms-flexbox;
  37. -webkit-box-orient: vertical;
  38. -webkit-box-direction: normal;
  39. -ms-flex-direction: column;
  40. flex-direction: column;
  41. padding: 20px;
  42. border-radius: 4px;
  43. }