conditions.component.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .condition-container {
  2. display: flex;
  3. border: var(--golder);
  4. background-image: url("/assets/images/texture.png");
  5. box-shadow: var(--shadow);
  6. border-radius: 10px;
  7. height: 6rem;
  8. width: 17rem;
  9. }
  10. .condition {
  11. width: 100%;
  12. display: flex;
  13. flex-direction: column;
  14. height: 6rem;
  15. justify-content: space-between;
  16. }
  17. .condition-list {
  18. height: 4rem;
  19. margin: 0.25rem 0.25rem 0 0.25rem;
  20. overflow-y: auto;
  21. border: var(--golder);
  22. background-image: url("/assets/images/texture-15.jpg");
  23. border-radius: 10px;
  24. }
  25. .condition-item {
  26. width: 98%;
  27. padding-left: 0.5rem;
  28. }
  29. .empty {
  30. text-align: center;
  31. font-size: 2rem;
  32. font-weight: 600;
  33. }
  34. .condition-label {
  35. font-size: 1.25rem;
  36. font-weight: 600;
  37. text-align: center;
  38. padding: 0 0.5rem 0.25rem 0.5rem;
  39. }
  40. // General
  41. .vertical-line {
  42. position: relative;
  43. width: 1px;
  44. }
  45. .vertical-line::before {
  46. content: "";
  47. position: absolute;
  48. top: 10%;
  49. bottom: 10%;
  50. left: 0;
  51. border-left: 1px solid black;
  52. }
  53. .exhaustion {
  54. display: flex;
  55. flex-direction: column;
  56. justify-content: center;
  57. align-items: center;
  58. width: 100%;
  59. }