Custom Quote - CSS

PHOTO EMBED

Sat Oct 15 2022 17:51:44 GMT+0000 (Coordinated Universal Time)

Saved by @omnixima #css

/* Custom Quote CSS - Starts */

.custom-quote {
    border-bottom: 3px solid var(--primary) !important;
    border-top: 3px solid var(--primary) !important;
    padding: 10px 0;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    font-weight: bold;
}

.custom-quote:before {
    content: '\e833';
    position: absolute;
    font-family: 'entypo-fontello';
    font-size: 40px;
    background: #fff;
    width: 80px;
    left: calc(50% - 40px);
    top: -19px;
    display: inline-block;
    transform: rotate(180deg);
}

.alternate_color .custom-quote:before {
    background: #f8f8f8;
}

/* Custom Quote CSS - Ends */
content_copyCOPY