/*
 * Copyright 2013 - 2021 Antonios A. Chariton <daknob@daknob.net>
 *
 * This stylesheet is specifically written for blog.daknob.net.
 *
 * The version of this CSS file is v0.2.0
 */

/* Add some margins to a blog post item */
.post-margined {
    margin: 20px;
}

/* Pad body */
body {
    padding-top: 75px;
    padding-bottom: 75px;
}

/* Custom style for the code blocks */
code {
    color: #e83e8c;
}

pre {
    border: 1px solid #e83e8c;
    background: rgba(232, 62, 140, 0.1);
    padding: 5px 5px 5px 5px;
}

/* Images should be constrained in size */
img {
    max-width: 100%;
}

/* Custom style for quotes */
blockquote {
    border: 1px solid #737373;
    background: rgba(115, 115, 115, 0.1);
    padding: 5px 5px 5px 5px;
}

/* Larger text in paragraphs */
p {
    font-size: 18px;
}

/* Bootstrap 5 broke link underline */
.old-underline {
    text-decoration: none;
}

.old-underline:hover {
    text-decoration: underline;
}
