Skip to content

Code Snippets

Ryan Wentzel edited this page Apr 24, 2020 · 2 revisions

CSS for Blockquote with Curly Quotes

blockquote:before {
    content: "\201C";
    font-family: 'georgia';
    position: absolute;
    left: 0;
    font-size: 60px;
    width: 30px;
    top: 25px;
    line-height: 1;
}

Elipsis after paragraph

hr {
    height: 1px;
    margin: 2em 1em 4em 0;
    text-align: center;
    border-color: #777;
    border-width: 0;
    border-style: dotted;
}


.article hr:after {
    content: "···";
    letter-spacing: 2em;
}

Clone this wiki locally