Spaces:
Sleeping
Sleeping
File size: 2,462 Bytes
cb1f9b3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
/* 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']*/
|