mirror of
https://github.com/PR0M3TH3AN/bitvid.git
synced 2025-09-08 15:08:44 +00:00
112 lines
2.0 KiB
CSS
112 lines
2.0 KiB
CSS
/* markdown.css */
|
|
|
|
/*
|
|
Give the markdown container a standard text color
|
|
that is easy to read on a white background
|
|
*/
|
|
#markdown-container {
|
|
color: #333;
|
|
line-height: 1.6;
|
|
/* Padding & border radius come from your inline Tailwind classes */
|
|
}
|
|
|
|
/* Headings */
|
|
#markdown-container h1 {
|
|
font-size: 1.875rem; /* ~ text-2xl in Tailwind */
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
margin-top: 0.5rem;
|
|
color: #111;
|
|
}
|
|
|
|
#markdown-container h2 {
|
|
font-size: 1.5rem; /* ~ text-xl */
|
|
font-weight: 700;
|
|
margin-bottom: 0.75rem;
|
|
margin-top: 1.25rem;
|
|
color: #222;
|
|
}
|
|
|
|
#markdown-container h3 {
|
|
font-size: 1.25rem; /* ~ text-lg */
|
|
font-weight: 600;
|
|
margin-bottom: 0.75rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
#markdown-container h4,
|
|
#markdown-container h5,
|
|
#markdown-container h6 {
|
|
font-weight: 600;
|
|
margin-top: 0.75rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
/* Paragraphs */
|
|
#markdown-container p {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
/* Lists */
|
|
#markdown-container ul,
|
|
#markdown-container ol {
|
|
margin-left: 1.25rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
#markdown-container li {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
/* Blockquotes */
|
|
#markdown-container blockquote {
|
|
border-left: 4px solid #ccc;
|
|
padding-left: 1rem;
|
|
margin: 1rem 0;
|
|
color: #555;
|
|
}
|
|
|
|
/* Inline code */
|
|
#markdown-container code {
|
|
background-color: #f6f8fa;
|
|
color: #d63384;
|
|
padding: 0.2rem 0.4rem;
|
|
border-radius: 0.25rem;
|
|
font-family: Menlo, Monaco, "Courier New", monospace;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
/* Code blocks */
|
|
#markdown-container pre {
|
|
background-color: #f6f8fa;
|
|
color: #333;
|
|
padding: 1rem;
|
|
border-radius: 0.25rem;
|
|
overflow-x: auto;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
/* Links */
|
|
#markdown-container a {
|
|
color: #bf5af2; /* pick a link color or use var(--color-primary) if you like */
|
|
text-decoration: none;
|
|
}
|
|
|
|
#markdown-container a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Horizontal Rule */
|
|
#markdown-container hr {
|
|
border: 0;
|
|
border-top: 1px solid #e5e7eb;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
/* Images */
|
|
#markdown-container img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
margin-bottom: 1rem;
|
|
}
|