Spaces:
Build error
Build error
| * { | |
| box-sizing: border-box; | |
| padding: 0; | |
| margin: 0; | |
| } | |
| body { | |
| padding: 20px; | |
| } | |
| a { | |
| color: inherit; | |
| /* text-decoration: none; */ | |
| } | |
| p { | |
| margin-bottom: 10px; | |
| } | |
| ul { | |
| padding-left: 20px; | |
| } | |
| li { | |
| margin-bottom: 10px; | |
| } | |
| pre { | |
| background-color: #eee; | |
| padding: 10px; | |
| border-radius: 5px; | |
| white-space: pre-wrap; | |
| word-wrap: break-word; | |
| } | |
| 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; | |
| } | |
| 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); | |
| } | |
| input, textarea { | |
| font-size: 10px; | |
| font-family: monospace; | |
| } | |
| button { | |
| padding: 5px 10px; | |
| } |