Le blog de Victor Héry https://blog.victor-hery.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
767 B

  1. .article-content {
  2. & blockquote {
  3. --quotes-margin: 13px;
  4. background: Cornsilk;
  5. border-left: 5px solid goldenrod;
  6. border-radius: var(--border-radius);
  7. box-sizing: border-box;
  8. margin: 1rem auto 2rem;
  9. padding: 0.1rem 1.2rem;
  10. position: relative;
  11. width: 80%;
  12. &:before,
  13. &:after {
  14. color: dimgray;
  15. font-size: 4rem;
  16. line-height: 0;
  17. margin: 0;
  18. padding: 0;
  19. position: absolute;
  20. }
  21. &:before {
  22. content: open-quote;
  23. margin-right: var(--quotes-margin);
  24. right: 100%;
  25. top: 30px;
  26. }
  27. &:after {
  28. bottom: 0px;
  29. content: close-quote;
  30. left: 100%;
  31. margin-left: var(--quotes-margin);
  32. top: auto;
  33. }
  34. & p {
  35. margin: 20px 0;
  36. }
  37. }
  38. }