File size: 1,443 Bytes
b2a125d 7ba024d b2a125d 7ba024d b2a125d 7ba024d b2a125d 7ba024d b2a125d 7ba024d b2a125d 7ba024d b2a125d d20e0bd |
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 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.prose {
color: #374151;
}
.prose-dark {
color: #e5e7eb;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.dark ::-webkit-scrollbar-track {
background: #374151;
}
.dark ::-webkit-scrollbar-thumb {
background: #6b7280;
}
.dark ::-webkit-scrollbar-thumb:hover {
background: #9ca3af;
}
/* Prose styles for markdown content */
.prose {
max-width: 65ch;
font-size: 1rem;
line-height: 1.75;
}
.prose h1,
.prose h2,
.prose h3,
.prose h4 {
color: inherit;
font-weight: 600;
margin-top: 1.5em;
margin-bottom: 0.5em;
}
.prose h1 {
font-size: 2em;
}
.prose h2 {
font-size: 1.5em;
}
.prose h3 {
font-size: 1.25em;
}
.prose p {
margin-top: 1em;
margin-bottom: 1em;
}
.prose ul,
.prose ol {
margin-top: 1em;
margin-bottom: 1em;
padding-left: 1.5em;
}
.prose li {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.prose a {
color: #6366f1;
text-decoration: none;
}
.prose a:hover {
text-decoration: underline;
}
.prose-dark a {
color: #8b5cf6;
}
|