Commit b7b21b88 authored by Jakob Moser's avatar Jakob Moser
Browse files

Make blockquote shadows a little less massive

parent 3de8fb8b
Loading
Loading
Loading
Loading
+17 −2
Original line number Diff line number Diff line
@@ -663,7 +663,14 @@ main.list article > header h1 {
/* ### Shared styles: "Speech bubble look" for list articles and blockquotes ### */
main.list article, blockquote {
    position: relative;
    box-shadow: 0px 0px 10px var(--shadow-color);
}

main.list article {
    box-shadow: 0 0 10px var(--shadow-color);
}

blockquote {
    box-shadow: 0 0 5px var(--shadow-color);
}

main.list footer::before, blockquote::before {
@@ -686,11 +693,19 @@ main.list footer::after, blockquote::after {
    right: 0;
    width: 0;
    height: 0;
    bottom: -1.7em;
    border-width: 30px 0 0 30px;
    border-style: solid;
    border-color: #fff transparent;
}

main.list footer::after {
    bottom: -1.7em;
}

blockquote::after {
    bottom: -1.8em;
}

/* ### End shared styles ### */

/* ==== Utilities: Pagination ==== */