Spaces:
Build error
Build error
File size: 1,491 Bytes
4ffd659 |
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 |
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
padding: 20px;
}
a {
color: inherit;
/* text-decoration: none; */
}
ul {
padding-left: 20px;
}
li {
margin-bottom: 10px;
}
table {
/* border-collapse: collapse; */
width: 100%;
table-layout:fixed;
}
table, th, td {
border: 1px solid;
}
th, td {
padding: 10px;
text-align: left;
}
th:nth-child(1) {
width: 200px;
}
th:nth-child(2) {
width: auto;
}
pre {
background-color: #eee;
padding: 10px;
border-radius: 5px;
white-space: pre-wrap;
word-wrap: break-word;
}
th:nth-child(3),
th:nth-child(4) {
width: 100px;
}
@media (max-width: 800px) {
table {
table-layout:auto;
overflow-x: scroll;
width: max-content;
max-width: 700px;
}
th:nth-child(1) {
width: 50px;
}
th:nth-child(3),
td:nth-child(3),
th:nth-child(4),
td:nth-child(4) {
display: none;
}
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
pre {
background-color: #333;
color: #eee;
}
a {
color: #ccc;
}
}
.llmonitor {
position: fixed;
bottom: -2px;
font-size: 14px;
right: 10px;
padding: 7px;
background-color: rgba(0,0,0,0.7);
color: #fff;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.llmonitor:hover {
transform: scale(1.1);
} |