| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .condition-container {
- display: flex;
- border: var(--golder);
- background-image: url("/assets/images/texture.png");
- box-shadow: var(--shadow);
- border-radius: 10px;
- height: 6rem;
- width: 17rem;
- }
- .condition {
- width: 100%;
- display: flex;
- flex-direction: column;
- height: 6rem;
- justify-content: space-between;
- }
- .condition-list {
- height: 4rem;
- margin: 0.25rem 0.25rem 0 0.25rem;
- overflow-y: auto;
- border: var(--golder);
- background-image: url("/assets/images/texture-15.jpg");
- border-radius: 10px;
- }
- .condition-item {
- width: 98%;
- padding-left: 0.5rem;
- }
- .empty {
- text-align: center;
- font-size: 2rem;
- font-weight: 600;
- }
- .condition-label {
- font-size: 1.25rem;
- font-weight: 600;
- text-align: center;
- padding: 0 0.5rem 0.25rem 0.5rem;
- }
- // General
- .vertical-line {
- position: relative;
- width: 1px;
- }
- .vertical-line::before {
- content: "";
- position: absolute;
- top: 10%;
- bottom: 10%;
- left: 0;
- border-left: 1px solid black;
- }
- .exhaustion {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 100%;
- }
|