~dusnm/dusanmitrovic.xyz

94f34c3d22582ac60024bd81d925c9812dc3a5ed — Dušan Mitrović 1 year, 1 month ago 405f151
Adding table and blockquote styles to CSS.

Signed-off-by: Dušan Mitrović <dusan@dusanmitrovic.xyz>
1 files changed, 24 insertions(+), 0 deletions(-)

M static/css/style.css
M static/css/style.css => static/css/style.css +24 -0
@@ 302,6 302,30 @@ header {
    color: var(--red);
}

.post-content h3 {
    color: var(--red);
}

.post-content blockquote {
    font-style: italic;
    border-left: 5px solid var(--red);
    padding-left: 1rem;
    margin: 2rem 0;
}

.post-content blockquote cite {
    color: var(--red);
}

.post-content table, th, td {
    border: 2px solid var(--foreground);
    border-collapse: collapse;
}

.post-content th, td {
    padding: 1rem;
}

.post-content ul,
ol {
    list-style-position: inside;