File size: 858 Bytes
e686056 2c88a7a e686056 2c88a7a e686056 2c88a7a e686056 2c88a7a e686056 2c88a7a e686056 |
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 |
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.animate-pulse-slow {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cell-connector {
position: relative;
}
.cell-connector::before {
content: "";
position: absolute;
left: 24px;
top: -16px;
height: 16px;
width: 2px;
background-color: #e5e7eb;
}
.json-viewer {
font-family: 'Courier New', monospace;
font-size: 0.875rem;
line-height: 1.5;
white-space: pre-wrap;
}
.markdown-viewer h1 {
font-size: 1.5rem;
font-weight: 600;
margin: 1rem 0;
}
.markdown-viewer h2 {
font-size: 1.25rem;
font-weight: 600;
margin: 0.75rem 0;
}
.markdown-viewer p {
margin: 0.5rem 0;
}
.markdown-viewer ul, .markdown-viewer ol {
margin: 0.5rem 0;
padding-left: 1.5rem;
} |