RepoAnalyzer / frontend /src /index.css
Manisankarrr's picture
project completed
f2f397e
Raw
History Blame Contribute Delete
1.6 kB
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Markdown prose styling */
.prose table {
border-collapse: collapse;
width: 100%;
}
.prose td, .prose th {
border: 1px solid #e5e7eb;
padding: 8px 12px;
text-align: left;
}
.prose th {
background: #f9fafb;
font-weight: 600;
color: #111827;
}
.prose code {
background: #f3f4f6;
padding: 2px 6px;
border-radius: 4px;
font-size: 0.875em;
}
.prose pre {
background: #1e293b;
color: #e2e8f0;
padding: 16px;
border-radius: 8px;
overflow-x: auto;
line-height: 1.5;
}
.prose pre code {
background: transparent;
color: inherit;
padding: 0;
}
.prose h2 {
font-size: 1.5em;
font-weight: 700;
margin-top: 1.5em;
margin-bottom: 0.5em;
color: #111827;
}
.prose h3 {
font-size: 1.25em;
font-weight: 600;
margin-top: 1.25em;
margin-bottom: 0.5em;
color: #111827;
}
.prose h4 {
font-size: 1.1em;
font-weight: 600;
margin-top: 1em;
margin-bottom: 0.5em;
color: #111827;
}
.prose p {
margin-bottom: 1em;
line-height: 1.6;
}
.prose ul, .prose ol {
margin-bottom: 1em;
padding-left: 1.5em;
}
.prose li {
margin-bottom: 0.5em;
}
.prose strong, .prose b {
font-weight: 700;
color: #111827;
}
.prose em, .prose i {
font-style: italic;
color: #374151;
}
.prose a {
color: #0ea5e9;
text-decoration: underline;
}
.prose a:hover {
color: #0284c7;
}
.prose blockquote {
border-left: 4px solid #e5e7eb;
padding-left: 1em;
color: #6b7280;
font-style: italic;
margin: 1em 0;
}
.prose hr {
border-color: #e5e7eb;
margin: 2em 0;
}