JSFiddle - React, Tailwind, and code Playground

by HappyCougar

HTML

<link rel="stylesheet" href="http://cougardesign.ru/templates/cougarnest/css/layout.css">
<link rel="stylesheet" href="http://cougardesign.ru/templates/cougarnest/css/beez5.css">
<div class="testimonials">
    <div class="left_gradient_arrow"></div>
    <div class="left_gradient"><p>Павел Шмидт</p></div>
    <div class="author_img"><img src="https://st.free-lance.ru/users/Pavel22/foto/f_507b7b5653d98.jpg" alt="Pavel22" width="100" height="100" class="" border="0" /></div>
    <img src="http://cdn3.iconfinder.com/data/icons/iconic-1/32/left_quote-32.png" class="quote_left" alt="" />
        <img src="http://cdn3.iconfinder.com/data/icons/iconic-1/32/right_quote-32.png" class="quote_right" alt="" />
    <div class="testimonials_heads"></div>
    <div class="testimonials_content">
        <p> Отлично выполнена работа по доработке сайта. Быстро, строго по ТЗ и даже больше. Мои самые теплые рекомендации. </p>
        <p class="about_author">Павел Шмидт. Дизайнер. 2013</p>
    </div>
</div>
        
        
<div class="testimonials">
    <div class="left_gradient_arrow"></div>
    <div class="left_gradient"><p>Сергей Черкасов</p></div>
    <div class="author_img"><img src="https://st.free-lance.ru/images/no_foto_b.png" alt="Pavel22" width="100" height="100" class="" border="0" /></div>
    <img src="http://cdn3.iconfinder.com/data/icons/iconic-1/32/left_quote-32.png" class="quote_left" alt="" />
    <img src="http://cdn3.iconfinder.com/data/icons/iconic-1/32/right_quote-32.png" class="quote_right" alt="" />
    <div class="testimonials_heads"></div>
    <div class="testimonials_content">
        <p> Сделано все на отлично, на все мои вопросы, даже на самые непрофессиональные, спрокойно и развернуто давали ответы. Буду обращаться и в будущем, и рекомендовать знакомым! </p>
        <p class="about_author">Сергей Черкасов. Авто-Риэлтор. 2013</p>
    </div>
</div>
        
<div class="testimonials">
    <div class="left_gradient_arrow"></div>
    <div...

CSS

.testimonials {
    width:870px;
    height:200px;
    background:#EDEDED;
    margin:30px;
    
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position:relative;
    
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
    -moz-box-shadow:    0px 0px 3px rgba(0, 0, 0, 0.7);
    box-shadow:         0px 0px 3px rgba(0, 0, 0, 0.7);
}
.left_gradient_arrow {
    position: absolute;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid #007AFF;
    border-left: 15px solid rgba(0, 0, 0, 0);
    top: 45px;
}
.left_gradient {
    position: absolute;
    top: 15px;
    background: #00A3FF;
    height: 30px;
    left: -15px;
    webkit-box-shadow: 3px 3px 3px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    3px 3px 3px rgba(50, 50, 50, 0.75);
    box-shadow:         3px 3px 3px rgba(50, 50, 50, 0.75);
    z-index:2;
}
.left_gradient p {
    color: #FFF;
    font-family: 'Open Sans';
    text-transform: uppercase;
    font-size: 17px;
    position: relative;
    top: 4px;
    margin: 0 20px;
}
.author_img img {
    padding: 5px 5px 1px 5px;
}
.author_img {
    position: absolute;
    top: 60px;
    left: 15px;
    border: 2px solid #B4B4B4;
    border-style: dashed;
}
.testimonials_content {
    border: 2px solid #B4B4B4;
    border-style: dashed;
    height: 110px;
    width: 645px;
    position: absolute;
    left: 185px;
    top: 60px;
}
.testimonials_content p {
    margin: 20px 15px 15px 15px;
}
.about_author {
    position: absolute;
    right: 16px;
    bottom: -11px;
    color: #949494;
}
.quote_left {
    position: absolute;
    left: 175px;
    top: 48px;
    z-index: 1;
    background: #EDEDED;
    padding: 3px;
}
.quote_right {
    position: absolute;
    right: 25px;
    bottom: 13px;
    z-index: 1;
    background: #EDEDED;
    padding: 4px;
}