📄 blog-content.css
/home/palash/git/site-assets/site-contents/stylesheets/blog-content.css
Language: css • Lines: 55
/* General Markdown Styles */
.blog-content {
    line-height: 1.6;
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

.blog-content img {
    max-height: 250px;
    height: auto;
}

/* Headers */
.blog-content h1, .blog-content h2, .blog-content h3 {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
}

/* Links */
.blog-content a {
    text-decoration: none;
}

.blog-content a:hover {
    text-decoration: underline;
}

/* Lists */
.blog-content ul, .blog-content ol {
    list-style-type: disc;
    margin-left: 20px;
}

/* Blockquotes */
.blog-content blockquote {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    padding: 15px;
    font-style: italic;
}

/* Code Blocks */
.blog-content pre,
.blog-content code {
    font-family: "Fira Code", monospace;
    border-radius: 4px;
    background-color: #0d0d0f;
}

.blog-content code {
    font-size: 0.95rem;
    color: #b8a2f6;
}