Commit 780250ed authored by Jakob Moser's avatar Jakob Moser
Browse files

Add custom style for <blockquote>

parent 56a9e4bf
Loading
Loading
Loading
Loading
+18 −1
Original line number Diff line number Diff line
@@ -311,7 +311,7 @@ article {
    padding: 2em;
}

article .content p {
article .content p, article .content blockquote {
    margin: 1em 0;
}

@@ -870,6 +870,23 @@ ul.seamless li {
    color: inherit;
}

/* -- Quotes -- */
blockquote p:first-of-type::before {
    content: "„";
}

blockquote p:last-of-type {
    margin-bottom: 0;
}

blockquote p:last-of-type::after {
    content: "“";
}

blockquote cite {
    font-size: small;
}

/* -- Form elements -- */
select {
    -webkit-appearance: none;