75 lines
1.4 KiB
CSS
75 lines
1.4 KiB
CSS
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap");
|
|
|
|
:root {
|
|
color-scheme: dark;
|
|
}
|
|
|
|
body {
|
|
font-family: "Space Grotesk", sans-serif;
|
|
background-image:
|
|
radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 30%),
|
|
radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%);
|
|
}
|
|
|
|
.line-clamp-2,
|
|
.line-clamp-3 {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.line-clamp-2 {
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
|
|
.line-clamp-3 {
|
|
-webkit-line-clamp: 3;
|
|
}
|
|
|
|
.dual-slider__thumb {
|
|
touch-action: none;
|
|
cursor: ew-resize;
|
|
box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
#debugLogList::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
|
|
#debugLogList::-webkit-scrollbar-thumb {
|
|
background: rgba(255, 255, 255, 0.16);
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
.result-summary-scroll::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
|
|
.result-summary-scroll::-webkit-scrollbar-thumb {
|
|
background: rgba(255, 255, 255, 0.16);
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
.debug-entry {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
|
|
padding: 10px 8px;
|
|
}
|
|
|
|
.debug-entry:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.debug-entry__meta {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
color: rgba(255, 255, 255, 0.55);
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.debug-entry__payload {
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
}
|