custom-classes.less 571 B

123456789101112131415161718192021
  1. .el-article-content {
  2. font: 1.2em/1.6em @font-family-serif;
  3. max-width: 50em;
  4. text-align: justify;
  5. blockquote {
  6. border-left: 0; // override bootstrap
  7. font-family: @font-family-sans-serif;
  8. font-size: inherit;
  9. font-weight: 300;
  10. margin-left: 2em;
  11. quotes: "\201C""\201D""\2018""\2019";
  12. &:before {
  13. color: @gray;
  14. content: open-quote;
  15. font-size: 4em;
  16. line-height: 0.1em;
  17. margin-right: 0.25em;
  18. vertical-align: -0.4em;
  19. }
  20. }
  21. }