Настроил новый стиль цитат. Если кому-то понравился – код ниже. Обратите внимание на то, что у меня стоит шрифт, который я загружал на сайт самостоятельно. Строчка со шрифтом выглядит так:
font-family: 'Montserrat', sans-serif;
Код
blockquote {
font-size: 18px;
color: #000;
background-image: linear-gradient(45deg, #fff6d0, #fff0d5, #ffead9);
-moz-box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
-o-box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
position: relative;
width: auto;
font-family: 'Montserrat', sans-serif;
font-weight: 400 !important;
font-style: normal !important;
-moz-transition: background-color 0.6s linear;
-webkit-transition: background-color 0.6s linear;
-o-transition: background-color 0.6s linear;
transition: background-color 0.6s linear;
padding: 4% !important;
}
blockquote:before {
font-size: 80px;
color: #fff;
content: "";
display: block;
position: absolute;
top: -10px;
left: 5px;
}
blockquote cite {
font-size: 20px !important;
color: #000 !important;
display: block !important;
text-align: right !important;
padding-top: 1px !important;
font-family: 'Montserrat', sans-serif;
font-weight: bold !important;
font-style: normal !important;
}