Spaces:
Sleeping
Sleeping
| /* Các kiểu dáng khác */ | |
| body { | |
| font-family: sans-serif; | |
| text-align: center; /* Căn giữa nội dung */ | |
| } | |
| textarea { | |
| width: 80%; | |
| height: 150px; | |
| margin: 20px auto; /* Căn giữa textarea */ | |
| padding: 10px; | |
| resize: vertical; /* Cho phép thay đổi kích thước theo chiều dọc */ | |
| } | |
| button { | |
| padding: 20px 70px; | |
| background-color: #007bff; /* Màu xanh dương */ | |
| color: white; | |
| border: none; | |
| cursor: pointer; | |
| border-radius: 5px; /* Bo góc */ | |
| } | |
| #output { | |
| margin-top: 20px; | |
| padding: 10px; | |
| border: 1px solid #ccc; | |
| width: 80%; | |
| margin: 20px auto; /* Căn giữa div kết quả */ | |
| text-align: left; /* Căn trái văn bản kết quả */ | |
| white-space: pre-line; /* Giữ nguyên định dạng xuống dòng */ | |
| } | |
| /* Kiểu cho các thực thể được nhận diện */ | |
| [data-entity] { | |
| padding: 5px 10px; | |
| border-radius: 5px; | |
| display: inline-block; | |
| } | |
| [label-entity] { | |
| font-size: x-small; | |
| padding: 2px 4px; | |
| border-radius: 5px; | |
| display: inline-block; | |
| color: white; | |
| } | |
| /* Màu sắc cho từng loại thực thể */ | |
| [data-entity="PATIENT_ID"] { background-color: #85cef0; } | |
| [label-entity="PATIENT_ID"] { background-color: #01579B; } | |
| [data-entity="NAME"] { background-color: #ee7fa4 ; } | |
| [label-entity="NAME"] { background-color: #C2185B ; } | |
| [data-entity="GENDER"] { background-color: #ec9f78 ; } | |
| [label-entity="GENDER"] { background-color: #4E342E ; } | |
| [data-entity="AGE"] { background-color: #f7d978 ; } | |
| [label-entity="AGE"] { background-color: #F57F17 ; } | |
| [data-entity="JOB"] { background-color: #e06ff1 ; } | |
| [label-entity="JOB"] { background-color: #6A1B9A ; } | |
| [data-entity="LOCATION"] { background-color: #58fc66 ; } | |
| [label-entity="LOCATION"] { background-color: #1B5E20 ; } | |
| [data-entity="ORGANIZATION"] { background-color: #f17070 ; } | |
| [label-entity="ORGANIZATION"] { background-color: #424242 ; } | |
| [data-entity="DATE"] { background-color: #f3b552 ; } | |
| [label-entity="DATE"] { background-color: #E65100 ; } | |
| [data-entity="SYMPTOM_AND_DISEASE"] { background-color: #66e9e2 ; } | |
| [label-entity="SYMPTOM_AND_DISEASE"] { background-color: #006064 ; } | |
| [data-entity="TRANSPORTATION"] { background-color: #f06758 ; } | |
| [label-entity="TRANSPORTATION"] { background-color: #B71C1C ; } | |
| /*type_entities = ['PATIENT_ID', 'NAME', 'GENDER', 'AGE', 'JOB', 'LOCATION', | |
| 'ORGANIZATION', 'DATE', 'SYMPTOM_AND_DISEASE', 'TRANSPORTATION']*/ | |