File size: 1,771 Bytes
59a65af 5bcc69a 51cb38c 5bcc69a dd24d65 5bcc69a f723129 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 |
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 10px 10px;
}
#model-table {
border: 3px solid #5151ff;
border-radius: 10px;
}
#model-table .p-datatable-header {
border-top-width: 0px;
border-radius: 5px 5px 0 0;
background: linear-gradient(to bottom, #5151ff, #0000cd);
color: white;
}
#language-table {
border: 3px solid #00aa00;
border-radius: 10px;
}
#language-table .p-datatable-header {
border-top-width: 0px;
border-radius: 5px 5px 0 0;
background: linear-gradient(to bottom, #17b417, #008000);
color: white;
}
#dataset-table {
border: 3px solid #ffaa00;
border-radius: 10px;
}
#dataset-table .p-datatable-header {
border-top-width: 0px;
border-radius: 5px 5px 0 0;
background: linear-gradient(to bottom, #ffaa00, #ff8000);
color: white;
}
#figure {
width: 100%;
min-width: 600px;
height: 600px;
border: 1px solid #bdbdbd;
border-radius: 10px;
padding: 10px;
}
.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;
} |