Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

95 строки
1.9 KiB

  1. blockquote {
  2. border-left: 6px solid var(--theme-color-secondary);
  3. margin: 2em 0;
  4. padding-left: 1.2em;
  5. font-style: italic;
  6. .author {
  7. font-style: normal;
  8. font-size: var(--font-size-small);
  9. line-height: 1.2;
  10. }
  11. }
  12. .magazine-article blockquote, blockquote[data-quote-type='magazine'] {
  13. border-left: 0;
  14. font-weight: 300;
  15. font-style: normal;
  16. margin: calc(var(--section-margin) * 0.6) 0;
  17. padding: 0 20px 0 40px;
  18. @media(max-width: 767px) {
  19. padding: 0 0 0 20px;
  20. }
  21. p:not(.author), div.text {
  22. line-height: 1.3;
  23. font-size: var(--font-size-h2);
  24. &:first-child:before {
  25. content: "";
  26. position: relative;
  27. display: block;
  28. width: 30px;
  29. height: 30px;
  30. background-image: url('../../assets/img/quote.svg');
  31. background-size: 100%;
  32. margin: 2px 0 2px -40px;
  33. @media(max-width: 767px) {
  34. margin-left: -20px;
  35. }
  36. }
  37. }
  38. p:not(.author):last-child:after, div.text:last-child:after, .author:after, h4:after {
  39. content: "";
  40. position: relative;
  41. display: block;
  42. width: 30px;
  43. height: 30px;
  44. background-image: url('../../assets/img/quote.svg');
  45. background-size: 100%;
  46. margin: 2px 0 2px -40px;
  47. transform: rotate(180deg);
  48. @media(max-width: 767px) {
  49. margin-left: -20px;
  50. }
  51. }
  52. .author, h4 {
  53. position: relative;
  54. font-weight: 400;
  55. text-align: right;
  56. margin-right: -20px;
  57. margin-top: 36px;
  58. font-family: "Source Sans Pro", sans-serif;
  59. font-size: 18px;
  60. &:before {
  61. content: "— ";
  62. position: relative;
  63. top: -1px;
  64. margin-right: 2px;
  65. }
  66. &:after {
  67. position: absolute;
  68. top: -36px;
  69. left: 0;
  70. }
  71. @media(max-width: 767px) {
  72. margin-right: 0;
  73. padding-left: 30px;
  74. font-size: 16px;
  75. font-weight: 500;
  76. margin-top: 32px;
  77. &:after {
  78. top: -30px;
  79. }
  80. }
  81. }
  82. }