File size: 2,547 Bytes
59a65af 5bcc69a 51cb38c 5bcc69a 53d2039 5bcc69a 53d2039 5bcc69a 53d2039 5bcc69a 53d2039 5bcc69a 53d2039 5bcc69a 53d2039 5bcc69a 53d2039 5bcc69a f723129 b4a0c57 53d2039 b4a0c57 f723129 7cdde63 |
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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
html, body, #root {
height: 100%;
}
.p-component, .pi {
font-size: 0.8rem;
}
.p-icon {
width: 0.8rem;
height: 0.8rem;
}
.p-datatable-wrapper {
scrollbar-color: #f0f0f0 rgba(0, 0, 0, 0);
border-radius: 0 0 6px 6px;
}
.p-datatable .p-datatable-tbody > tr {
transition: background-color 0.2s ease;
}
.p-datatable .p-datatable-tbody > tr:hover {
background-color: #fafafa !important;
}
.p-datatable .p-datatable-thead > tr > th {
border-bottom: 1px solid #e0e0e0;
background-color: #fafafa;
font-weight: 500;
color: #555;
padding: 0.75rem 1rem;
}
.p-datatable .p-datatable-tbody > tr > td {
padding: 0.75rem 1rem;
border-bottom: 1px solid #f5f5f5;
}
#model-table {
border: 2px solid #d1d5ff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#model-table .p-datatable-header {
border-top-width: 0px;
border-radius: 6px 6px 0 0;
background: #f0f3ff;
color: #333;
border-bottom: 2px solid #d1d5ff;
padding: 1rem 1.25rem;
font-weight: 500;
}
#language-table {
border: 2px solid #c8f2c8;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#language-table .p-datatable-header {
border-top-width: 0px;
border-radius: 6px 6px 0 0;
background: #f0fff0;
color: #333;
border-bottom: 2px solid #c8f2c8;
padding: 1rem 1.25rem;
font-weight: 500;
}
#dataset-table {
border: 2px solid #ffe4cc;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#dataset-table .p-datatable-header {
border-top-width: 0px;
border-radius: 6px 6px 0 0;
background: #fff8f0;
color: #333;
border-bottom: 2px solid #ffe4cc;
padding: 1rem 1.25rem;
font-weight: 500;
}
#figure {
width: 100%;
min-width: 600px;
height: 600px;
border: 2px solid #e0e0e0;
border-radius: 8px;
padding: 1rem;
background: #fafafa;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.p-autocomplete-input {
width: max(100%, 40vw);
margin-top: 2vh;
border-radius: 0px;
border: 1px solid rgba(0, 0, 0, 0.7);
box-shadow: 3px 3px 1px 0px rgba(0, 0, 0, 0.2);;
}
.p-carousel-indicators button.p-link {
border-radius: 5px;
width: 10px;
height: 10px;
background-color: #000000;
} |