index.module.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. margin: calc(1.5rem + 15px);
  5. & > :first-child {
  6. margin-bottom: 1rem;
  7. }
  8. .title {
  9. font-size: 1.75rem;
  10. font-weight: 500;
  11. line-height: 1.2;
  12. }
  13. .downtime {
  14. display: flex;
  15. align-items: center;
  16. justify-content: flex-start;
  17. width: 100%;
  18. padding: 1.25rem;
  19. margin-bottom: 1rem;
  20. color: #ffffff;
  21. background-color: #dc3545;
  22. border: 1px solid rgba(0, 0, 0, 0.125);
  23. border-radius: 0.25rem;
  24. .downtimeText {
  25. margin: 0 0 0 10px;
  26. font-size: 1.5rem;
  27. font-weight: 500;
  28. line-height: 1.2;
  29. }
  30. }
  31. .card {
  32. display: flex;
  33. flex-direction: column;
  34. word-wrap: break-word;
  35. background-color: #ffffff;
  36. background-clip: border-box;
  37. border: 1px solid rgba(0, 0, 0, 0.125);
  38. border-radius: 0.25rem;
  39. .cardTitle {
  40. font-weight: 500;
  41. line-height: 1.2;
  42. & > h5 {
  43. margin-bottom: 0.75rem;
  44. font-size: 1.25rem;
  45. }
  46. & > h6 {
  47. font-size: 1rem;
  48. }
  49. }
  50. .cardHeader {
  51. & > :first-child {
  52. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  53. }
  54. padding: 0.75rem 1.25rem;
  55. margin-bottom: 0;
  56. background-color: rgba(0, 0, 0, 0.03);
  57. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  58. }
  59. .cardBody {
  60. padding: 1.25rem;
  61. & > ul {
  62. padding-left: 0;
  63. margin: 0;
  64. list-style: none;
  65. & > li {
  66. padding-bottom: 1rem;
  67. margin-bottom: 1rem;
  68. border-bottom: 1px solid #dee2e6;
  69. }
  70. }
  71. }
  72. }
  73. }